建立乙個叫xiaoming的使用者
$ sudo adduser xiaoming將使用者許可權公升為root
$ sudo usermod -g sudo xiaoming使用xiaoming使用者建立檔案list.txt
$ su -xiaoming更改list.txt的許可權為711 #711的含義是:$ sudo touch list.txt
所有者的許可權是4+2+1可讀可寫可執行
所屬使用者組的許可權是1可執行
其他使用者的許可權是1可執行
$ sudo chmod 711 list.txt更改list.txt所有者為xiaohong
$ sudo chown xiaohong list.txt
檢視list.txt檔案的具體資訊
$ ls -alh list.txt列印xx.log日誌最後10行內容
$ tail -n 10 xx.log動態列印xx.log 日誌
$ tail -f xx.log利用關鍵字key列印日誌
$ grep key xx.log程序實時占用cpu查詢
$ top系統記憶體使用情況
$ free -h
$ df -h查詢xx路徑下的xx.txt
$ find xx/ -name xx.txt查詢xx.txt
$ find -name xx.txt6.建立目錄
在當前目錄下建立a/b/c目錄
$ mkdir -p a/b/c7.建立檔案
建立檔名為1.txt的檔案
$ touch 1.txt建立檔名為test_1.txt和test_2.txt還有test_3.txt的檔案
$ touch test_.txt8.編輯檔案內容
編輯1.txt的內容
方法一:
$ vi 1.txt輸入小寫字母 i
插入文字"hello world"
儲存退出:
(1)點選esc按鈕
(2)輸入:wq
方法二:
$ echo "hello world" > 1.txt9.檢視檔案內容
檢視檔案1.txt 的內容
$ cat 1.txt
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...