{"id":326,"date":"2010-07-01T05:33:43","date_gmt":"2010-07-01T11:33:43","guid":{"rendered":"http:\/\/blog.supportpro.com\/?p=326"},"modified":"2020-03-30T01:54:04","modified_gmt":"2020-03-30T07:54:04","slug":"how-to-find-deleted-files-using-ext3grep","status":"publish","type":"post","link":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/","title":{"rendered":"How to find deleted files using EXT3GREP"},"content":{"rendered":"<p>1. Installing ext3grep<br \/>\nwget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz<br \/>\ntar -xvzf ext3grep-0.7.0.tar.gz<br \/>\ncd ext3grep<br \/>\n.\/configure<br \/>\nmake<\/p>\n<p><!--more--><\/p>\n<p>cd src<br \/>\n.\/ext3grep &#8211;help<br \/>\nDone, ext3grep is built and working<\/p>\n<p>3.Lets search for deleted folder:<br \/>\nEg: .\/ext3grep \/dev\/hda1 &#8211;search uaconsoleclientsample<br \/>\nExt3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder.<br \/>\n4.Find exact block assosicated with our deleted folder by checking each block<br \/>\nEg: .\/ext3grep \/dev\/hda1 &#8211;ls &#8211;block 240017<br \/>\nUse this script to automate this checking process.<br \/>\n#!\/bin\/sh<\/p>\n<p>blocks=255079 336393 336518 336526 395434 395435 395457 737282 984250 1346129 1868670 1869273 1950436 3915933 3915935 4069411 4087953 4216611 4292193 4292196 4292275 4530219 4538370 4538371 4538372 4538376 4538378 4538382 4538385 4543743 4543750 4543752 4544514 4544517 4544528 4544539 4550683 4550707 4655509 4655533 4670417 4670423 4689385 4689746 4785120 5046823 6525842 7370457 7805912<\/p>\n<p># Replace above blocks with blocks found in step 3<\/p>\n<p>for block in $blocks; do<\/p>\n<p>.\/ext3grep \/dev\/hda1 ls block $block | tee -a output.txt<\/p>\n<p>done<br \/>\nThis script does the same procedure for each block in the list, shows the output on console and writes it to the file output.txt using tee. This way you can recheck the result later also in vim.<\/p>\n<p>Analyze the output.txt and find entries like<br \/>\n&#8220;Block 1869273 is a directory. The block is Allocated&#8221; and find all inode associated with this block<br \/>\n5.Check content of the block with inode from previous step<br \/>\nEg: .\/ext3grep \/dev\/hda1 &#8211;ls &#8211;inode 656495<br \/>\n6.Now just restore the files you want using the right inode.<br \/>\nEg: .\/ext3grep \/dev\/hda1 &#8211;restore-inode 2263308<\/p>\n<p>If you require help, <a href=\"https:\/\/www.supportpro.com\/requestquote.php\">contact SupportPRO Server Admin<\/a><\/p>\n<p style=\"text-align: center;\"><!--HubSpot Call-to-Action Code --><span id=\"hs-cta-wrapper-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-wrapper\"><span id=\"hs-cta-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-node hs-cta-9d590242-d641-4383-94b4-8cfd62f0af6b\"><!-- [if lte IE 8]><\/p>\n\n\n\n\n\n<div id=\"hs-cta-ie-element\"><\/div>\n\n\n<![endif]--><a href=\"https:\/\/cta-redirect.hubspot.com\/cta\/redirect\/2725694\/9d590242-d641-4383-94b4-8cfd62f0af6b\"><img decoding=\"async\" id=\"hs-cta-img-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-img\" style=\"border-width: 0px;\" src=\"https:\/\/no-cache.hubspot.com\/cta\/default\/2725694\/9d590242-d641-4383-94b4-8cfd62f0af6b.png\" alt=\"Server not running properly? Get A FREE Server Checkup By Expert Server Admins - $125 Value\" \/><\/a><\/span><script charset=\"utf-8\" src=\"https:\/\/js.hscta.net\/cta\/current.js\"><\/script><script type=\"text\/javascript\"> hbspt.cta.load(2725694, '9d590242-d641-4383-94b4-8cfd62f0af6b', {}); <\/script><\/span><!-- end HubSpot Call-to-Action Code --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[3],"tags":[],"class_list":["post-326","post","type-post","status-publish","format-standard","hentry","category-technical-articles"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make cd src .\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\/ext3grep \/dev\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"SupportPRO Admin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Server Management Tips | SupportPRO Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to find deleted files using EXT3GREP | Server Management Tips\" \/>\n\t\t<meta property=\"og:description\" content=\"1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make cd src .\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\/ext3grep \/dev\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-07-01T11:33:43+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-03-30T07:54:04+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to find deleted files using EXT3GREP | Server Management Tips\" \/>\n\t\t<meta name=\"twitter:description\" content=\"1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make cd src .\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\/ext3grep \/dev\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#article\",\"name\":\"How to find deleted files using EXT3GREP | Server Management Tips\",\"headline\":\"How to find deleted files using EXT3GREP\",\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/no-cache.hubspot.com\\\/cta\\\/default\\\/2725694\\\/9d590242-d641-4383-94b4-8cfd62f0af6b.png\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#articleImage\"},\"datePublished\":\"2010-07-01T05:33:43-06:00\",\"dateModified\":\"2020-03-30T01:54:04-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#webpage\"},\"articleSection\":\"Technical Articles\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/technical-articles\\\/#listItem\",\"name\":\"Technical Articles\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/technical-articles\\\/#listItem\",\"position\":2,\"name\":\"Technical Articles\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/technical-articles\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#listItem\",\"name\":\"How to find deleted files using EXT3GREP\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#listItem\",\"position\":3,\"name\":\"How to find deleted files using EXT3GREP\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/technical-articles\\\/#listItem\",\"name\":\"Technical Articles\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\",\"name\":\"SupportPRO\",\"description\":\"SupportPRO Blog\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"telephone\":\"+18476076123\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/\",\"name\":\"SupportPRO Admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/13d2f63048d631e03a432375448be5eb7861069df4fef10f0cb1c7b36554c225?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"SupportPRO Admin\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#webpage\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/\",\"name\":\"How to find deleted files using EXT3GREP | Server Management Tips\",\"description\":\"1. Installing ext3grep wget http:\\\/\\\/ext3grep.googlecode.com\\\/files\\\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\\\/configure make cd src .\\\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\\\/ext3grep \\\/dev\\\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/how-to-find-deleted-files-using-ext3grep\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"datePublished\":\"2010-07-01T05:33:43-06:00\",\"dateModified\":\"2020-03-30T01:54:04-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"name\":\"Server Management Tips\",\"description\":\"SupportPRO Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to find deleted files using EXT3GREP | Server Management Tips<\/title>\n\n","aioseo_head_json":{"title":"How to find deleted files using EXT3GREP | Server Management Tips","description":"1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make cd src .\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\/ext3grep \/dev\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find","canonical_url":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#article","name":"How to find deleted files using EXT3GREP | Server Management Tips","headline":"How to find deleted files using EXT3GREP","author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/no-cache.hubspot.com\/cta\/default\/2725694\/9d590242-d641-4383-94b4-8cfd62f0af6b.png","@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#articleImage"},"datePublished":"2010-07-01T05:33:43-06:00","dateModified":"2020-03-30T01:54:04-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#webpage"},"isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#webpage"},"articleSection":"Technical Articles"},{"@type":"BreadcrumbList","@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.supportpro.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/technical-articles\/#listItem","name":"Technical Articles"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/technical-articles\/#listItem","position":2,"name":"Technical Articles","item":"https:\/\/www.supportpro.com\/blog\/category\/technical-articles\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#listItem","name":"How to find deleted files using EXT3GREP"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#listItem","position":3,"name":"How to find deleted files using EXT3GREP","previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/technical-articles\/#listItem","name":"Technical Articles"}}]},{"@type":"Organization","@id":"https:\/\/www.supportpro.com\/blog\/#organization","name":"SupportPRO","description":"SupportPRO Blog","url":"https:\/\/www.supportpro.com\/blog\/","telephone":"+18476076123"},{"@type":"Person","@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author","url":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/","name":"SupportPRO Admin","image":{"@type":"ImageObject","@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/13d2f63048d631e03a432375448be5eb7861069df4fef10f0cb1c7b36554c225?s=96&d=mm&r=g","width":96,"height":96,"caption":"SupportPRO Admin"}},{"@type":"WebPage","@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#webpage","url":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/","name":"How to find deleted files using EXT3GREP | Server Management Tips","description":"1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make cd src .\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\/ext3grep \/dev\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/#breadcrumblist"},"author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"creator":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"datePublished":"2010-07-01T05:33:43-06:00","dateModified":"2020-03-30T01:54:04-06:00"},{"@type":"WebSite","@id":"https:\/\/www.supportpro.com\/blog\/#website","url":"https:\/\/www.supportpro.com\/blog\/","name":"Server Management Tips","description":"SupportPRO Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Server Management Tips | SupportPRO Blog","og:type":"article","og:title":"How to find deleted files using EXT3GREP | Server Management Tips","og:description":"1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make cd src .\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\/ext3grep \/dev\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find","og:url":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/","article:published_time":"2010-07-01T11:33:43+00:00","article:modified_time":"2020-03-30T07:54:04+00:00","twitter:card":"summary","twitter:title":"How to find deleted files using EXT3GREP | Server Management Tips","twitter:description":"1. Installing ext3grep wget http:\/\/ext3grep.googlecode.com\/files\/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep .\/configure make cd src .\/ext3grep --help Done, ext3grep is built and working 3.Lets search for deleted folder: Eg: .\/ext3grep \/dev\/hda1 --search uaconsoleclientsample Ext3grep will find many deleted blocks, now we need to check each blocks to find exact block associated with our deleted folder. 4.Find"},"aioseo_meta_data":{"post_id":"326","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-06-17 11:16:30","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":null,"ai":null,"created":"2021-12-10 15:54:56","updated":"2026-06-30 22:57:07"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\/category\/technical-articles\/\" title=\"Technical Articles\">Technical Articles<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to find deleted files using EXT3GREP\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.supportpro.com\/blog"},{"label":"Technical Articles","link":"https:\/\/www.supportpro.com\/blog\/category\/technical-articles\/"},{"label":"How to find deleted files using EXT3GREP","link":"https:\/\/www.supportpro.com\/blog\/how-to-find-deleted-files-using-ext3grep\/"}],"_links":{"self":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/326","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/comments?post=326"}],"version-history":[{"count":4,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/326\/revisions"}],"predecessor-version":[{"id":4586,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/326\/revisions\/4586"}],"wp:attachment":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/media?parent=326"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/categories?post=326"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/tags?post=326"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}