centos 基本操作命令

2021-06-26 20:31:58 字數 1175 閱讀 7917

1:如何進入優盤   

(1):回到根目錄    cd /

(2) :cd /media/disk/

2:刪除資料夾

(1):rmdir 目錄名稱  但只能刪除空的資料夾

(2):rm -r 目錄名稱  遞迴刪除目錄檔案下的所有檔案  但是有警告

(3):rm -rf 目錄名稱 遞迴刪除目錄檔案下的所有檔案無警告

3:檔案複製

cp -rf 原始檔|源資料夾 目標檔案|目標資料夾

eg: (1):將home/wangshiming/downloads裡面的檔案和資料夾等複製到home/wangshiming/tools目錄

方法:cp -rf /home/wangshiming/downloads/* /home/wangshiming/tools

(2):將 home/wangshiming/tools/abc/下的資料夾和檔案 複製到home/wangshiming/tools下

方法:cp -rf /home/wangshiming/tools/abc/* /home/wangshiming/tools

4:彈出優盤

umount /media/disk

5:檢視linux下的所有的服務

/etc/init.d/     目錄下都是

6:系統重啟:reboot     halt   poweroff  

sync;資料同步寫入磁碟,,,,用於儲存檔案。

通常重啟時,都會執行   sync; sync; sync; reboot

root 賬戶下:shutdown -h now

poweroff -f

7:切換執行等級:init        

init 0:關機     init 3:春命令列模式    init 5:含圖形介面模式   init 6:重啟

8:跨伺服器檔案的複製

scp [email protected]:/remote/path  /local/path

將遠端linux主機上/remote/path的檔案copy到本主機的/local/path目錄

scp /local/path [email protected]:/remote/path

將本主機的/local/path目錄copy到遠端linux主機上/remote/path的檔案

centos基本操作命令

一 檔案管理 二 檔案許可權 檔案許可權 chown 更改許可權 chmod 更改所屬使用者 如 mkdir quanxian chown root root quanxian 三 系統管理 系統 網路 管理 top 看實時的程序資訊 ps 看瞬時的程序快照,如 ps ef kill free 檢視...

Centos基本命令操作

一 防火牆常用命令 建立使用者useradd admin,修改密碼passwd admin 輸入兩次密碼 修改 etc sudoers 檔案 root all all all的下一行新增新建立的使用者例如 admin all all all 將 permitrootlogin yes 改為 perm...

CentOS 基本操作

修改更新源 yum makecache標準軟體 yum install y nc yum install y gcc yum groupinstall y development tools yum install y git cd usr local src git clone cd axel c...