{"id":691,"date":"2012-10-09T08:04:39","date_gmt":"2012-10-09T08:04:39","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=691"},"modified":"2022-12-08T04:39:34","modified_gmt":"2022-12-08T10:39:34","slug":"how-to-check-data-integrity-using-md5sum-under-gnulinux","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/","title":{"rendered":"How to check data integrity using md5sum under GNU\/Linux"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft wp-image-692\" title=\"data-integrity\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity-300x295.jpg\" alt=\"Data Integrity Preview\" width=\"240\" height=\"236\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity-300x295.jpg 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity-304x300.jpg 304w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity.jpg 440w\" sizes=\"(max-width: 240px) 100vw, 240px\" \/>In this article, we will describe how you can check the integrity of your data using the <strong>md5sum<\/strong> utility under the GNU\/Linux operating system.<\/p>\n<p><strong>What is\u00a0md5sum?<\/strong><\/p>\n<p><strong>md5sum<\/strong> is a tool generally used to check data integrity. It calculates and verifies <strong>128-bit MD5 hashes<\/strong>, so you could know if a particular file is a valid one or a corrupt one.<\/p>\n<p><!--more--><\/p>\n<p>For example, let&#8217;s create a backup of the whole <em>&#8216;\/etc&#8217;<\/em>\u00a0directory tarred in a <em>&#8216;tar.gz&#8217;<\/em> file containing all the configuration data of the <a title=\"Linux Virtual Server\" href=\"https:\/\/www.rosehosting.com\/vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">vps<\/a> we&#8217;re using in this example:<\/p>\n<pre class=\"brush: shell; gutter: false\"># mkdir \/tmp\/example &amp;&amp; cd \/tmp\/example<\/pre>\n<pre class=\"brush: shell; gutter: false\"># tar -cpzf etc-backup.tar.gz \/etc\/<\/pre>\n<p>Then use the <strong>md5sum\u00a0<\/strong>tool to calculate the hash value of the <span style=\"text-decoration: underline;\">&#8216;etc-backup.tar.gz&#8217;<\/span>\u00a0archive:<\/p>\n<pre class=\"brush: shell; gutter: false\"># md5sum etc-backup.tar.gz\r\n6e0bde8e7a325322417e9782ed8e73f4  etc-backup.tar.gz<\/pre>\n<p>Ok, now the <strong>hexadecimal value is the MD5 hash<\/strong> for our data. How can we use this hash value to check if the integrity of the\u00a0<span style=\"text-decoration: underline;\">&#8216;etc-backup.tar.gz&#8217;<\/span>\u00a0archive is valid and the archive is not modified? It&#8217;s quite easy and trivial, so once you&#8217;ve downloaded the backup archive:<\/p>\n<pre class=\"brush: shell; gutter: false\"># mkdir \/tmp\/downloads &amp;&amp; cd \/tmp\/downloads\r\n# wget http:\/\/example.com\/path\/to\/etc-backup.tar.gz<\/pre>\n<p>you can use the <strong>md5sum<\/strong> tool to get the MD5 hash of the archive you&#8217;ve just downloaded.<\/p>\n<pre class=\"brush: shell; gutter: false\"># md5sum etc-backup.tar.gz\r\n6e0bde8e7a325322417e9782ed8e73f4  etc-backup.tar.gz<\/pre>\n<p>As you are already noticing, <strong>the MD5 hash values are identical<\/strong> which means the file we downloaded is the one we need, is valid and healthy.<\/p>\n<p>But what if in the meantime, someone \/ something modified the archive, for example let&#8217;s clear the backed <span style=\"text-decoration: underline;\">&#8216;\/etc\/passwd&#8217;<\/span> file and re-create the\u00a0<span style=\"text-decoration: underline;\">&#8216;etc-backup.tar.gz&#8217;<\/span>:<\/p>\n<p>&#8211; extract the archive by executing:<\/p>\n<pre class=\"brush: shell; gutter: false\"># tar zxvf etc-backup.tar.gz<\/pre>\n<p>&#8211; clear the\u00a0<span style=\"text-decoration: underline;\">&#8216;\/etc\/passwd&#8217;<\/span> extracted from the archive:<\/p>\n<pre class=\"brush: shell; gutter: false\"># &gt; etc\/passwd<\/pre>\n<p>&#8211; create the &#8216;etc-backup.tar.gz&#8217;:<\/p>\n<pre class=\"brush: shell; gutter: false\"># tar -cpzf etc-backup.tar.gz etc\/<\/pre>\n<p>&#8211; check file&#8217;s integrity:<\/p>\n<pre class=\"brush: shell; gutter: false\"># md5sum etc-backup.tar.gz\r\n25e34baa193512242bdee7158cfa2205  etc-backup.tar.gz<\/pre>\n<p>As you can see the <strong>MD5 hashes are different\u00a0<\/strong><br \/>\n<em>(6e0bde8e7a325322417e9782ed8e73f4 !=\u00a025e34baa193512242bdee7158cfa2205)<\/em> for the same exact file. So, this way you can know if your backup archive is valid and healthy.<\/p>\n<p>And what if you&#8217;ve downloaded debian-net installer iso image for example and want to check it against the provided MD5 hashes? You can use the &#8216;-c&#8217; switch which will read the hashes from the file(s) specified and will check them against the iso images.<\/p>\n<p>So, to check it run:<\/p>\n<pre class=\"brush: shell; gutter: false\"># md5sum -c MD5SUMS 2&gt;\/dev\/null | grep net<\/pre>\n<p>and you should get:<\/p>\n<pre class=\"brush: shell; gutter: false\">debian-6.0.5-amd64-netinst.iso: OK<\/pre>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will describe how you can check the integrity of your data using the md5sum utility under &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to check data integrity using md5sum under GNU\/Linux\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#more-691\" aria-label=\"Read more about How to check data integrity using md5sum under GNU\/Linux\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":692,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1703,21],"tags":[116,114,113,27,112,111,1152,115,117,18],"class_list":["post-691","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-security","category-tips-and-tricks","tag-archive","tag-gnulinux","tag-hash","tag-linux","tag-md5","tag-md5sum","tag-rosehosting","tag-tar","tag-tar-gz","tag-vps","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to check data integrity using md5sum under GNU\/Linux | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to check data integrity using md5sum under GNU\/Linux | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to check data integrity using md5sum under GNU\/Linux\" \/>\n<meta property=\"og:description\" content=\"How to check data integrity using md5sum under GNU\/Linux | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2012-10-09T08:04:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-08T10:39:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"440\" \/>\n\t<meta property=\"og:image:height\" content=\"434\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to check data integrity using md5sum under GNU\\\/Linux\",\"datePublished\":\"2012-10-09T08:04:39+00:00\",\"dateModified\":\"2022-12-08T10:39:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/\"},\"wordCount\":398,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/06\\\/data-integrity.jpg\",\"keywords\":[\"archive\",\"gnu\\\/linux\",\"hash\",\"Linux\",\"md5\",\"md5sum\",\"rosehosting\",\"tar\",\"tar.gz\",\"vps\"],\"articleSection\":[\"Security\",\"Tips and Tricks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/\",\"name\":\"How to check data integrity using md5sum under GNU\\\/Linux | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/06\\\/data-integrity.jpg\",\"datePublished\":\"2012-10-09T08:04:39+00:00\",\"dateModified\":\"2022-12-08T10:39:34+00:00\",\"description\":\"How to check data integrity using md5sum under GNU\\\/Linux | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/06\\\/data-integrity.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/06\\\/data-integrity.jpg\",\"width\":\"440\",\"height\":\"434\",\"caption\":\"Data Integrity Preview\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-check-data-integrity-using-md5sum-under-gnulinux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to check data integrity using md5sum under GNU\\\/Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to check data integrity using md5sum under GNU\/Linux | RoseHosting","description":"How to check data integrity using md5sum under GNU\/Linux | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/","og_locale":"en_US","og_type":"article","og_title":"How to check data integrity using md5sum under GNU\/Linux","og_description":"How to check data integrity using md5sum under GNU\/Linux | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2012-10-09T08:04:39+00:00","article_modified_time":"2022-12-08T10:39:34+00:00","og_image":[{"width":440,"height":434,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to check data integrity using md5sum under GNU\/Linux","datePublished":"2012-10-09T08:04:39+00:00","dateModified":"2022-12-08T10:39:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/"},"wordCount":398,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity.jpg","keywords":["archive","gnu\/linux","hash","Linux","md5","md5sum","rosehosting","tar","tar.gz","vps"],"articleSection":["Security","Tips and Tricks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/","name":"How to check data integrity using md5sum under GNU\/Linux | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity.jpg","datePublished":"2012-10-09T08:04:39+00:00","dateModified":"2022-12-08T10:39:34+00:00","description":"How to check data integrity using md5sum under GNU\/Linux | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/06\/data-integrity.jpg","width":"440","height":"434","caption":"Data Integrity Preview"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-check-data-integrity-using-md5sum-under-gnulinux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to check data integrity using md5sum under GNU\/Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/691","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=691"}],"version-history":[{"count":2,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/691\/revisions"}],"predecessor-version":[{"id":43798,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/691\/revisions\/43798"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/692"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=691"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=691"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=691"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}