CentOS7 常用命令操作記錄

2021-10-06 15:25:37 字數 2882 閱讀 1849

1、centos命令自動補全增強

# yum -y install bash-completion

2、修改命令列背景顏色

輸入setterm -background white 後,背景會變成白色。輸入setterm -foreground black 後,字型會變成黑色。其中,背景和字型一共8種顏色可選,分別是white,black,red,green,yellow,blue,magenta,cyan。注意,如果先修改背景色,再修改字型色,那麼修改後的背景色不要與修改前的字型色一致,否則無法看清楚命令。

3、命令列中的複製和貼上

安裝gpm:yum install -y gpm*

開啟gpm服務:systemctl start gpm

按住滑鼠左鍵,選中想要複製的內容,鬆開就完成複製,再在複製的位置按右鍵就完成貼上

4、設定ip

sudo ip addr add 192.168.99.119/24 dev 網絡卡名稱

5、改為靜態ip

首先修改vi /etc/sysconfig/network如下:

networking=yes

hostname=centos

gateway=192.168.99.1

然後修改vi /etc/sysconfig/network-scripts/ifcfg-ens33(網絡卡名稱):

bootproto="static"

onboot=yes

ipaddr=192.168.99.119

prefixo=24(可選)

netmask=255.255.255.0

gateway=192.168.99.1

dns1=192.168.99.1

6、重啟網路服務

service network restart 或 systemctl restart network.service

7、軟體安裝

解壓相關:yum install -y lrzsz

zip解壓:yum install -y unzip zip

8、防火牆操作

firewall-cmd --zone=public --add-port=3000/tcp --permanent開啟乙個埠(--permanent永久生效)

firewall-cmd --query-port=3000/tcp檢視乙個埠

firewall-cmd --reload重新載入

firewall-cmd --zone=public --remove-port=80/tcp --permanent關閉乙個埠

systemctl restart firewalld.service 或 service firewalld restart重啟防火牆

systemctl stop firewalld.service 或 service firewalld stop關閉防火牆

9、其他操作

mkdir [dir] 建立資料夾 

tar zxvf [file] 解壓檔案

find / -name [file] 全域性搜尋檔案所在路徑

dhclient 獲取ip位址

ip addr或者ip add  檢視ip

chkconfig --list 或 systemctl list-unit-files 檢視開機自啟動

netstat -lntp 檢視所有監聽的埠(yum -y install net-tools)

netstat -lntp|grep [3000] 檢視指定監聽的埠

rm -f [file ] 強制刪除檔案,不提示 

rm -r [dir] 遞迴刪除其檔案和資料夾 

rm -rf [dir] 強制刪除資料夾及其內容,不提示 

mv dir/file [dir] 將檔案或者資料夾移動到指定目錄 

mv -t [dir] [file] 將檔案或者資料夾移動到指定目錄 

mkdir [dir1] [dir2] 建立兩個資料夾 

mkdir -p /tmp/dir 建立多級目錄 

cp file file1 將檔案file複製乙份file1 

cp -a file/dir dir 將檔案或者資料夾複製到指定目錄 

cd .. 返回上一級目錄 cd ../.. 返回上兩級目錄 

cd / 返回根目錄 

ls 列舉出當前目錄中所有檔案 

ls -a 列舉出當前目錄中所有檔案,包括隱藏檔案 

ls -l 顯示檔案的詳細資訊 

ls -lrt 按時時間排序顯示檔案 

pwd 顯示當前路徑 

df -h 檢視空間使用情況

lsblk 檢視分割槽和磁碟

fdisk -l 檢視分割槽資訊

free -h 檢視記憶體

cat /proc/cpuinfo| grep "cpu cores"| uniq 檢視cpu核心數

cat /etc/redhat-release 檢視centos版本資訊

/usr/bin/passwd 修改root密碼

cp /usr/share/zoneinfo/asia/shanghai /etc/localtime -r 修改時區

hwclock -w 把系統時間寫入bios時間

ntpdate time.windows.com 系統時間同步

Centos7常用命令 檔案操作

檔案操作 檢視目錄中的檔案 root localhost ls 檢視目錄中的檔案 root localhost ls f 顯示檔案和目錄的詳細資料 root localhost ls l 顯示隱藏檔案 root localhost ls a 顯示包含數字的檔名和目錄名 root localhost ...

CentOS 7常用命令

在開發中常用的一些命令。1 目錄切換 2 對目錄的操作 3 對檔案的操作 4 檔案的壓縮 解壓 5 許可權的操作 6 防火牆及埠管理 7 網路配置 8 系統資訊檢視 9 一些其他的命令 執行以下命令時需要注意自己對應系統的版本,不同的版本會稍有差別。cd 切換到根目錄 cd 切換到使用者跟目錄 cd...

CentOS 7常用命令

在開發中常用的一些命令。1 目錄切換 2 對目錄 資料夾 的操作 3 對檔案的操作 4 檔案的壓縮 解壓 5 軟體的安裝 6 許可權的操作 7 防火牆埠的開啟 8 一些其他的命令 執行以下命令時需要注意自己對應系統的版本,不同的版本會稍有差別。cd 切換到根目錄 cd 切換到使用者跟目錄 cd 切換...