新ubuntu系统装软件

时间:2022-01-14 23:00:57

新装的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