浏览主站 | 站长工具 | 新闻资讯 | 站长学院 | 站长盈利 | HTML教程 | 网址导航 | 站长周刊 | 会员投稿 | 滚动新闻 | RSS
发新话题
打印

[技术] Linux无盘工作站架设实例3

Linux无盘工作站架设实例3

6、为每个刀片修改它的/etc/fstab文件,以blade01为例,它的nfs root是/remote/blade01
/remote/blade01/etc/fstab文件如下:

  # /etc/fstab: static file system information.
  #
  #                        
  10.10.11.120:/remote/blade01  /    nfs   defaults,intr  0  1
  10.10.11.120:/remote/root    /root  nfs   defaults,intr  0  1
  10.10.11.120:/remote/home    /home  nfs   defaults,intr  0  1
  10.10.11.120:/bin        /bin  nfs   defaults,intr  0  1
  10.10.11.120:/usr        /usr  nfs   defaults,intr  0  1
  10.10.11.120:/sbin       /sbin   nfs   defaults,intr  0  1
  10.10.11.120:/lib        /lib  nfs   defaults,intr  0  1
  none          /proc  proc  defaults,intr  0   1

  同时还要为每个刀片修改它的网络配置文件,配置ip地址,启动两块网卡等等。。

  7、编译内核

  刀片用的内核,应该支持Kernel Level Auto Configuration的DHCP协议,支持NFS,支持NFS ROOT,

  假设编译好的内核为vmlinuz,将它拷贝到/tftpboot/目录下。

TOP

发新话题