{"id":5531,"date":"2015-04-27T18:29:47","date_gmt":"2015-04-27T08:29:47","guid":{"rendered":"http:\/\/nsrd.info\/blog\/?p=5531"},"modified":"2018-12-11T12:58:59","modified_gmt":"2018-12-11T02:58:59","slug":"basics-taking-a-turn-about-the-filesystem","status":"publish","type":"post","link":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/","title":{"rendered":"Basics &#8211; Taking a turn about the filesystem"},"content":{"rendered":"<blockquote><p>&#8220;Miss Eliza Bennet, let me persuade you to follow my example, and take a turn about the room. &#8212; I assure you it is very refreshing after sitting so long in one attitude.&#8221;<\/p>\n<p>Jane Austin: Pride and Prejudice.<\/p><\/blockquote>\n<p>The NetWorker&nbsp;<em>savegrp<\/em> command has a lot of different command line options, but one which falls into that useful-for-debugging category for me has always been the <i>-n<\/i> option. This allows you to invoke the save commands for a group (or a&nbsp;single client in the group) in&nbsp;<em>walk\/don&#8217;t do<\/em> mode.<\/p>\n<p>While filesystems have become considerably more capable at self-repair and resilient towards minor corruption, there was a time in the past where you could encounter&nbsp;an operating system crash as a result of attempting to access a particularly corrupt file or part of the filesystem. Backups, of&nbsp;course, want to walk all the filesystems (unless you direct them otherwise), and so being able to see&nbsp;<em>what<\/em> NetWorker might do during a backup was helpful to diagnose such issues. (Even if it meant one more crash.)<\/p>\n<p>These days, if&nbsp;a host being backed up by&nbsp;NetWorker via a filesystem agent gets a&nbsp;<em>lot<\/em> of changes during a day, you might simply be interested in seeing just how many files are going to be backed up.<\/p>\n<p>The command is pretty straight forward:<\/p>\n<pre># <strong>savegrp -nv <em>[-c client]<\/em> groupName<\/strong><\/pre>\n<p>For instance, consider the following execution:<\/p>\n<pre>[root@orilla ~]# <strong>savegrp -nv -c mondas Servers<\/strong>\n90528:savegrp: mondas:All level=incr\n7236:savegrp: Group will not limit job parallelism\n83643:savegrp: mondas:All started\nsavefs -s orilla -c mondas -g Servers -p -n -l full -R -v\nmondas:\/ level=incr, vers=pools, p=4\nmondas:\/d\/01 level=incr, vers=pools, p=4\nmondas:\/boot level=incr, vers=pools, p=4\nmondas:\/d\/backup level=incr, vers=pools, p=4\n90491:savegrp: mondas:All succeeded.\n83647:savegrp: Servers mondas:All See the file \/nsr\/logs\/sg\/Servers\/832077 for command output\n83643:savegrp: mondas:\/ started\nsave -s orilla -g Servers -n -LL -f - -m mondas -t 1430050510 -o MODIFIED_ASOF_TIME:timeval=1430050506;RENAMED_DIRECTORIES:index_lookup=on;BACKUPTIME:lookup_range=1429877707:1430050510; -l incr -W 78 -N \/ \/\n83643:savegrp: mondas:\/d\/01 started\nsave -s orilla -g Servers -n -LL -f - -m mondas -t 1430050508 -o MODIFIED_ASOF_TIME:timeval=1430050506;RENAMED_DIRECTORIES:index_lookup=on;BACKUPTIME:lookup_range=1429877710:1430050508; -l incr -W 78 -N \/d\/01 \/d\/01\n83643:savegrp: mondas:\/boot started\nsave -s orilla -g Servers -n -LL -f - -m mondas -t 1430050507 -o MODIFIED_ASOF_TIME:timeval=1430050506;RENAMED_DIRECTORIES:index_lookup=on;BACKUPTIME:lookup_range=1429877709:1430050507; -l incr -W 78 -N \/boot \/boot\n83643:savegrp: mondas:\/d\/backup started\nsave -s orilla -g Servers -n -LL -f - -m mondas -t 1430050509 -o MODIFIED_ASOF_TIME:timeval=1430050506;RENAMED_DIRECTORIES:index_lookup=on;BACKUPTIME:lookup_range=1429877708:1430050509; -l incr -W 78 -N \/d\/backup \/d\/backup\n77562:savegrp: job (832078) host: mondas savepoint: \/ had WARNING indication(s) at completion\n90491:savegrp: mondas:\/ succeeded.\n<span style=\"text-decoration: underline;\">83647:savegrp: Servers mondas:\/ See the file \/nsr\/logs\/sg\/Servers\/832078 for command output\n<\/span>90491:savegrp: mondas:\/boot succeeded.\n83647:savegrp: Servers mondas:\/boot See the file \/nsr\/logs\/sg\/Servers\/832080 for command output\n90491:savegrp: mondas:\/d\/01 succeeded.\n83647:savegrp: Servers mondas:\/d\/01 See the file \/nsr\/logs\/sg\/Servers\/832079 for command output\n90491:savegrp: mondas:\/d\/backup succeeded.\n83647:savegrp: Servers mondas:\/d\/backup See the file \/nsr\/logs\/sg\/Servers\/832081 for command output\n83643:savegrp: mondas:index started\nsave -s orilla -S -g Servers -n -LL -f - -m orilla -V -t 1429878349 -l 9 -W 78 -N index:147f6a46-00000004-5457fce2-5457fce1-0016b3a0-02efe8cc \/nsr\/index\/mondas\n128137:savegrp: Group Servers waiting for 1 jobs (0 awaiting restart) to complete.<\/pre>\n<pre>90491:savegrp: mondas:index succeeded.\n83647:savegrp: Servers mondas:index See the file \/nsr\/logs\/sg\/Servers\/832082 for command output\n* mondas:All savefs mondas: succeeded.\n* mondas:\/ suppressed 2038 bytes of output.<\/pre>\n<pre>...snip...<\/pre>\n<p>You&#8217;ll see there the output reaches a point where NetWorker tells you <em>&#8220;suppressed X bytes of output&#8221;<\/em>. That&#8217;s a protection mechanism for NetWorker to prevent savegroup completion notifications growing to massive sizes.&nbsp;However, because we&#8217;ve used the verbose option, the output&nbsp;<em>is<\/em> captured \u2013 it&#8217;s just directed to the appropriate log file for the group. In this case, the output (underlined above) tells me I can check out the file \/nsr\/logs\/sg\/Servers\/832078 to see the details of the root filesystem backup for the client&nbsp;<em>mondas<\/em>.<\/p>\n<p>Checking that file, I can see what files would have been backed up:<\/p>\n<pre>[root@orilla Servers]# <strong>more \/nsr\/logs\/sg\/Servers\/832078<\/strong>\n96311:save: Ignoring Parallel savestreams per saveset setting due to incompatibl\ne -n\/-E option(s)\n75146:save: Saving files modified since Sun Apr 26 22:15:06 2015\n\/var\/log\/rpmpkgs\n\/var\/log\/secure\n\/var\/log\/audit\/audit.log\n\/var\/log\/audit\/\n\/var\/log\/lastlog\n\/var\/log\/cron\n\/var\/log\/wtmp\n\/var\/log\/maillog\n\/var\/log\/\n\/var\/run\/utmp\n\/var\/run\/\n\/var\/lock\/subsys\/\n\/var\/lock\/\n\/var\/spool\/clientmqueue\/qft3QI22Tg020700\n\/var\/spool\/clientmqueue\/dft3QI22Tg020700\n\/var\/spool\/clientmqueue\/\n\/var\/spool\/cups\/tmp\/\n\/var\/spool\/cups\/\n\/var\/spool\/anacron\/cron.daily\n\/var\/spool\/anacron\/\n\/var\/spool\/<\/pre>\n<pre>...snip...<\/pre>\n<p>This command only works for filesystem backups&nbsp;performed by the core NetWorker agent.&nbsp;It&#8217;s not compatible for instance, with a database module or VBA \u2013 but regardless, it is the sort of debugging\/analysis tool you&nbsp;<em>should<\/em> be aware of.&nbsp;(Forewarned is forearmed, and forearmed is a lot of arms&#8230; Ahem.)<\/p>\n<p>Check out&nbsp;<em>savegrp -n<\/em> on a client\/group when you have time to familiarise yourself with how it works. It&#8217;s&nbsp;reasonably straightforward and is a good addition to your NetWorker utility belt.<\/p>\n<p><a href=\"https:\/\/nsrd.info\/blog\/wp-content\/uploads\/2015\/04\/file-walk.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-5536\" src=\"https:\/\/nsrd.info\/blog\/wp-content\/uploads\/2015\/04\/file-walk.jpg\" alt=\"file walk\" width=\"172\" height=\"600\" srcset=\"https:\/\/nsrd.info\/blog\/wp-content\/uploads\/2015\/04\/file-walk.jpg 172w, https:\/\/nsrd.info\/blog\/wp-content\/uploads\/2015\/04\/file-walk-86x300.jpg 86w\" sizes=\"auto, (max-width: 172px) 100vw, 172px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;Miss Eliza Bennet, let me persuade you to follow my example, and take a turn about the room. &#8212; I&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[6,16],"tags":[1243,292,1223],"class_list":["post-5531","post","type-post","status-publish","format-standard","hentry","category-basics","category-networker","tag-basics","tag-debug","tag-savegrp"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Using save logs in NetWorker to understand the order in which files are processed.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Preston de Guise\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Data Protection Hub | All things Data Protection\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Basics \u2013 Taking a turn about the filesystem | Data Protection Hub\" \/>\n\t\t<meta property=\"og:description\" content=\"Using save logs in NetWorker to understand the order in which files are processed.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-04-27T08:29:47+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2018-12-11T02:58:59+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Basics \u2013 Taking a turn about the filesystem | Data Protection Hub\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Using save logs in NetWorker to understand the order in which files are processed.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#article\",\"name\":\"Basics \\u2013 Taking a turn about the filesystem | Data Protection Hub\",\"headline\":\"Basics &#8211; Taking a turn about the filesystem\",\"author\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/author\\\/nsrd\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/file-walk.jpg\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#articleImage\",\"width\":172,\"height\":600,\"caption\":\"file walk\"},\"datePublished\":\"2015-04-27T18:29:47+10:00\",\"dateModified\":\"2018-12-11T12:58:59+10:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#webpage\"},\"articleSection\":\"Basics, NetWorker, Basics, debug, savegrp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nsrd.info\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/category\\\/basics\\\/#listItem\",\"name\":\"Basics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/category\\\/basics\\\/#listItem\",\"position\":2,\"name\":\"Basics\",\"item\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/category\\\/basics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#listItem\",\"name\":\"Basics &#8211; Taking a turn about the filesystem\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#listItem\",\"position\":3,\"name\":\"Basics &#8211; Taking a turn about the filesystem\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/category\\\/basics\\\/#listItem\",\"name\":\"Basics\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/#person\",\"name\":\"Preston de Guise\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d274b0939f505e2f4b85a111bdf61ff0fafc11f17dcd667d16a47d0a3de63a1d?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Preston de Guise\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/author\\\/nsrd\\\/#author\",\"url\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/author\\\/nsrd\\\/\",\"name\":\"Preston de Guise\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d274b0939f505e2f4b85a111bdf61ff0fafc11f17dcd667d16a47d0a3de63a1d?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Preston de Guise\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#webpage\",\"url\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/\",\"name\":\"Basics \\u2013 Taking a turn about the filesystem | Data Protection Hub\",\"description\":\"Using save logs in NetWorker to understand the order in which files are processed.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/2015\\\/04\\\/27\\\/basics-taking-a-turn-about-the-filesystem\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/author\\\/nsrd\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/author\\\/nsrd\\\/#author\"},\"datePublished\":\"2015-04-27T18:29:47+10:00\",\"dateModified\":\"2018-12-11T12:58:59+10:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/\",\"name\":\"Data Protection Hub\",\"description\":\"All things Data Protection\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/nsrd.info\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Basics \u2013 Taking a turn about the filesystem | Data Protection Hub","description":"Using save logs in NetWorker to understand the order in which files are processed.","canonical_url":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#article","name":"Basics \u2013 Taking a turn about the filesystem | Data Protection Hub","headline":"Basics &#8211; Taking a turn about the filesystem","author":{"@id":"https:\/\/nsrd.info\/blog\/author\/nsrd\/#author"},"publisher":{"@id":"https:\/\/nsrd.info\/blog\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/nsrd.info\/blog\/wp-content\/uploads\/2015\/04\/file-walk.jpg","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#articleImage","width":172,"height":600,"caption":"file walk"},"datePublished":"2015-04-27T18:29:47+10:00","dateModified":"2018-12-11T12:58:59+10:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#webpage"},"isPartOf":{"@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#webpage"},"articleSection":"Basics, NetWorker, Basics, debug, savegrp"},{"@type":"BreadcrumbList","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/nsrd.info\/blog#listItem","position":1,"name":"Home","item":"https:\/\/nsrd.info\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/nsrd.info\/blog\/category\/basics\/#listItem","name":"Basics"}},{"@type":"ListItem","@id":"https:\/\/nsrd.info\/blog\/category\/basics\/#listItem","position":2,"name":"Basics","item":"https:\/\/nsrd.info\/blog\/category\/basics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#listItem","name":"Basics &#8211; Taking a turn about the filesystem"},"previousItem":{"@type":"ListItem","@id":"https:\/\/nsrd.info\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#listItem","position":3,"name":"Basics &#8211; Taking a turn about the filesystem","previousItem":{"@type":"ListItem","@id":"https:\/\/nsrd.info\/blog\/category\/basics\/#listItem","name":"Basics"}}]},{"@type":"Person","@id":"https:\/\/nsrd.info\/blog\/#person","name":"Preston de Guise","image":{"@type":"ImageObject","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/d274b0939f505e2f4b85a111bdf61ff0fafc11f17dcd667d16a47d0a3de63a1d?s=96&d=mm&r=g","width":96,"height":96,"caption":"Preston de Guise"}},{"@type":"Person","@id":"https:\/\/nsrd.info\/blog\/author\/nsrd\/#author","url":"https:\/\/nsrd.info\/blog\/author\/nsrd\/","name":"Preston de Guise","image":{"@type":"ImageObject","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d274b0939f505e2f4b85a111bdf61ff0fafc11f17dcd667d16a47d0a3de63a1d?s=96&d=mm&r=g","width":96,"height":96,"caption":"Preston de Guise"}},{"@type":"WebPage","@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#webpage","url":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/","name":"Basics \u2013 Taking a turn about the filesystem | Data Protection Hub","description":"Using save logs in NetWorker to understand the order in which files are processed.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/nsrd.info\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/#breadcrumblist"},"author":{"@id":"https:\/\/nsrd.info\/blog\/author\/nsrd\/#author"},"creator":{"@id":"https:\/\/nsrd.info\/blog\/author\/nsrd\/#author"},"datePublished":"2015-04-27T18:29:47+10:00","dateModified":"2018-12-11T12:58:59+10:00"},{"@type":"WebSite","@id":"https:\/\/nsrd.info\/blog\/#website","url":"https:\/\/nsrd.info\/blog\/","name":"Data Protection Hub","description":"All things Data Protection","inLanguage":"en-US","publisher":{"@id":"https:\/\/nsrd.info\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Data Protection Hub | All things Data Protection","og:type":"article","og:title":"Basics \u2013 Taking a turn about the filesystem | Data Protection Hub","og:description":"Using save logs in NetWorker to understand the order in which files are processed.","og:url":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/","article:published_time":"2015-04-27T08:29:47+00:00","article:modified_time":"2018-12-11T02:58:59+00:00","twitter:card":"summary","twitter:title":"Basics \u2013 Taking a turn about the filesystem | Data Protection Hub","twitter:description":"Using save logs in NetWorker to understand the order in which files are processed."},"aioseo_meta_data":{"post_id":"5531","title":null,"description":"Using save logs in NetWorker to understand the order in which files are processed.","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":"","isEnabled":true},"graphs":[]},"schema_type":null,"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,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 05:26:16","updated":"2025-07-20 05:14:46","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/nsrd.info\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/nsrd.info\/blog\/category\/basics\/\" title=\"Basics\">Basics<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tBasics \u2013 Taking a turn about the filesystem\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/nsrd.info\/blog"},{"label":"Basics","link":"https:\/\/nsrd.info\/blog\/category\/basics\/"},{"label":"Basics &#8211; Taking a turn about the filesystem","link":"https:\/\/nsrd.info\/blog\/2015\/04\/27\/basics-taking-a-turn-about-the-filesystem\/"}],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pKpIN-1rd","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/posts\/5531","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/comments?post=5531"}],"version-history":[{"count":7,"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/posts\/5531\/revisions"}],"predecessor-version":[{"id":7432,"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/posts\/5531\/revisions\/7432"}],"wp:attachment":[{"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/media?parent=5531"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/categories?post=5531"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nsrd.info\/blog\/wp-json\/wp\/v2\/tags?post=5531"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}