Chinaunix首页 | 论坛 | 博客
  • 博客访问: 244852
  • 博文数量: 34
  • 博客积分: 791
  • 博客等级: 军士长
  • 技术积分: 352
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-24 21:45
文章分类

全部博文(34)

文章存档

2015年(2)

2013年(6)

2012年(16)

2011年(8)

2010年(2)

分类: LINUX

2013-05-24 17:36:06

1. Download and install tftp server and client 
     sudo apt-get install xinetd tftpd tftp
2.Create  /etc/xinetd.d/tftp config file
   $ cat /etc/xinetd.d/tftp 
service tftp
{
protocol        = udp
port            = 69
socket_type     = dgram
wait            = yes
user            = nobody
server          = /usr/sbin/in.tftpd
server_args     = /tftpboot
disable         = no
}
3.Prepare the tftpboot directory
    sudo mkdir /tftpboot
    sudo chmod -R  777 /tftpboot
4. start the service
    sudo /etc/init.d/xinetd restart
 


    
阅读(909) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~