來源網(wǎng)站
*All knowledge are coming from this website.
最近開始學(xué)習(xí)cloud computing這門課贩挣,然后老師給的Reference里有這個網(wǎng)站豁辉,方便查閱阳柔,便總結(jié)這個焰枢。
常用Command
-
list
(list)-
list-a
: List things in long listing fashion -
ls-a
: List things including "hidden" files (就是以"."開頭的,都是Hidden的文件盔沫。)
-
lsblk
print block devices by their assigned name (but not RAM)md5sum
(Compute and Check MD5 Message Digest)dd
: Command “dd” stands for (Convert and Copy a file), Can be used to convert and copy a file and most of the times is used to copy an iso file (or any other file) to a USB device (or any other location), thus can be used to make a ‘Bootlable‘ USB Stick.uname
(unix name),check all machine info.history
stands for History (Event) Record, it prints the history of long list of executed commands in terminal.查看歷史所有運行的記錄医咨,sudo xxx/ sudo xxx/...
sudo
(super user do)mkdir
making directorytouch
:(Update the access and modification times of each FILE to the current time). touch command creates the file, only if it doesn’t exist. If the file already exists it will update the timestamp and not the contents of the file.(如果文件不存在枫匾,則創(chuàng)建文件架诞,否則update the timestamp)chmod
stands for (change file mode bits). chmod changes the file mode (permission) of each given file, folder, script, etc.. according to mode asked for.
Read (r)=4 Write(w)=2 Execute(x)=1
rwxr-x--x abc.sh
Here the root’s permission is rwx (read, write and execute).
usergroup to which it belongs, is r-x (read and execute only, no write permission) and for world is –x (only execute).
root@tecmint:~# chmod 777 abc.sh
(provide read, write and execute permission to owner, group, and world.)
root@tecmint:~# chmod 666 abc.sh
(only read and write permission to all three.)
root@tecmint:~# chmod 711 abc.sh
(read, write and execute to owner and only execute to group and world.)-
chown
: (change file owner and group). Every file belongs to a group of user and a owner. 在用ls-l
的時候可以看到它的file owner /group,然后你可以更改成你想要的woner干茉,或者group:
apt
: stands for (Advanced Package Tool). Apt is an advanced package manager for Debian based system (Ubuntu, Kubuntu, etc.)-
tar
壓縮谴忧,解壓縮,都是這個角虫。 可以參考:這個鏈接- 創(chuàng)建壓縮文件
tar -cvf tecmint-14-09-12.tar /home/tecmint/
- 創(chuàng)建tar.gz文件
# tar cvzf MyImages-14-09-12.tar.gz /home/MyImages
或者tar cvzf MyImages-14-09-12.tgz /home/MyImages
- 解壓
- 解壓到當(dāng)前文件:
# tar -xvf public_html-14-09-12.tar
- 解壓到指定文件:
# tar -xvf public_html-14-09-12.tar -C /home/public_html/videos/
- 解壓到當(dāng)前文件:
- 列出所有文件:
# tar -tvf uploadprogress.tar
- 解壓指定文件:
# tar -xvf cleanfiles.sh.tar cleanfiles.sh
或者tar --extract --file=cleanfiles.sh.tar cleanfiles.sh
- 創(chuàng)建壓縮文件
cal
“cal” (Calendar), it is used to displays calendar of the present month or any other month of any year that is advancing or passed. eg:cal 02 1935
就是打印1935年2月的calendar.date
打印日期沾谓,更改日期date --set='14 may 2013 13:57'
-
cat
合并文件 “cat” stands for (Concatenation). Concatenate (join) two or more plain file and/or print contents of a file on standard output.- 創(chuàng)建文件:
cat > file1
然后輸入你想要輸入的內(nèi)容,結(jié)束之后戳鹅,按下ctrl+D均驶,回到命令行,然后文件就創(chuàng)建成功了枫虏。 - 瀏覽文件妇穴,你同樣可以用
cat file1
- 合并文件,然后命名為新的文件
cat file1 file2 > newfile
- 創(chuàng)建文件:
cp
copy文件cp /home/user/Downloads abc.tar.gz /home/user/Desktop (Return 0 when sucess)
18.mv
移動文件 root@tecmint:~# mv /home/user/Downloads abc.tar.gz /home/user/Desktop (Return 0 when sucess)
* 重命名文件 mv name1 name2
就可以重命名成功爬虱。
pwd
“pwd” (print working directory), prints the current working directory with full path name from terminal.root@tecmint:~# pwd /home/user/Desktop
cd
,進入文件夾
常用Command補充
刪除文件
rm
,刪除文件夾rmdir
幫助文件:
man <command>
當(dāng)你想查看某個命令是怎么使用的腾它,你就打這個跑筝。clear
,清空當(dāng)前屏幕-
粘貼(其實這么久了我都不知道如何快捷鍵粘貼)瞒滴,真正的粘貼是曲梗,
Ctrl+Shift+V
,或者你可以使用shit+insert
妓忍,最笨的方法就是選擇edit虏两,paste。
補充二 輸入與輸出
- 輸入&輸出:
stdin
和stdout
- 添加文本: (not overwritten):
echo xxx(你要添加的內(nèi)容 >> (你的文件名)
- 郵件附件用
<
- 使用者三個情況看系統(tǒng)解釋:
*find . -name 'my*' 2> error.log
便可以存下這個error单默,然后名字就是error.log碘举,最后就用cat error.log
便可查看error的原因了。 -
復(fù)雜情況:
補充三 Linux之間的溝通
Ping:
Ping <ipaddress>/<www.xxx.com>
,ctrl + c 推出-
ftp:
ftp xx.xxx.xx.xx
,輸入人賬號密碼之后就可進行文件傳輸
- 進入ftp后搁廓,輸入
dir
引颈,然后輸入passive
然后就 激活了,就可以正常使用dir
命令境蜕。 - 上傳
put xxx
- 進入ftp后搁廓,輸入
Telnet: 和windows的遠程桌面相似蝙场。
-
SSH:securely connect to a remote computer,比telnet更加安全;
- 需要 證書和Key粱年,才能夠訪問(所以很安全)售滤,訪問方式是:
SSH username@ip-address or hostname
- 輸入
exit
就可以退出SSH的連接。
- 需要 證書和Key粱年,才能夠訪問(所以很安全)售滤,訪問方式是:
Linux Vi 編輯器
Terminal台诗,高效完箩,簡介,如果熟悉命令行操作拉队,簡直比GUI界面操作快上很多倍弊知;缺點,需要花時間熟悉命令行粱快。
常見的VI編輯器: Vim, elvis,nvi,nano,vile
其實直接Terminal都可以用vi <文件名>
去編輯文件
- 輸入模式(command mode): 'i',然后開始輸入東西秩彤,輸入
ESC
就退出輸入模式 - 創(chuàng)建文件/編輯文件:
vi <NewFileName>/ vi <existFileName>
文本編輯基本上是比較常用的,要很熟悉才行事哭。
Linux Vitural Terminal
多人訪問一個服務(wù)器的時候漫雷,或者說你需要遠程控制一臺機器,就會涉及到這方面的知識鳍咱。它的特點是你沒辦法使用鼠標(biāo) Ubuntu系統(tǒng)下降盹,
ctrl+alt+F1
,輸入virtual box 用戶名,密碼谤辜。然后你就可以Login了蓄坏。不同用戶可以登錄進去仅胞。
- 常用快捷鍵:
Ctrl+Alt+F(1~6)
用戶不同用戶的切換,輸入tty
你可以查看你到底是哪個登錄進去剑辫。