ubuntu16網路命令 缺少一些庫的應對方法

2021-08-25 13:53:43 字數 2980 閱讀 1332

vi /etc/network/inte***ces
# configure loopback

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet dhcp

# configure loopback

auto lo

iface lo inet loopback

auto eth0

#iface eth0 inet dhcp

iface eth0 inet static

address 192.168.1.90

gateway 192.168.1.1

network 192.168.1.1

netmask 255.255.255.0

root@thinkpad

:/myfile/ducment

# cat /etc/network/inte***ces

# inte***ces(5) file used by ifup(8) and ifdown(8)

auto lo

iface lo inet loopback

auto ens33

#iface eth0 inet dhcp

iface ens33 inet static

#加上靜態位址

pre-up ifconfig ens33 hw ether 00

:0c:

29:af:5

e:2c

address 192.168.17.129

gateway 192.168.1.2

network 192.168.1.1

netmask 255.255.255.0

//方法一

sudo /etc/init.d/networking restart

//方法二:優點是可以指定網絡卡不影響其它網路

ifdown eth0 關閉網絡卡

ifup eth0 開啟網絡卡

//方法三:圖形介面網路設定

sudo apt install nfs-kernel

.54-1ubuntu1_amd64.deb

解決方法:

宿主機開啟網路共享,網路共享給vmwarenet8虛擬網絡卡,設定網絡卡ip,配置虛擬機器網路,將nat模式dhcp關閉,設定/etc/network/inte***ces設定ip閘道器、掩碼等內容

新增dns網域名稱解析服務

gedit /etc/resolv.conf

新增search localdomain

nameserver 119.29.29.29

nameserver 182.254.116.116

如果還不能新增閘道器

route add default gw 192.168.137.1

重啟網路

/etc/init.d/networking restart

apt-get install  gconf2-common   libgconf-2-

4

sudo apt-get remove libreoffice-common

-ui-install

sudo apt-get remove onboard deja-dup

apt install vsftpd
修改vsftpd的配置檔案/etc/vsftpd.conf,將下面幾行前面的#去掉

#local_enable=yes

#write_enable=yes

上面第一行表示是否允許本地使用者登入,第二行表示是否允許上傳檔案。修改完成後執行一下命令重啟ftp服務:

sudo /etc/init.d/vsftpd restart
執行一下命令安裝ssh服務,安裝後將自動執行:

apt install openssh-server
它的配置檔案為/etc/ssh/sshd_config,使用預設配置即可

ubuntu 基本命令篇 16 網路管理

16.網路管理 網路五元素 mac位址 ip位址 網路掩碼 閘道器dns 將ip位址轉換成網域名稱 ping ifconfig route etc resolv.conf netstat ipnmap cat etc resolv.conf 檢視dns,得到nameserver 192.168.0....

16 網路爬蟲

爬取整個靜態網頁 並存入檔案。第乙個引數是 要帶協議 http 二三引數可選,意思暫時不知道 動態的暫時不會。加request import urllib2 request urllib2.request response urllib2.urlopen request print response...

Ubuntu16 壓縮解壓檔案命令

zip zip是比較常用的文件壓縮格式,最大的有點是跨平台,缺點是支援的壓縮率不是很高。壓縮zip r studio.zip directory to compress解壓 unzip studio.ziptar 好處是只消耗非常少的cpu及時間打包,只是乙個打包工具,並不負責壓縮。tar cvf ...