1.如何關閉linux伺服器?
方法一:halt
方法二:shutdown -h now
2.如何重啟linux伺服器?
方法一:reboot
方法二:shutdown -r now
3.請檢視當前登入使用者,如果是root使用者,則切換到其他使用者以下所有普通使用者為test.。
檢視當前登入使用者:whoami
切換到test使用者:su test
4.現在root使用者登入,請修改root使用者密碼,並修改某普通使用者的密碼。
passwd [username]
如果不指定使用者名稱則預設修改root使用者的密碼。注意:普通使用者只能修改自己的密碼。
5.切換到test使用者的 家目錄下。
切換目錄:cd /home/test
6.在test家目錄中建立乙個資料夾study
建立目錄:mkdir /home/test/study
7.檢視test家目錄下的檔案或子目錄
檢視目錄下的內容:ls /home/test
8.切換到test家目錄的study目錄下,檢視當前路徑
切換目錄:cd /home/test/study
檢視當前路徑:pwd
9.在該路徑下建立乙個檔案hello.txt
方法一:touch hello.txt
方法二:vi hello.txt
:wq10.編輯hello.txt,寫入」hello world」
方法一:vim hello.txt
按(a/i/o)進入編輯模式
寫入」 hello world」
方法二:echo 」hello world」 >>hello.txt
如果要追加的檔案不存在,會自動建立
11.檢視hello.txt檔案內容
cat hello.txt
12.向hello.txt檔案中追加」yes,we are family! 」
echo 」yes,we are family! 」 >> hello.txt
13.拷貝test家目錄的study目錄到root使用者家目錄
cp -r /home/test/study /root/
14.移動絕對路徑下的/root/test/my.txt到test的家目錄中
mv /root/test/my.txt /home/test/
15.刪除/root/test/my.txt檔案
rm /root/test/my.txt
16.在/root/test中新建乙個檔案you.txt,然後刪除/root/test目錄。
touch /root/test/you.txt
rm -r /root/test遞迴刪除
rm -rf /root/test遞迴刪除 #強制快速刪除,不進行對話
17.找一篇文章寫入/root/article.txt中,檢視前10行或後10行。
head -10 /root/article.txt
tail -10 /root/article.txt
18.查詢一下my.txt檔案所在的位置
find / -name my.txt
19.過濾出/root/article.txt中帶『中國』的行。
方法一:grep 『中國』 /root/article.txt
方法二:sed -n 『/中國/p』 /root/article.txt
方法三:awk 『/中國/ 』 /root/article.txt
20.檢視article.txt中的內容,使用管道命令過濾出帶『中國』的行。
方法一: cat /root/article.txt |grep 『中國』
方法二: cat /root/article.txt |sed -n 『/中國/p』
方法三: cat /root/article.txt |awk 『/中國/ 』
21.檢視root家目錄下的內容,過濾出my.txt檔案並檢視該檔案中的內容。
錯誤:ls /root|grep my.txt|cat
正確: ls /root|grep my.txt|xargs cat
linux運維基礎命令彙總
cd命令,cd home 進入 home 目錄,cd root 進入 root 目錄 cd 返回上一級目錄 cd 當前目錄 和.可以理解為相對路徑 例如 cd hom test cd 加完整的路徑,可以理解為絕對路徑 ls 檢視當前目錄所有的檔案和目錄。ls a 檢視所有的檔案,包括隱藏檔案,以.開...
Linux基礎命令彙總 持續更新
ls用來顯示目標列表 cd path 用來切換工作目錄 pwd 以絕對路徑的方式顯示使用者當前工作目錄 man command 檢視linux中的指令幫助 配置檔案幫助和程式設計幫助等資訊 apropos whatever 在一些特定的包含系統命令的簡短描述的資料庫檔案裡查詢關鍵字 echo str...
Linux 命令彙總
1 查詢當前安裝的系統版本 cat etc redhat release 2 檢視檔案詳細屬性 ls l 3 讀取檔案顯示在 控制台 tail f 比如讀取 usr local tomcat logs catalina.out檔案,命令為tail f usr local tomcat logs ca...