标签:ubuntu nfs mnt vport 安装软件 ini port openbsd 安装
新装的ubuntu系统安装软件:
1.ifconfig
#sudo apt-get install net-tools
2.vim
#sudo apt-get install vim
3.telnet
安装openbsd-inetd: sudo apt-get install openbsd-inetd -y
安装telnetd: sudo apt-get install telnetd -y
重启openbsd-inetd: sudo /etc/init.d/openbsd-inetd restart
查看telnet运行状态: sudo netstat -a | grep telnet
3.nfs server
服务器端:sudo apt install nfs-kernel-server
客户端:sudo apt install nfs-common
配置/etc/exports /home/lin/NFSshare 192.168.66.*(rw,sync,no_root_squash)
重启nfs服务: sudo /etc/init.d/nfs-kernel-server restart
4.mac直接mount nfs会报错,使用如下命令
mount -o resvport 192.168.0.100:/home/shawn/nfs /mnt
标签:ubuntu nfs mnt vport 安装软件 ini port openbsd 安装
原文地址:https://www.cnblogs.com/shawn-meng/p/10546556.html