centos7常用命令彙總(一)

2021-10-21 19:36:42 字數 2500 閱讀 8226

shutdown 關機命令

shutdown -h 5 5分鐘後關機

halt 直接關機

poweroff 直接關機

shutdown -h now/0 立即關機

reboot 直接重啟

shutdown -r 5 5分鐘後重啟

shutdown -r now/0 立即重啟

list = ls

**如下(示例):

[root@linux etc]# ls

abrt hosts python

adjtime hosts.allow rc0.d

aliases hosts.deny rc1.d

aliases.db init.d rc2.d

alternatives inittab rc3.d

ls -d 路徑 有針對的檢視目錄資訊

**如下(示例):

[root@linux etc]# ls -d /etc

/etc

make directory = mkdir 建立目錄

mkdir -p 需要建立的目錄路徑 建立多級目錄/可以忽略掉重複建立的錯誤提示

eg:mkdir -p /linux/linux01/linux02

change directory = cd

**如下(示例):

[root@linux ~

]# cd /etc

[root@linux etc]#

返回上一級目錄

**如下(示例):

[root@linux etc]# cd .

.[root@linux /

]#

返回使用者家目錄 cd ~

print work directory = pwd

[root@linux ~]# ls /etc/services————檢視檔案資訊

/etc/services

[root@linux ~]# ls -l /etc/services————檢視檔案資料資訊

-rw-r–r--. 1 root root 670293 jun 7 2013 /etc/services

touch /linux/linux.txt

1.檔案開啟進行直接編輯

vi oldboy.txt

按鍵盤上小寫字母 i

編寫檔案內容

進行儲存關閉文件

按esc(退出編輯狀態)–:wq

:q (不儲存直接退出)

:w (只儲存但不退出)

檔案不用開啟進行直接編輯

將螢幕顯示的資訊儲存到檔案中

第一步: 螢幕上有資訊顯示

[root@linux linux]# echo 「hello world」

hello world

[root@linux linux]# echo 「hello world」

hello world

第二步: 將螢幕上顯示的資訊放入到檔案中

[root@linux linux]# echo 「hello world」 > linux.txt

[root@linux linux]# vi linux.txt

hello world

[root@linux linux]# echo 「this is a beautiful world」 >> linux.txt

[root@linux linux]# vi linux.txt

hello world

this is a beautiful world

說明:> 執行原理: 將原有檔案內容先進行清空 新增新的資訊

>> 執行原理: 不會覆蓋

cat — 檢視檔案

copy(複製)—cp

用法: cp 要複製資料資訊(檔案/目錄) 複製到什麼位置(目錄中)

[root@linux linux]# cp /linux/linux.txt /tmp

[root@linux linux]# cp -r /linux/linux01/ /tmp --------引數 -r 是指遞迴

刪除檔案

刪除有詢問————————rm 檔案路徑

強行刪除無詢問————————\rm 檔案路徑

強制刪除無詢問——-f = force 強制————————rm -f 檔案路徑

ps: 刪除資料的命令,除非必要還是別弄了,這個危險。

move(移動)==mv

mv命令用法和cp命令類似

系統相關

目錄相關

檔案相關

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 切換...

Centos7常用命令

檢視服務狀態 systemctl status networkmanager network 停止服務 systemctl stop networkmanager 啟動服務 systemctl start networkmanager 禁止服務開機啟動 systemctl disable netwo...