目錄目錄內容
/bin
/bi底下的指令可以被root與一般賬戶使用 ;存放二進位制可執行檔案(ls,cat,mkdir等),常用命令一般都在這裡
/boot
存放用於系統引導時使用的各種檔案
/dev
用於存放裝置檔案
/etc
存放系統管理和配置檔案
/home
存放所有使用者檔案的根目錄,是使用者主目錄的基點,比如使用者user的主目錄就是/home/user 也可以用~user表示
/lib
/media
/mnt
/opt
/root
/sbin
/srv
/tmp
lost+found
/proc
/sys
1.如何關閉linux伺服器
方法一 : halt
方法二 : shutdown -h now
2.如何重啟linux伺服器
方法一 : reboot
方法二 : shutdown -r now
3.檢視當前使用者,如果是root使用者,則 切換到其他指定使用者下如zd使用者
檢視當前使用者:whoami
切換到zd使用者: su zd
4.當前是root使用者登入,修改root使用者的密碼 ,或者是修普通使用者的密碼
passwd[username]
注:如果不指定使用者名稱(username)則預設修改root使用者的密碼。注意:普通使用者只能修改自己的密碼
5.切換到zd使用者的家目錄下
cd /home/zd
6.在zd的加目錄下建立乙個資料夾study
mkdir /home/zd/study
7.檢視zd家目錄下的資料夾或者子檔案
ls /home/zd
8.切換到zd家目錄下的study 檢視當前檔案的路徑
切換到study : cd /home/zd/study
檢視當前資料夾路徑 : pwd
9.在改路徑下建立乙個檔案hello.txt
方法一:touch hellow.txt
方法二(vi 編輯器模式轉換) : vi hellow.txt
10.編輯hellow.txt,寫入"hello word"
vi是linux環境下解決檔案編輯的利器
vi分為三種狀態
1) 命令列模式(command mode)
控制螢幕游標的移動,字元,字或行的刪除
2) 插入模式(insert mode)
只有在當前模式下,才可以做到文字的輸入,按[esc]鍵 可以回到
命令列模式
3) 尾行模式(last line mode)
將檔案儲存或者退出vi
三中模式舉例使用(編輯)
1.進入命令列模式: vi hello.txt 即計入vi編輯檔案hellow.txt的命
令行模式,此時只能在命令列模式下移動游標,行刪除等範圍內操作
2.進入插入模式 : 在命令列模式下,按下鍵盤的之母 i 即進入插入模
式 ,可做文字輸入等操作 ,此時按下 esc 即 進入命令列模式
3.進入尾行模式: 在命令列模式下輸入:即進入偉航模式
為行模式常用命令
:w 儲存
:w filename (輸入此命令 即將文章以指定檔名儲存)
:wq (存檔並退出vi)
:q! (不儲存 強制退出)
11.檢視hello.txt檔案內容
cat hello.txt
**12.**向 hello.txt 檔案中追加 i am better man
echo "i am better man " >> hello.txt
13.拷貝zd 家目錄下的study目錄到root 使用者家目錄中
cp -r /home/zd/study /root/
14.移動絕對路徑下的/root/test/my.txt 到 zd 的家目錄下
mv /root/test/my.txt /home/zd
15.刪除檔案或者資料夾
rm -rf /root/home/zd/study (遞迴刪除 強制刪除 不進行對話 刪除就用這個就好 賊好使)
16.檢視檔案中的前十行 後十行內容
head -10 /home/zd/hello.txt
tail -10 /home/zd/hello.txt
17.查詢 hello.txt 檔案的所在位置
find /-name hello.txt
18.過濾出/root/hello.txt 中帶 中國的行
方法一:grep '中國' /root/article.txt
方法二:sed -n '/中國/p' /root/article.txt
方法三:awk '/中國/ ' /root/article.txt
19.檢視hello.txt 中的內容 使用管道命令過濾出 帶 中國的 行
方法一: cat /root/article.txt |grep '中國'
方法二: cat /root/article.txt |sed -n '/中國/p'
方法三: cat /root/article.txt |awk '/中國/ '
20.檢視root家目錄下的內容,過濾出hello.txt檔案並檢視檔案內容
錯誤:ls /root|grep my.txt|cat
正確: ls /root|grep my.txt|xargs cat
Linux常用命令彙總
1.基礎指令 cd 切換路徑 cd 退出 cd 退回root pwd 顯示當前路徑 ls 顯示資料夾下所有檔案 more 顯示檔案內容 head 顯示檔案前若干行 vim 開啟vim編輯器,有三個模式命令模式 輸入模式 末行模式。命令模式下 i 進入輸入模式 進入末行模式,可用 q 退出 wq儲存退...
linux 常用命令彙總
ls 顯示檔案和目錄列表 cd 切換目錄 顯示當前工作目錄 建立目錄 如果主目錄沒有自動建立 mkdir p test test1 複製目錄或檔案。遞迴處理 cp r 建立檔案 touch 1.text 清空檔案內容 echo 1.text 移動檔案或目錄,檔案或目錄改名 刪除檔案 刪除該目錄下的所...
linux常用命令彙總
tar 解包 tar xvf filename.tar 打包 tar cvf filename.tar dirname 注 tar是打包,不是壓縮!gz解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzip filename tar.gz 和 tg...