檢視
cat
#輸出檔案內容
tac #逆序輸出檔案內容
nl#輸出檔案內容,帶有行號
more
#一頁一頁顯示檔案內容,空格代表翻頁,回車代表下一行,不能往上翻動
less
# 與more類似,但是可以往回看 ,空格代表翻頁,上下代表反動頁面
haad - 3 #顯示前三行內容
tail - 3 #顯示最後三行內容
tail -200f 80.log #動態顯示最後200行日誌
touch f.c #建立檔案f.c
vim f.c #若檔案存在,編輯檔案f.c,若檔案不存在,建立檔案f.c並編輯
useradd -m you # 新增新使用者
userdel -r you #散出使用者
usermod
# 修改使用者
su you #切換使用者
sudo
su# 普通使用者切換到root使用者
passwd -l you # 鎖定之後這個使用者就不能登入了!
passwd -d you # 沒有密碼也不能登入!
修改密碼:
超級使用者:passwd username
普通使用者:passwd
groupadd -g 100 you #建立乙個使用者組
groupdel you #刪除乙個使用者組
groupmod -g 666 -n you1 you # 修改使用者組
df -h #列出檔案系統整體的磁碟使用量
du -a #檢查磁碟空間使用量
mount
#掛載umount -f #強制解除安裝
linux檔案操作命令
1.建立檔案 touch test.txt 建立檔案 echo this is a test test.txt 建立檔案並寫入內容 2.檢視檔案內容 cat cat test test.txt 檢視內容 cat n test test.txt 檢視內容並顯示行號 cat a test test.tx...
Linux檔案操作命令
檔案路徑操作 root localhosttest ls顯示當前目錄下的所有檔案及資料夾 root localhosttest ll以詳細方式顯示所有檔案與資料夾。相當於 ls l 命令 root localhosttest cd user 開啟user 資料夾 root localhosttest...
linux檔案操作命令
檔案操作命令 ls 顯示 ls a 顯示所有 包括隱藏 ls l 顯示詳細資訊 ls lh 同上,人性化顯示 ls ld etc 目錄的詳細資訊 ls i 檔案號 cd 切換到根目錄 cd.回到上一目錄 mkdir 建立空目錄 p 遞迴建立子目錄 cp r 原始檔或目錄 目的目錄 複製檔案或目錄 p...