用過ubuntu的人都知道,剛安裝好系統(tǒng)root用戶是沒有密碼的,沒有密碼我們就沒法用root用戶登錄,給root用戶設置密碼輸入命令 sudo passwd,然后系統(tǒng)會讓你輸入密碼,這時輸入的密碼就是root用戶的密碼了,設置完成之后就可以切換root用戶登錄了,如圖:
創(chuàng)新互聯(lián)建站主營遼陽網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,重慶APP軟件開發(fā),遼陽h5小程序開發(fā)搭建,遼陽網(wǎng)站營銷推廣歡迎遼陽等地區(qū)企業(yè)咨詢
1、給root設置密碼,輸入下列命令:
sudo passwd
root@ubuntu:~# vi /etc/network/interfaces
#This file describes the network interfaces available on your system
#and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/
#The loopback network interface
auto lo
iface lo inet loopback
auto ens160
iface ens160 inet static
address 192.168.130.237
netmask 255.255.255.0
gateway 192.168.130.1
2、開啟ssh
root@ubuntu:~# vi /etc/ssh/sshdconfig
PermitRootLogin yes #(這個改成yes)
3、重啟sshd服務
root@ubuntu:~# service sshd restart
4、重啟網(wǎng)卡
root@ubuntu:~# /etc/init.d/networking restart