虚拟机linux配置NFS

NFS  service
 一、安装NFS服务端
1、安装NFS
 lingd@ubuntu:~$ sudo apt-get install nfs-kernel-server
同时会有两个软件包nfs-common和portmap被安装上
2.修改NFS配置文件
 lingd@ubuntu:~$ vi /etc/exports
内容为:
/home/share 192.168.1.*(rw,sync,no_root_squash,no_subtree_check)
 其中:
/home/lingd/arm:要共享的目录
     192.168.1.*:允许访问的网段,也可以是ip地址、主机名(能够被服务器解析)、*(所有人都能访问)
     (rw,sync,no_root_squash,no_subtree_check)
rw:读/写权限
       sync:数据同步写入内存和硬盘
       no_root_squash:服务器允许远程系统以root特权存取该目录
no_subtree_check:关闭子树检查
其他选项可以通过man exports查阅man文档

3、启动服务
重启portmapper(端口映射)服务
lingd@Ubuntu:~$ sudo service portmap restart
portmap start/running, process 550
重启NFS服务
 lingd@ubuntu:~$ sudo service nfs-kernel-server restart
 *Stopping NFS kernel daemon                             [ OK ] 
 * Unexporting directories for NFS kernel daemon...            [ OK ] 
 * Exporting directories for NFS kernel daemon...              [ OK ] 
 * Starting NFS kernel daemon                             [ OK ]

二、测试NFS
1、本机挂载
lingd@Ubuntu:~$ ls /mnt/nfs/
lingd@ubuntu:~$sudo mount -t nfs -o nolock localhost:/home/share/ /mnt/nfs/
lingd@ubuntu:~$ ls /mnt/nfs
2、远程挂载
#cd /mnt
#mkdir nfs
#mount -t nfs -o nolock 192.168.1.130:/mnt/share /mnt/nfs 
此后,对/mnt/nfs的访问即是对远程主机/home/share的访问
不用时要卸载:

#umount /mnt/nfs


tftp service
1、安装:
sudo apt-get install tftpd-hpa tftp-hpa
2、删除standalone的启动方式
update-rc.d -f tftpd-hpa remove
3、新建用户tftpd及其主目录
sudo mkdir -p /home/tftpd
sudo useradd -s /bin/false -g nogroup -d /home/tftpd [-p PASSWORD] tftpd
示例:sudo useradd -s /bin/false -g nogroup -d /home/tftpd tftpd
加密码:sudo useradd -s /bin/false -g nogroup -d /home/tftpd tftpd -p 123456
3.5 install xinetd
sudo apt-get install xinetd
配置tftp服务器
4、新建xinetd启动文
cat /etc/xinetd.d/tftpd
service tftp
{
disable = no
socket_type = dgram
wait = no
user = root
protocol = udp
server = /usr/sbin/in.tftpd
server_args = -s /home/tftpd -p -c -U 077 -u tftpd #//表示tftp操作目录在/home/tftpd上
log_on_success = PID HOST DURATION
log_on_failure = HOST
}
配置tftp服务器
5、注释掉/etc/inetd.conf文件中tftpd启动
#tftp dgram udp wait root /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /var/lib/tftpboot
5.5 if you have other network connections, such as WiFi, dual-eth cards, pls shutdown the others if tftp is not working.
配置tftp服务器6、重新启动xinetd服务
sudo /etc/init.d/xinetd restart
配置tftp服务器7、测试tftpd服务是否成功
tftp localhost
tftp> put 123.log
tftp> put 123.log test.log
tftp> get test.log
tftp> get test.log abc.log
tftp> verbose
Verbose mode on.
tftp> trace
Packet tracing on.
tftp> put kkk.log
sent DATA
received ACK
.........
sent DATA
received ACK
Sent 12999997 bytes in -1.5 seconds [-69987938 bit/s]
 
注:如果出现传送存在的文件时出现File not found提示,请查看
/etc/default/tftpd-hpa
并做正确修改
Ifconfig用法 
配置MAC地址
ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx

设置IP和掩码
 ifconfig eth0 192.168.5.40 netmask 255.255.255.0
设置网关
 route add default gw 192.168.5.1
 不过重启了或重启网卡服务就会没了

多个IP配置方法:
#vim /etc/network/interfaces

auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.100.6
netmask 255.255.255.0
#gateway 192.168.100.1
# 下面是外网IP的设置
auto eth0:1
iface eth0:1 inet static
address 192.168.200.188
netmask 255.255.255.0
gateway 192.168.200.1
 

你可能感兴趣的:(linux,嵌入式裸机开发)