(如下针对RHEL6的配置,与其余Linux发行版可能略有不一样)vim
1.tftp服务器
bash
安装前,先安装xinetd,再安装tftp服务器服务器
rpm -ivh tftp-server-0.49xxx.rpm
配置tftpide
vim /etc/xinetd.d/tftp disable = no server_args = -s /tftp
/*此为tftp共享目录,目录权限666*/spa
重启tftp服务rest
/etc/init.d.xinetd restart
2.NFS服务器server
配置NFS服务器同步
vim /etc/exports /tmp *(rw,sync,no_root_squash)
/* 共享目录 地址 读写权限 同步 root权限 */it
启动NFS服务器class
/etc/init.d/nfs restart