linux常用命令

2022-06-29 20:39:07 字數 1555 閱讀 9885

建立乙個目錄:mkdir /tmp/xiaodianying

-p遞迴建立: mkdir -p /tmp/japan/boduo japan目錄本身是不存在的

"ls -l"檔案列表許可權詳解: ls -1 /tmp/japan

乙個目錄下建立多個檔案:mkdir -tmp/japan/cangjing /tmp/japan/longze

"ls"檔案列表: ls /tmp/japan

顯示當前所在的目錄pwd(print working directory): pwd

刪除乙個空目錄rmdir(remove empty directory):rmdir /temp/japan/boduo 只能刪除乙個空目錄,如果目錄下面有檔案,則不能刪除,實際應用並不是多

複製檔案cp: cp /ect/grub.conf /tmp

複製資料夾cp -r: cp -r /tmp/japan/cangjing /root

同時複製多個檔案:cp /root/install.log /root/install.log.syslog /tmp

複製檔案,並保持檔案的屬性:cp -p /root/install.log

複製目錄,並修改目錄名: cp -r /tmp/japan/longze /root/shenchao.18+

清除螢幕上所有的操作命令:1.ctrl+l ,2.clear

剪下:mv /tmp/japan/cangjing /root 或者使用不是絕對路徑 mv cangjing /root

修改當前檔名稱:mv cangjing canglaoshi

刪除乙個檔案:rm grub.conf

強制刪除乙個檔案 : rm -f grub.conf

刪除乙個目錄 : rm -rf /tmp/japan

ctrl+c終止當前操作

linux沒有**站的功能

要返回到你的計算機,請按ctrl+alt

檢視目錄中的檔案

顯示檔案和目錄的詳細資料 ls -l

查詢檔案 find cxx

文字操作:

檢視檔案中的所有內容:cat cxx.txt

vi 檔名 #編輯方式檢視,可修改

cat 檔名 #顯示全部檔案內容

more 檔名 #分頁顯示檔案內容

tail 檔名 #僅檢視尾部,還可以指定行數

head 檔名 #僅檢視頭部,還可以指定行數

sed '1,$'p 檔名 #這個可以指定起始行和結束行的,把1和$換了就可以

以下是儲存命令:

:w 儲存檔案但不退出vi

:w file 將修改另外儲存到file中,不退出vi

:w! 強制儲存,不推出vi

:wq 儲存檔案並退出vi

:wq! 強制儲存檔案,並退出vi

:q 不儲存檔案,退出vi

:q!不儲存檔案,強制退出vi

:e! 放棄所有修改,從上次儲存檔案開始再編輯

將乙個檔案指定行寫入到另外乙個檔案中:sed -n '1,3'p cxx.txt /tmp/japan

Linux常用命令之Linux常用命令實戰知識點

在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...

LINUX常用命令

一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...

linux 常用命令

ssh 連線 eg.ssh l mike www.mydomain.com or 192.168.0.1 scp 複製 本地 遠端 scp localfile username tohost newfile 遠端 本地 scp username tohost remotefile local 把tx...