centos基礎設定

西江月明發表於2024-08-29

1.設定網路

# 配置網路
vi /etc/sysconfig/network-scripts/ifcfg-ens33
#將裡面的onboard設定為yes

image

2.修改計算機名

使用命令列:
開啟終端。 使用 hostnamectl 命令可以直接修改主機名。例如,如果您想將主機名更改為 mynewhostname,您可以使用以下命令:

sudo hostnamectl set-hostname mynewhostname

這個命令會立即更改主機名,但為了讓更改在重啟後依然有效,還需要編輯 /etc/hostname 檔案。
編輯 /etc/hostname 檔案:

使用文字編輯器開啟 /etc/hostname 檔案。您可以使用如 nano 或 vi 的編輯器。例如:
sudo vim /etc/hostname
在檔案中,您會看到當前的主機名。將其更改為您想要的新主機名。儲存並關閉檔案。

編輯 /etc/hosts 檔案:

有時,您還需要在 /etc/hosts 檔案中更新主機名。開啟該檔案:

sudo vim /etc/hosts

找到與您的舊主機名相關的條目,將其替換為新的主機名。儲存並關閉檔案。

重啟網路服務(可選):
為了使更改生效,您可能需要重啟網路服務,可以使用以下命令:
sudo systemctl restart network
或者,您可以簡單地重啟計算機。

驗證更改:
要驗證主機名是否已更改,可以使用 hostnamectl 命令:
hostnamectl
[root@MiWiFi-RD03-srv ~]# sudo hostnamectl set-hostname rocky2024
[root@MiWiFi-RD03-srv ~]# sudo vim /etc/hosts
sudo: vim:找不到命令
[root@MiWiFi-RD03-srv ~]# sudo vi /etc/hosts
[root@MiWiFi-RD03-srv ~]# reboot
Connection closing...Socket close.

Connection closed by foreign host.

Disconnected from remote host(rocky) at 23:56:51.

Type `help' to learn how to use Xshell prompt.
[C:\~]$ 

Connecting to 172.16.211.215:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

WARNING! The remote SSH server rejected X11 forwarding request.
Activate the web console with: systemctl enable --now cockpit.socket

Last login: Thu Aug 29 07:57:25 2024
[root@rocky2024 ~]# cat /etc/hosts
127.0.0.1   rocky2024
::1         rocky2024
[root@rocky2024 ~]# 

相關文章