df -lh
檢視ubuntu系統下掛載了多少個檔案系統
ll foldername |wc -l
檢視foldername資料夾下有多少個檔案
wc --word count
l --line
lsof -i tcp:port (port替換成埠號,比如6379)可以檢視該埠被什麼程式占用,並顯示pid,方便kill
mv sourcefileorfolder targetfolder
移動檔案到另乙個資料夾
mv既可以移動檔案、資料夾。也可以重新命名
例如:mv wuhan wuhanold
就把wuhan這個資料夾重新命名為wuhanold
nohub jupyter notebook & 在本機使用虛擬環境中的jupyter notebook,nohub不結束通話的執行命令,&讓程式自動在後台執行
scp sharefile remote_username@remote_ip:remote_folder
scp命令:secure copy在linux下遠端copy檔案
cp只是在本機進行拷貝不能跨伺服器
如果copy資料夾加引數-r
scp -r localfolder remote_username@remote_ip:remote_folder
如果從遠端的資料夾copy到本地,換一下後兩個引數的位置即可
scp -r remote_username@remote_ip:remote_folder localfolder
ssh remote_username@remote_ip 遠端連線機器
Linux命令總結
vi基本命令 i 在當前游標的的所在位置,插入隨後輸入的文字,游標後的文字相應向右移動 i 在游標所在行的行首插入隨後輸入的文字,行首是該行的第乙個非空白字元,相當於游標移動到行首再執行i命令 a 在當前游標所在位置之後,插入隨後輸入的文字 a 在游標所在行的行尾新增隨後輸入的文字,相當於游標移動到...
linux命令總結
登出 exit 關機 shutdown h now 重啟 reboot 幫助 man ls man f ls info ls date y m d 更改檔案使用者組 chgrp r user file d 更改檔案使用者 chown r user file d 更改檔案屬性 chmod r 777 ...
linux命令總結
linux檔案編輯器 vi vim 1 vi 的三種命令模式 command 命令 模式,用於輸入命令 insert 插入 模式,用於插入文字 visual 可視 模式,用於視化的的高亮並選定正文 2 檔案的儲存和退出 command 模式是vi或vim的預設模式,如果我們處於其它命令模式時,要通過...