1.unzip zip archive
tar -cf new.tar path
tar -xvf file.tar
2.transfer files
scp username@ip:path path
first path 傳輸檔案路徑
second path 儲存的路徑
安裝ssh伺服器
apt-get install
3. find file content
find -name xx | xargs grep
4.find store
df -m
5 find process
6 create soft link
ln -s
7 file access permissions
chown -r ownername filename
chgrp -r groupname filename
chmod -r 777
linux 學習
i/o主要操作
不帶快取的i/o
open
write
read
原子操作(atomic operation )
the end position of the file,and write in the file, then switch process ,and wirite in the file .
the two seek and wirte do not atomic operation
- file d directory l link b block
read write execute
owner group other
工作中常用git命令
1.commit push 已經更新到遠端倉庫 對於已經把 push到線上倉庫,你回退本地 其實也想同時回退線上 回滾到某個指定的版本,線上,線下 保持一致.你要用到下面的命令 git revert revert 之後你的本地 會回滾到指定的歷史版本,這時你再 git push 既可以把線上的 更新...
工作中常用的linux命令
tar cvf tar 目錄 tar xvf tar emv打成tar包 emvcd domains emvdomain ls lrt pwdcd emv ls lrt pwdcd emv desktop ftp上的路徑 ls lrt emvtar cvf emv20120326.tar emv 打...
linux 工作中常用的命令
定時啟動你的指令碼 在命令列輸入 crontab e 會出現編輯器 在裡面編輯你要啟動的指令碼命令,以python為列 5 10 usr bin python然後輸入你指令碼的絕對路徑 這將會在每天早上10點 5 分執行這個指令碼 以下是 crontab 檔案的格式 minute 區間為 0 59 ...