Ubuntu 14.04中安装tftp

Posted 船长博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 14.04中安装tftp相关的知识,希望对你有一定的参考价值。

1. 安装
sudo apt-get install tftp-hpa tftpd-hpa

2. 建立目录
sudo mkdir /tftpboot
sudo chmod 0777 /tftpboot
sudo touch test1.txt

3. 配置
sudo vi /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftpboot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-l -c -s" # -c允许上传文件,-s是指定服务目录。

4. 重启服务
sudo service tftpd-hpa restart

5. 测试
cd ~
tftp localhost
tftp>get test1.txt
tftp>put test2.txt
tftp>q
退出后,在当前目录下会有一个test1.txt文件,在/tftpboot目录下有test2.txt,表示tftp服务器安装成功!

 

以上是关于Ubuntu 14.04中安装tftp的主要内容,如果未能解决你的问题,请参考以下文章

怎样在Ubuntu 14.04中安装Java

如何在ubuntu14.04中安装openvswitch

如何在 ubuntu 14.04 的 android 中安装 jdk 8

VirtualBox中安装Ubuntu12.04/Ubuntu14.04虚拟机

如何在Ubuntu 16.04和14.04 LTS中安装PostgreSQL 9.5

无法在 ubuntu 14.04 中安装 phpmyadmin