|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
按照它们在系统中的作用分成几个部分介绍给大家,通过这些基础命令的学习我们可以进一步理解Linux系统:
1、起首安装tftp和tftpd,前者是客户端,后者是服务器。由于tftp是要inetd来把持的,而ubuntu类的体系,默许是没有安装inetd的,安装一下。(我第一次失利了就是由于没有安装准确的inetd)
#apt-getinstalltftptftpd
#apt-getinstallnetkit-inetd
2、在/目次下建一个tftpboot,把属性改成777.
#cd/
#mkdirtftpboot
#chmod777tftpboot
3、修正/etc/inetd.conf
#emacs/etc/inetd.conf
tftpdgramudpwaitnobody/usr/sbin/tcpd/usr/sbin/in.tftpd/tftpboot
#:INTERNAL:Internalservices
#echostreamtcpnowaitrootinternal
#echodgramudpwaitrootinternal
#chargenstreamtcpnowaitrootinternal
#chargendgramudpwaitrootinternal
#discardstreamtcpnowaitrootinternal
#discarddgramudpwaitrootinternal
#daytimestreamtcpnowaitrootinternal
#daytimedgramudpwaitrootinternal
#timestreamtcpnowaitrootinternal
#timedgramudpwaitrootinternal
#tftpdgramudpwaitnobody/usr/sbin/tcpd/usr/sbin/in.tftpd/tftpboot
4、从头加载inetd历程
#/etc/init.d/inetdreload
5、测试tftpd服务是不是乐成
tftplocalhost
tftp>putmydoc.tar.gz
tftp>puttest.log
tftp>gettest.log
tftp>getmydoc.tar.gz
tftp>
上述标明在主机上测试tftp乐成,在DM6446板子上,以root登录,利用busybox附带的tftp客户端上传/下载文件:
root@DVS6446:/tftp-rthttpd.conf-g192.168.1.110
居然堕落,总是timeout!查找缘故原由,最初仍是回结到防火墙了。防火墙本是个好器材,但好器材在特定的情况下常常成为坏器材,封闭防火墙以后就顺遂完成tftp上传/下载文件了
</p>
对于开发环境的选择尽量要轻量级和高度可定制,航空母舰级别的工具往往会让你迷惑不解; |
|