linux shell 擷取檔案md5的命令

來源:互聯網
上載者:User


擷取檔案的MD5值:

$ md5sum linuxmint-12-gnome-dvd-32bit.iso|cut -d ' ' -f1

得到的MD5值

ee3d6e2ca498bc7685b7f17cdb5f2eea

使用MD5校正iso檔案:

$ md5sum linuxmint-12-gnome-dvd-32bit.iso >linuxmint-12-gnome-dvd-32bit.md5

注意linuxmint-12-gnome-dvd-32bit.md5的內容是:

ef3d6e2ca498bc7685b7f17cdb5f2eea linuxmint-12-gnome-dvd-32bit.iso

把linuxmint-12-gnome-dvd-32bit和其驗證檔案
linuxmint-12-gnome-dvd-32bit.md5放到同一目錄下用下面的命令:
$ md5sum -c linuxmint-12-gnome-dvd-32bit.md5

如果校正正確則輸出:

linuxmint-12-gnome-dvd-32bit.iso: 確定

如果校正錯誤則輸出:

linuxmint-12-gnome-dvd-32bit.iso: 失敗
md5sum: 警告:1/1 產生的校正和不匹配
命令解釋:
md5 -c: 從檔案中讀取MD5 的校正值並予以檢查

Message Digest Algorithm MD5為電腦安全領域廣泛使用的一種散列函數,用以提供訊息的完整性保護。該演算法的檔案號為RFC 1321(R.Rivest,MIT Laboratory for Computer Science and RSA Data Security Inc. April 1992)
keywords:Hash,SHA,Ronald L. Rivest,MD5,IETF(Internet Engineering Task Force)

遍曆擷取目錄所有檔案的md5

DIR='/home/fukun'
find $DIR -type f -print0 | xargs -0 md5sum > ./md5.md5

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.