虚拟机Ubuntu12.04的tftp安装

来源:互联网 发布:如何彻底删除手机数据 编辑:程序博客网 时间:2024/05/01 02:25
ubuntu 12.04 tftp的安装与设置2012-10-31 10:20:52

分类: LINUX

为了方便配置,最好用root帐户

安装tftp-hpa   tftpd-hpa  xinetd

sudo apt-get install tftp-hpa tftpd-hpa xinetd

在根目录下创建文件夹/tftpboot/root

修改目录权限chmod -R 777 /tftpboot/root

 修改tftp配置文件,如果没有就创建

#gedit /etc/xinetd.d/tftp

service tftp
         {
             disable         = no
             socket_type     = dgram
             protocol        = udp
             wait            = yes
             user            = root
             server          = /usr/sbin/in.tftpd
             server_args     = -s /tftpboot/root
             source          = 11
             cps             = 100 2
             flags =IPv4
         }

修改inetd.conf文件
# gedit /etc/inetd.conf

 tftp  dgram    udp    wait    nobody    /usr/sbin/tcpd
 /usr/sbin/in.tftpd   /tftpboot/root

其中/tftpboot/root为 tftp共享目录

修改tftpd-hpa文件
# vim /etc/default/tftpd-hpa

#RUN_DAEMON="no"
#OPTIONS="-s /tftpboot/root -c -p -U tftpd"

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftpboot/root"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-l -c -s"


在/tftpboot/root下创建测试文件xxx

#cd /tftpboot/root

#touch xxx

#chmod 777 xxx

测试一下 tftp服务:

#cd /

#tftp 127.0.0.1

tftp>get xxx

tftp>q

#ls

查看当前目录,发现xxx文件已在当前目录

如果上述设置还不行的话,那么就要把selinux禁用掉:

#gedit /etc/selinux/config      //如果没有selinux/config这个文件,则创建。

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#       enforcing - SELinux security policy is enforced.
#       permissive - SELinux prints warnings instead of enforcing.
#       disabled - SELinux is fully disabled.
SELINUX=enforcing
# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted

把上面的SELINUX=enforcing 改为:SELINUX=disable  禁用SeLinux
然后reboot重启PC

重启后再进行tftp测试。

 

 

    之前安装上面的方法来安装时,使用netstat -a|grep tftp测试的时候是没有安装的。所以使用新立德来安装,也是不行。后来按照网上的来安装tools,但是安装好了之后不可以上网,设置了/etc/network/interfaces之后就重新安装就可以了 ,暂时不知道这是什么原因,先记下来, 虚拟机装上tool之后Ubuntu不可以上网的解决方法
 
 
另外可以直接用synaptic来安装
 
原创粉丝点击