配置Linux-Ubuntu
2018-09-20 本文已影响0人
哎呦666
用户名:zd
密码:1111qqqq
设置root密码:
root@localhost:~#sudo passwd root
切换为root用户:
root@localhost:~#su - root
安装vim、ssh、curl:
root@localhost:~#apt-get install vim
root@localhost:~#apt-get install ssh
root@localhost:~#apt install curl
修改ssh配置文件:
root@localhost:~#vi /etc/ssh/sshd_config
修改如下:
重启ssh服务:
root@localhost:~#/etc/init.d/ssh restart
配置网络:
root@localhost:~#vi /etc/network/interfaces
adress 192.168.41.182
netmask 255.255.255.0
gateway 192.168.41.2
重启网络:
root@localhost:~#/etc/init.d/networking restart