1、安装软件包
sudo apt-get install tftpd tftp xinetd
2、建立配置文件
在/etc/xinetd.d/下建立一个配置文件tftp
sudo 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
- disable = no
- per_source = 11
- cps = 100 2
- flags = IPv4
- }
3、建立tftp服务文件目录
在上面的配置中有server_args = -s /tftpboot,其中/tftpboot这个目录就是上传文件与下载文件的位置。
sudo mkdir /tftpboot --创建/tftpboot目录
sudo chmod 777 /tftpboot -R --设置权限为777
4、重新启动tftp服务
sudo /etc/init.d/xinetd restart --重启tftp服务器
5、测试
sudo netstat -a | grep tftp --查看是否启动成功,可以看到udp 0 0 *:tftp *:*
一、配置TFTP服务的步骤
1. 若 /etc/xinetd.d/ 下存在tftp,执行下列操作
1)关闭xinetd服务
$ sudo service xinetd stop
2)删除tftp文件
$ sudo rm /etc/xinetd.d/tftp
3)启动xinetd 服务
$ sudo service xinetd start
2. 安装 tftp 客户端和服务器
$ sudo apt-get install tftp-hpa
$ sudo apt-get install tftpd-hpa
3. 修改 tftpd-hpa 配置文件
$ sudo vi /etc/default/tftpd-hpa
修改 “/var/lib/tftpboot” 为 "/tftpboot"
修改 “--secure” 为 "--secure -c" 允许上传新文件
4. 若 /tftpboot 不存在,创建该目录
$ sudo mkdir /tftpboot
$ sudo chmod 777 /tftpboot
5. 重启 tftpd-hpa 服务器
$ sudo service tftpd-hpa restart
若服务重启成功,能查到相应的进程:
$ ps -ef | grep in.tftpd
6. 测试(假设当前目录下有一个测试文件test.txt)
$ tftp 127.0.0.1
tftp> put test.txt
Sent 1018 bytes in 0.0 seconds
tftp> get test.txt
Received 1018 bytes in 0.1 seconds
tftp> quit
通过 put 命令,可以把当前目录下的 test.txt 文件,通过tftp 上传到它的服务器文件目录。
通过 get 命令,可以把服务器文件目录下的 test.txt 文件,下载到当前目录。
通过 quit 命令,退出。
二、配置NFS服务的步骤
1. 安装 nfs
$ sudo apt-get install nfs-kernel-server
2. 配置 /etc/exports
nfs 允许挂载的目录及权限在文件 /etc/exports 中进行定义。
例如:我们要将根目录下的 rootfs 目录共享出来,那么我们需要在 /etc/exports 文件末尾添加如下一行:
$ sudo vi /etc/exports
/rootfs *(rw,sync,no_root_squash)
其中,/rootfs 是要共享的目录,*代表允许所有的网络段访问,rw是可读写权限,sync是资料同步写入内存和硬盘,
no_root_squash 是nfs 客户端分享目录使用者的权限,如果客户端是 root 用户,那么对该共享目录而言,该客户端具有 root 权限。
3. 若 /rootfs 不存在,创建
$ sudo mkdir /rootfs
$ sudo chmod 777 /rootfs
3. 重启服务
$ sudo /etc/init.d/portmap restart
$ sudo /etc/init.d/nfs-kernel-server restart
4. 测试 nfs
此时可以运行以下命令来显示一下共享出来的目录:
$ showmount -e
或者可以使用以下命令把它挂载在本地磁盘上,例如将/rotfs 挂载在 /mnt 下
$ sudo mount -t nfs localhost:/rootfs /mt
可以运行 df 命令查看是否挂载成功,查看后可以使用以下命令卸载:
$ sudo umount /mnt