Linux系統配置固定IP位址 主機名

2021-09-11 07:08:07 字數 3133 閱讀 3948

一、編輯網絡卡配置檔案(/etc/sysconfig/network-scripts/ifcfg-eth0)

二、關閉 networkmanager 服務,禁止其開機啟動

三、 重啟 network 服務, 並檢視 eth0 網絡卡情況

四、臨時修改主機名(舉例:修改主機名為 www)

五、修改主機名永久生效(修改)

[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
device=eth0                                 # eth0 表示 第一塊網絡卡   

hwaddr=00:0c:29:51:e8:31 # 網絡卡的實體地址

type=ethernet # 網路型別

uuid=40fce351-c32b-434d-a0a6-39ba849809f6

onboot=yes # yes 表示 隨機啟動

nm_controlled=no # 裝置eth0是否可以由network manager工具圖形託管

bootproto=static # 值為 static 表示 靜態ip, dhcp 表示 動態ip

ipaddr=192.168.174.151 # 指定 靜態 ip 位址

gateway=192.168.174.1 # 指定 閘道器 ip

netmask=255.255.255.0 # 子網掩碼

[root@localhost ~]# service networkmanager stop

停止 networkmanager 守護程序: [確定]

[root@localhost ~]# chkconfig networkmanager off

[root@localhost ~]# chkconfig --list networkmanager

networkmanager 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉

[root@localhost ~]# service network restart

正在關閉介面 eth0: [確定]

關閉環迴介面: [確定]

彈出環迴介面: [確定]

彈出介面 eth0: determining if ip address 192.168.174.151 is already in use for device eth0...

[確定]

[root@localhost ~]# ifconfig eth0

eth0 link encap:ethernet hwaddr 00:0c:29:51:e8:31

inet addr:192.168.174.151 bcast:192.168.174.255 mask:255.255.255.0

inet6 addr: fe80::20c:29ff:fe51:e831/64 scope:link

up broadcast running multicast mtu:1500 metric:1

rx packets:468 errors:0 dropped:0 overruns:0 frame:0

tx packets:352 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

rx bytes:45944 (44.8 kib) tx bytes:42222 (41.2 kib)

[root@localhost ~]#

[root@localhost ~]# hostname            # 檢視修改前的主機名

localhost.localdomain

[root@localhost ~]# hostname www # 修改主機名

[root@localhost ~]# hostname # 檢視修改後的主機名

www[root@localhost ~]#

[root@localhost ~]# vim /etc/sysconfig/network    # 修改主機名的配置檔案

[root@localhost ~]# cat /etc/sysconfig/network

networking=yes

hostname=www # 將hostname 的值設定為新的主機名

[root@localhost ~]# service network restart # 重啟 network 網路服務

正在關閉介面 eth0: [確定]

關閉環迴介面: [確定]

彈出環迴介面: [確定]

彈出介面 eth0: determining if ip address 192.168.174.151 is already in use for device eth0...

[確定]

[root@localhost ~]# init 6 # 重啟系統後發現 命令提示符主機名為 www

Linux系統配置

一般在這個目錄下 etc sysconfig network scripts 通常是 ifcfg eth0 網口1 ifcfg eth1 網口2 dell的是 ifcfg em1 網口1 ifcfg em2 網口2 重啟網絡卡 service network restart 如果ping 不通網域名...

linux系統配置

配置記錄 6 15 2016 10 19 18 am 1.vimrc配置 vimrc沒有,直接建立即可 vim開源配置檔案 這裡新增一些解決中文亂碼和tab鍵設定為空格的方法 解決中文亂碼 set termencoding utf 8 set encoding prc 設定tab為空格,注 ts是t...

Linux系統配置

系統配置,包括軟體安裝,各種問題解決。sudo apt get install libreoffice l10n zh cn當系統卡死時,鍵盤和滑鼠都沒辦法操作了以後。可以嘗試ctrl alt f2 f2 f6 試試,看看能不能進tty介面。能進的話,進入以後htop檢視問題。當上述操作無效時,按住...