昨天电脑更换硬盘,费了好大劲,重新安装了win7 和 最新的
Ubuntu Kylin 13.10 中国版“麒麟” 双系统, 安装时ubuntu 不识别win7 硬盘分区,但桌面上却有显示,最后windows下重建分区表,结果win7 不识别了,只好把两个win7硬盘分区格式化。
今天tftp服务器搭建也不顺畅,好在费了小半天终于搞定,上网查到原来13.10 的默认配置需要改,(http://www.cnblogs.com/scue/archive/2013/11/03/3404607.html),但试了他的配置文件却不好用,后来copy了一个 配置文件,ok!感谢!
安装过程记载下面:
1. 安装软件包:apt-get
sudo apt-get install tftpd tftp xinetd
2. 配置相关文件:vi /etc/xinetd.d/tftp (就这条和原作者不同)
Service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server =/usr/sbin/in.tftpd
server_args = -s /tftpboot
/*根据需要设置tftp服务默认目录,缺省的指定输出文件目录是/tftpboot,文件必须放在该目录下才能被输出。*/
disable = no
per_source = 11
cps = 1002
flags = IPv4
}
3. 禁用原来配置:vi /etc/inetd.conf(
原来是Ubuntu13.10默认配置了这行!!)
#tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /srv/tftp
4. 重启服务
sudo /etc/init.d/xinetd restart|force-reload
阅读(813) | 评论(0) | 转发(0) |