Ubuntu 12.10搭建tftp与nfs服务器详细教程

发布时间:2019-11-08编辑:脚本学堂
本文介绍了ubuntu 12.10中搭建tftp与nfs服务器的方法,需要的朋友参考下。

本节内容:
Ubuntu12.10搭建tftp和nfs服务器

一、搭建tftp
1,安装tftp
sudo apt-get install tftp-hpa tftpd-hpa
其中:tftp-hpa是客户端,tftpd-hpa是服务器端

2,配置tftp服务器
a.修改/etc/default/tftpd-hpa配置文件
将TFTP_DIRECTORY="/var/lib/tftpboot"修改为TFTP_DIRECTORY="/home/m/tftpboot"
将TFTP_OPTIONS="--secure"修改为TFTP_OPTIONS="-l-c -s"

b.建立服务器文件夹
 

复制代码 代码示例:
mkdir/home/m/tftpboot

3,重启tftp服务并测试
 

复制代码 代码示例:
m@ubuntu> sudo service tftpd-hpa restart
[sudo]password for m:
tftpd-hpastop/waiting
tftpd-hpastart/running, process 6014
m@ubuntu~/tftpboot> echo -e "Hello,zhouyixing!n" >> a.txt
m@ubuntu~/tftpboot> echo -e "Hello,zhouyixing. You are a great man!n" >> b.txt
m@ubuntu~/tftpboot> cd /home/
m@ubuntu~> tftp localhost
m@ubuntu~> echo -e "Hello,tftp service! n" >> b.txt
m@ubuntu~> tftp localhost
tftp>get a.txt
tftp>put b.txt
tftp>quit
m@ubuntu~> cat -n a.txt
Hello,zhouyixing
m@ubuntu~> cd tftpboot/
m@ubuntu~/tftpboot> cat -n b.txt
Hello,tftpservice!

二、配置nfs服务器
1,安装nfs
 

复制代码 代码示例:
$sudo apt-get install nfs-kernel-server rpcbind

2,配置nfs,添加nfs共享目录
a.修改/etc/exports,在该文件最后面添加:
/home/m/Books/*(rw,sync,no_root_squash)
其中
*代表允许所有网段访问
rw代表读写权限
sync代表同步写入内存和硬盘
 另外
ro只读访问
rw读写访问
sync所有数据在请求时写入共享
asyncnfs在写入数据前可以响应请求
securenfs通过1024以下的安全TCP/IP端口发送
insecurenfs通过1024以上的端口发送
wdelay如果多个用户要写入nfs目录,则归组写入(默认)
no_wdelay如果多个用户要写入nfs目录,则立即写入,当使用async时,无需此设置.
hide在nfs共享目录中不共享其子目录
no_hide共享nfs目录的子目录
subtree_check如果共享/usr/bin之类的子目录时,强制nfs检查父目录的权限(默认)
no_subtree_check和上面相对,不检查父目录权限
all_squash共享文件的UID和GID映射匿名用户anonymous,适合公用目录。
no_all_squash保留共享文件的UID和GID(默认)
root_squashroot用户的所有请求映射成如anonymous用户一样的权限(默认)
no_root_squasroot用户具有根目录的完全管理访问权限
anonuid=xxx指定nfs服务器/etc/passwd文件中匿名用户的UID
anongid=xxx指定nfs服务器/etc/passwd文件中匿名用户的GID

b.设置访问权限
 

***/etc/hosts.deny***
portmap:ALL
lockd:ALL
linuxjishu/9952.html target=_blank class=infotextkey>mountd:ALL
rquotad:ALL
statd:ALL
***/etc/hosts.allow***
portmap:172.22.1.56
lockd:172.22.1.56
mountd: 172.22.1.56
rquotad: 172.22.1.56
statd:172.22.1.56

3,重启nfs服务并测试
 

复制代码 代码示例:

m@ubuntu~> sudo /etc/init.d/nfs-kernel-server restart
[sudo]password for m:
*Stopping NFS kernel daemon [ OK ]
*Unexporting directories for NFS kernel daemon... [OK ]
*Exporting directories for NFS kernel daemon... exportfs: /etc/exports [2]: Neither 'subtree_check' or'no_subtree_check' specified for export   "*:/home/m/Books/".
Assumingdefault behaviour ('no_subtree_check').
NOTE:this default has changed since nfs-utils version 1.0.x

[OK ]
*Starting NFS kernel daemon [ OK ]
m@ubuntu~> showmount -e
Exportlist for ubuntu:
/home/m/Books*
m@ubuntu~> sudo mount -t nfs -o nolock localhost:/home/m/Books /mnt
[sudo]password for m:
m@ubuntu~> df
df:`/root/.gvfs': Permission denied
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 31994800 5310292 25059268 18% /
udev 505476 4 505472 1% /dev
tmpfs 205328 800 204528 1% /run
none 5120 0 5120 0% /run/lock
none 513312 164 513148 1% /run/shm
none 102400 52 102348 1% /run/user
localhost:/home/m/Books 31994880 5310336 25059328 18% /mnt
 

注:只要设置正确IP,也可以在arm开发板挂载nfs。