linux的tar命令是哪個英文單詞的縮寫

時間 2021-08-11 17:39:55

1樓:匿名使用者

tar命令tar [-cxtzjvfppn] 檔案與目錄 ….

引數:-c :建立乙個壓縮檔案的引數指令(create 的意思);

-x :解開乙個壓縮檔案的引數指令!

-t :檢視 tarfile 裡面的檔案!

特別注意,在引數的下達中, c/x/t 僅能存在乙個!不可同時存在!

因為不可能同時壓縮與解壓縮。

-z :是否同時具有 gzip 的屬性?亦即是否需要用 gzip 壓縮?

-j :是否同時具有 bzip2 的屬性?亦即是否需要用 bzip2 壓縮?

-v :壓縮的過程中顯示檔案!這個常用,但不建議用在背景執行過程!

-f :使用檔名,請留意,在 f 之後要立即接檔名喔!不要再加引數!

例如使用『 tar -zcvfp tfile sfile』就是錯誤的寫法,要寫成

『 tar -zcvpf tfile sfile』才對喔!

-p :使用原檔案的原來屬性(屬性不會依據使用者而變)

-p :可以使用絕對路徑來壓縮!

-n :比後面接的日期(yyyy/mm/dd)還要新的才會被打包進新建的檔案中!

–exclude file:在壓縮的過程中,不要將 file 打包!

2樓:匿名使用者

tar命令最初的設計目的是將檔案備份到磁帶上(tape archive),因而得名tar

linux中常用的命令都是那些單詞的縮寫?

3樓:匿名使用者

檔案管理:

ls -- list

cd -- change directory

pwd -- print working directory

cp -- copy

mv -- move

rm -- remove

pushd -- push to directory

popd -- pop from directory(這倆個是很有用的命令,在編譯lfs的時候學到的)

mkdir -- make directory

rmdir -- remove directory

cat -- catenate(有說是concatenate,這兩個

詞是乙個意思吧)

sed -- stream editor

diff -- difference

wc -- word count(不是那個wc啊)

chmod -- change mode

chown -- change owner

chgrp -- change group

awk -- aho weinberger and kernighan(自戀,服氣)( @xx ***x 謝謝指錯)

gawk -- gnu aho weinberger and kernighan

grep -- general regular expression print( @閆子昂 謝謝)

ln -- link

tar -- tarball

硬體管理:

df -- disk free

du -- disk usage

dd -- data description(一說是convert and copy, 但是cc被用掉了,就用dd了)

parted -- partition editor

lspci -- list peripheral component interconnect

lscpu -- list central process unit

lsusb -- list universal serial bus

系統管理:

depmod -- depend module

lsmod -- list module

modprobe -- module probe

modinfo -- module information

insmod -- insert module

rmmod -- remove module

ps -- processes status

su -- substitute user

bash -- bourne again shell

init -- initialization(差點把這個忘了)

ssh -- secure shell

wine -- wine is not an emulator(哈哈,又來了)

exec -- execute

fstab -- filesystem table

passwd -- password

tty -- teletype

sudo -- superuser do

grub -- grand unified bootloader(linux全家桶啟動就靠它了)

tzselect -- time zone select

sync -- synchronize(確認關機前多執行幾次。有次我在tty1用vim改nginx配置檔案,朋友在tty2給我直接關機了(用halt關的,這個豬腦子,我說過好多次用shutdown了),導致開機的時候nginx啟動不起來,關機前配置檔案我改了很多,但是vim沒有備份那麼多,還要重改www)

裝了systemd -- system daemon 的話,會有systemctl bootctl journalctl loginctl localectl timedatectl 等等,都是blablabla control

上面給出了大部分命令的**,歡飲各路好漢補充,在此建議linux小白通過《linux就該這麼學》這本書來學習各種命令的用法和使用

linux命令chmod是什麼英文單詞的縮寫

4樓:5了解你

linux命令chmod

5樓:匿名使用者

change mode

chmod, this command is used to change file mode bits.

didn't u ever the man page?

linux命令中tar後跟的zxvf是什麼意思?

6樓:小丸子

分別是四來個引數:

x:從 tar 包中源把檔案提取出來baiz:表示 tar 包是被 gzip 壓縮過的du,所以解壓時需zhi要用 gunzip 解壓

v:顯示詳細dao資訊

f***.tar.gz:

指定被處理的檔案是 ***.tar.gz這些都是tar的引數。.

tar.gz是乙個壓縮包,.tar只是打包而沒有壓縮,注意這點。

1. z:通過gzip支援壓縮或解壓縮。還有其他的壓縮或解壓縮方式,比如j表示bzip2的方式。

2. x:解壓縮。c是壓縮。

3. v:在壓縮或解壓縮過程中顯示正在處理的檔名。

4. f:f後面必須跟上要處理的檔名。也就是說你不能寫成這樣tar-zxfv zhcon-0.2.5.tar.gz。

Linux中用tar命令打包如何排除所有副檔名為wdb的檔案

find basic type d name wdb 這個命令將找到basic目錄下的副檔名不是wdb的檔案。表示否定,type d不是目錄,name wdb,名字與 wdb不匹配的。所以命令可以這樣寫 for i in find basic type d name wdb do arg arg i...

linux裡向tar包追加和取出檔案的命令是什麼

趣園藝 linux系統下操作tar壓縮包,需要用tar命令,追加引數用 r 選項,取出引數用 x 選項,案例如下 如果有乙個包 zhidao.tar.bz2 需要把baidu.txt追加進去,就用命令 從tar包zhidao.tar.bz2中取出file2.txt則用 tar xvf zhidao....

linux中是什麼意思,linux命令中的「 」和「 」是什麼意思?

1.格式 command1 command2 2.含義 如果 左邊的command1執行失敗 返回1表示失敗 就執行 右邊的command2。3.例項 1 列印1111.txt的第一列內容,若執行不成功則執行顯示facebook.txt的內容 2 當列印1111.txt的第一列內容命令被成功執行,則...