Centos 7轉殖映象,基本命令記錄

2021-10-23 14:49:40 字數 1742 閱讀 9897

修改配置檔案

修改配置檔案 /etc/sysconfig/network-scripts/ifcfg-ens33 中的ipaddr
修改主機名

hostnamectl set-hostname   ***x(主機名)
修改hosts檔案,將名字和ip建立聯絡

輸入命令「vim /etc/hosts」後,在配置檔案中加入

127.0

.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4::

1 localhost localhost.localdomain localhost6 localhost6.localdomain6

***.***.***.***(你所修改的主機ip) ******xx(你要的主機名字)

重啟:reboot

首先,要確保 centos 7 安裝了 openssh-server,在終端中輸入 yum list installed | grep openssh-server

此處顯示已經安裝了 openssh-server

如果沒任何輸出顯示表示沒有安裝 openssh-server

通過輸入 yum install openssh-server來進行安裝 openssh-server

openssh-server.x86_64                   7.4p1-

16.el7 @anaconda

修改 sshd_config 配置檔案

[root@all

~]# vim /etc/ssh/sshd_config

# 將檔案中,關於監聽埠、監聽位址前的 # 號去除

port 22

#addressfamily any

listenaddress 0.0

.0.0

listenaddress :

:# 開啟允許遠端登入

permitrootlogin yes

# 開啟使用使用者名稱密碼來作為連線驗證

passwordauthentication yes

# 開啟  sshd  服務 

sudo service sshd start

# 檢查 sshd 服務是否已經開啟

ps -e | grep sshd

# 檢查 22 號埠是否開啟監聽

netstat -an | grep 22

# 檢視當前所在目錄

pwd# 檢視磁碟大小

df -h

# 取消查詢檔案高光

nohl

# 關閉防火牆

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall開機啟動

systemctl status firewalld.service #檢視firewall的狀態

# 臨時關閉防火牆

systemctl stop firewalld

# 禁止開機啟動

systemctl disable firewalld

centos7基本命令

linux檢視磁碟大小以及記憶體大小 df bg 檢視磁碟大小 du h max depth 1 檢視每個專案佔據磁碟大小 free m 檢視記憶體大小 top 檢視所有記憶體占用情況 top p 具體的程序id 檢視單個程序占用記憶體 systemctl是centos7中重要的工具,是servic...

centos7 轉殖後的虛擬機器配置過程

轉殖完後 1.刪除配置檔案中的uuid那一行,vim etc sysconfig network scripts ifcfg ens33 確保其中的onboot yes 2.進入 etc udev rules.d 這個目錄,刪除檔案70 persistent ipoib.rules,rm f 70 ...

CentOS7轉殖虛擬機器需要修改的配置

etc sysconfig network scripts ifcfg e 最後的e 每個電腦的可能都不一樣,可以輸入e後按tab鍵自動補全即可。2 執行第一步的指令,進入該檔案後。修改hwaddr後面的值,這是mac位址,把剛剛複製好了的貼上就行。修改ipaddr後面的值,這是ip位址的值,修改最...