ubuntu17安裝以及相關問題的解決
阿新 • • 發佈:2017-08-12
服務 ini 密碼修改 ace ubunt ins open pre sta
1、ssh的安裝和配置 sudo apt-get update sudo apt-get install openssh-server 查看ssh服務是否啟動 打開"終端窗口",輸入"sudo ps -e |grep ssh"-->回車-->有sshd,說明ssh服務已經啟動,如果沒有啟動,輸入"sudo service ssh start"--> 回車-->ssh服務就會啟動。 允許root用戶登錄,編輯sshd_config sudo vi /etc/ssh/sshd_config 找到# Authentication項下的 PermitRootLogin prohibit-password改成PermitRootLogin yes 重啟ssh搞定 sudo systemctl restart sshd 2、ubuntu root默認密碼修改 ubuntu安裝好後,root初始密碼(默認密碼)不知道,需要設置。 1、先用安裝時候的用戶登錄進入系統 2、輸入:sudo passwd 按回車 3、輸入新密碼,重復輸入密碼,最後提示passwd:password updated sucessfully 此時已完成root密碼的設置 4、輸入:su root 切換用戶到root 三、設置固定IPvi /etc/network/interfaces # interfaces(5) file used by ifup(8) and ifdown(8)auto loiface lo inet loopback這以下的是為添加上去該文件上的內容: #The primary network interface auto ens33 iface ens33 inet static address 192.168.1.13 netmask 255.255.255.0 gateway 192.168.1.1 重啟網絡 sudo /etc/init.d/networking restart/* vi /etc/resolv.conf 該文件下添加: nameserver 140.207.198.6 nameserver 221.131.143.69 vi /etc/resolvconf/resolv.conf.d/base 該文件下添加: nameserver 140.207.198.6 nameserver 221.131.143.69 */
ubuntu17安裝以及相關問題的解決