Linux下原始檔建立硬連結後壓縮原始檔的問題

dbasdk發表於2015-11-27
Linux下原始檔建立硬連結後,壓縮原始檔相當於新增了原始檔的壓縮版本

測試:
[root@CentOS6 壓縮解壓測試]# ln hive_test hive_test_hardlink
[root@CentOS6 壓縮解壓測試]# ll
總用量 124224
-rw-r--r--. 1 root root    20307 9月  17 2014 date1.log
-rw-r--r--. 1 root root    35113 9月  19 2014 date.log
-rw-r--r--. 1 root root     1693 9月  16 2014 date.zip
-rw-r--r--  1 root root 30195232 11月 27 10:48 hive-0.9.0.tar.gz
-rw-r--r--  2 root root 30195232 11月 27 10:50 hive_test
-rw-r--r--  2 root root 30195232 11月 27 10:50 hive_test_hardlink
-rw-r--r--  1 root root   510504 11月 27 10:48 linux-xrdp.rar
-rw-r--r--  1 root root 36005278 11月 27 10:48 mysql-5.6.14.tar.gz
drwxr-xr-x. 2 root root     4096 9月  16 2014 temp
-rw-r--r--. 1 root root      160 9月  16 2014 temp1.zip
-rw-r--r--. 1 root root     1841 9月  16 2014 temp2.zip
-rw-r--r--. 1 root root    20480 9月  16 2014 temp3.tar
-rw-r--r--. 1 root root     3877 9月  19 2014 temp4.tar.gz
[root@CentOS6 壓縮解壓測試]# du -sh
93M .
[root@CentOS6 壓縮解壓測試]# gzip -9f hive_test
[root@CentOS6 壓縮解壓測試]# ll
總用量 124016
-rw-r--r--. 1 root root    20307 9月  17 2014 date1.log
-rw-r--r--. 1 root root    35113 9月  19 2014 date.log
-rw-r--r--. 1 root root     1693 9月  16 2014 date.zip
-rw-r--r--  1 root root 30195232 11月 27 10:48 hive-0.9.0.tar.gz
-rw-r--r--  1 root root 29981818 11月 27 10:50 hive_test.gz
-rw-r--r--  1 root root 30195232 11月 27 10:50 hive_test_hardlink
-rw-r--r--  1 root root   510504 11月 27 10:48 linux-xrdp.rar
-rw-r--r--  1 root root 36005278 11月 27 10:48 mysql-5.6.14.tar.gz
drwxr-xr-x. 2 root root     4096 9月  16 2014 temp
-rw-r--r--. 1 root root      160 9月  16 2014 temp1.zip
-rw-r--r--. 1 root root     1841 9月  16 2014 temp2.zip
-rw-r--r--. 1 root root    20480 9月  16 2014 temp3.tar
-rw-r--r--. 1 root root     3877 9月  19 2014 temp4.tar.gz
[root@CentOS6 壓縮解壓測試]# du -sh
122M .
[root@CentOS6 壓縮解壓測試]# ll hive_test_hardlink
-rw-r--r-- 1 root root 30195232 11月 27 10:50 hive_test_hardlink
[root@CentOS6 壓縮解壓測試]# 

可以看到,壓縮後空間佔用反而新增了29M,硬連結檔案的inode也由2變為1了。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-1847767/,如需轉載,請註明出處,否則將追究法律責任。

相關文章