ubuntu網卡配置及安裝ssh服務

一、ubuntu網卡配置

一、查看網卡名稱

ip a

二、進行編輯網卡配置文件

sudo vi /etc/network/interfaces

更改網卡配置文件添加內容
修改內容以下:下面的enp0s3須要改爲本身的網卡名稱。ip地址,掩碼網關本身合理配置就好了。記得wq!保存退出。html

auto enp0s3
iface enp0s3 inet static
address 192.168.0.1
netmask  255.255.255.0
gateway  192.168.0.1
dns-nameservers 223.5.5.5

三、重啓網卡

/etc/init.d/networking restart

四、ping百度測試

ping baidu.com

二、ubuntu安裝ssh服務

一、查看是否開啓ssh服務

sudo ps -e |grep ssh
sudo netstat -lntp

若是安裝了的是會有sshd服務的,下面的圖片是沒有安裝ssh服務

ubuntu

二、先更新資源列表,使用命令:

sudo apt-get update


三、安裝openssh-server,使用命令:

sudo apt-get install openssh-server


四、繼續輸入udo ps -e |grep ssh查看是否安裝成功,和下面圖片同樣看到sshd則說明安裝成功。


五、查看主機的IP地址,使用命令:

ifconfig 
ip a

相關文章
相關標籤/搜索