博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Boot my smartq7 from nfs filesystem
阅读量:4137 次
发布时间:2019-05-25

本文共 823 字,大约阅读时间需要 2 分钟。

1. Configure nfs server on host

 

2. Configure dhcp server on host

修改 /etc/dhcp3/dhcpd.conf

 

ddns-update-style ad-hoc;

default-lease-time 14400;

subnet 192.168.0.0 netmask 255.255.255.0 {

        default-lease-time 14400;       

        max-lease-time 172800;

        next-server 192.168.0.10

        host smartq7 {

             fixed-address 192.168.0.199;

             hardware ethernet 00:80:c8:e4:c1:e4;

             option root-path "192.168.0.10:/tftp/smartq7";

             next-server 192.168.0.10;

        }

}

 

#sudo /etc/init.d/dhcp3-server restart 

 

3. Configure smartq7 Kernel

-> Networking

     -> Networking options

        [*] IP: kernel level autoconfiguration

        [*] IP: DHCP support

        [*] IP: BOOTP support

  

-> File systems

     <*> Network File Systems

        <*> NFS file system support

         <*> Root file system on NFS

 

 

4. Configure kernel command lin

 

root=/dev/nfs nfsroot=192.168.0.10:/tftp/smartq7 ip=dhcp console=ttySAC0 init=/init rootwait

 

转载地址:http://immvi.baihongyu.com/

你可能感兴趣的文章
facebook库runtime.js
查看>>
vue2.* 中 使用socket.io
查看>>
openlayers安装引用
查看>>
js报错显示subString/subStr is not a function
查看>>
高德地图js API实现鼠标悬浮于点标记时弹出信息窗体显示详情,点击点标记放大地图操作
查看>>
初始化VUE项目报错
查看>>
vue项目使用安装sass
查看>>
HTTP和HttpServletRequest 要点
查看>>
在osg场景中使用GLSL语言——一个例子
查看>>
laravel 修改api返回默认的异常处理
查看>>
laravel事务
查看>>
【JavaScript 教程】浏览器—History 对象
查看>>
这才是学习Vite2的正确姿势!
查看>>
7 个适用于所有前端开发人员的很棒API,你需要了解一下
查看>>
25个构建Web项目的HTML建议,你需要了解一下!
查看>>
【web素材】02-10款大气的购物商城网站模板
查看>>
6种方式实现JavaScript数组扁平化(flat)方法的总结
查看>>
如何实现a===1 && a===2 && a===3返回true?
查看>>
49个在工作中常用且容易遗忘的CSS样式清单整理
查看>>
20种在学习编程的同时也可以在线赚钱的方法
查看>>