Linux常用命令總結

2021-09-04 19:29:21 字數 2476 閱讀 9666

linux常用命令總結

-----------liunx幫助命令--------

#help pwd

#help -s pwd 只顯示命令的格式資訊

#touch --help

#man ls

#info ls

-----liunx檔案和目錄操作命令-----

#ls , ls -l , ll 列目錄命令

#cd /root, cd ..目錄更改命令

#mkdir directory1 directory2 …… 建立目錄

#rmdir 刪除空目錄

#file /etc/passwd 檢視檔案型別

#touch file1 file2……建立檔案

#cp file1 file2 ,cp /file1 /file2/ 複製檔案

#rm file , rm file -rf 刪除整個目錄樹

#mv file1 file2,mv file1  /root/ 刪除檔案或目錄樹

#find . -name file*, find . -name file? ;  find . -user teacher 查詢檔案

#cat,more,less  /etc/passwd 目錄檔案檢視命令 

#head -n /etc/passwd 檢視前n行

#tail -n /etc/passwd 檢視後n行

------------------在liunx下使用光碟和u盤-----------------

#mount -t iso9660 /dev/cdrom  /media/cdrom  掛載光碟

#umount /dev/cdrom  /media/cdrom 解除安裝光碟

#eject 彈出光碟

#eject -t 收回光碟

#cp /dev/cdrom  /rhel4-1.iso  製作光碟映象

#mount -o loop -t iso9660 rhel4-1.iso  /media/cdrom/ 掛載光碟映象

#umount /media/cdrom 解除安裝光碟映象

#fdisk -l 檢視系統所有儲存裝置

#mount -t vfat /dev/sda1 /mnt/ 掛載fat格式u盤

#mount -t ntft /dev/sda1  /mnt/ 掛載ntfs格式u盤

#umount /dev/sda1 解除安裝u盤

-------------linux使用者,組管理命令------------

#/etc/password 所有使用者賬戶的儲存位置

#/etc/shadow 所有使用者賬戶口令儲存位置

#/home/  所有使用者的宿主目錄

#adduser username 新增使用者

#passwd username 管理員初始化使用者口令

#password  使用者更改自己的口令

#userdel -r username 刪除使用者,-r刪除使用者和宿主目錄

#usermod -l -u username -l 禁用系統中的使用者賬戶(/etc/shadow下對於的使用者有嘆號)  -u 啟用系統中被禁用的使用者賬戶

#usermod -e yyyy-mm-dd username 設定賬戶的有效期限

#ls -la /etc/skel/  所有使用者配置檔案的模板

#ls -la /home/username  顯示某一使用者的模板

#/etc/group 所有組的檔案

#groupadd group1 新增組

#adduser -g group1 username  建立使用者時直接新增到group1中

#groupdel group1 刪除組group1

#usermod -g group1 username  更改使用者組賬戶

-------------linux檔案許可權設定-----------------

#ls -l file1 檢視檔案許可權  例如 drwxr-xr-x  第一位代表檔案或目錄(d代表目錄,-代表檔案),rwx三位代表檔案所有者具備的許可權,r -x代表檔案屬組所具備的許可權,r-x代表其它所有者所具備的許可權。r代表讀,w代表寫,x代表執行。

#chmod [ugoa] [+-=] [rwx] file1==chmod *** file1 更改檔案許可權 *代表1、2、4的組合(1代表讀,2代表寫,4代表執行)

#chown user1 file1 單獨設定檔案的屬主

#chown :group1 file1 單獨設定檔案的屬組

#chown user1:group1 file1 同時設定檔案的屬組和屬主

#system-config-users  在圖形介面使用,可以更改使用者一些屬性

# #

# #

# #

# #

# #

# # # #

Linux常用命令總結

下面這些命令是我在複習linux時記錄的,沒有詳解,只記錄了簡單的用法 檢視物理cpu個數 cat proc cpuinfo grep physical id sort uniq wc l 檢視物理cpu中core的個數,即核心數 cat proc cpuinfo grep cpu cores un...

LINUX常用命令總結

readlink f 找出符號鏈結所指向的位置 1g 到我檔案頭 g到檔案尾 cat瀏覽檔案 netstat a 檢視所有埠 mkdir 建立資料夾 rm rf 刪除檔案 執行指令碼 指令碼檔案 在當前目錄下 在目錄中查詢檔案 find 檔名 根目錄 當前目錄 剪下 mv vi命令 在檔案中搜尋關鍵...

Linux 常用命令總結

mkdir 建立目錄 ls l 顯示目錄或檔案 cd 切換目錄層次 cat n顯示行號 檢視檔案內容 cat demo.text eof 建立檔案 結尾eof退出編輯狀態 tac 反轉內容輸出 cp apr 拷貝檔案或者目錄 rm f 強制刪除檔案 r 遞迴刪除 刪除檔案或目錄 fr 刪除指定的目錄...