pwd:"print working directory";顯示出你所在到目錄。
ls:"list";顯示當前目錄下的檔案。
cd:"change dirctory";更改當前目錄。
cp:"copy"; cp file foo 將file檔案複製到foo中;cp -r directory foo 將directory 資料夾複製到foo中。
mv:"move";
rm:"remove";
rmdir:"remove directory";
mkdir:"make directory";
man:"manual";顯示其他命令的選單。
df:"display filesystem";顯示檔案系統硬碟空間。df -h:"display filesystem human-readable";
du:"disk usage";顯示磁碟使用狀況
-s:"summary"
-h:"human readable"
free:"free";顯示系統中空閒和已用空間。free -m:「free using megabytes";
top:"table of process";顯示正在執行到系統資源。
uname -a:顯示出所有的系統能夠資訊。包括機器,核心,版本。。。
>:將輸出重定向到指定到檔案 ls > file_list.txt 將ls的結果輸出到file_list.txt這個檔案中,每次執行覆蓋之前內容。
>>:同上,每次執行將結果加在之前內容到後面。
<:重定向標準輸入,sort < file_list.txt. 從file_list.txt中匯入內容並用sort命令處理。
ubuntu下常用的命令(2)
1.sudo apt get install 軟體名 安裝軟體的命令。2.sudo nautilus 開啟檔案 有root許可權 3.su root 切換到 root 4.useradd 使用者名稱 建立乙個新的使用者。adduser 使用者名稱 也是建立乙個新的使用者,更適用於初學者,是互動方式的...
Linux常用到的命令
記錄一下日常用到的linux命令,就當做日誌了 1 檢視linux 埠號 netstat apn grep 80 2 殺死程序 kill s 9 pid tomcat 啟動不起來有可能是遠端除錯埠未關閉 或者tomcat埠未關閉 3 改變檔案的許可權 chmod 755 檔名 4 解壓 tar xz...
常用到的nuGet命令
a.初始化 migration enable migrations contexttypename mvcproject.models.projectdbcontext b.修改models add migration migrationname c 更新資料庫 update database d....