How to Preserve Symbolic Links in Tar Command

Written by: Bobbin Zachariah   |   Last updated: December 6, 2022

How to preserve symbolic links (symlinks) especially when you tar the files is explained below. We all know how to use tar command. The following steps preserve links when you archive.

Step 1. Create the Archive with only Links

What you need to remember is that when tar archives a symbolic link, it writes a record to the archive naming the target of the link

tar -cvf archive.tar /backupfolder

Step 2. Archive with Linked Files

When you use -h with -c, it causes tar to archive the files symbolic links point to, instead of the linking themselves. When this option is used, when tar encounters a symbolic link, it will archive the linked-to file, instead of simply recording the presence of a symbolic link.

find /backupfolder -type l | xargs tar -cvfh linkedfiles.tar

Step 3. Extract

This gets you back to exactly how your symlink and its files were:

tar -xvf archive.tar
tar -xvfh linkedfiles.tar

About The Author

Bobbin Zachariah

Bobbin Zachariah

Bobbin Zachariah is an experienced Linux engineer who has been supporting infrastructure for many companies. He specializes in Shell scripting, AWS Cloud, JavaScript, and Nodejs. He has qualified Master’s degree in computer science. He holds Red Hat Certified Engineer (RHCE) certification and RedHat Enable Sysadmin.

SHARE

Comments

Please add comments below to provide the author your ideas, appreciation and feedback.

Leave a Reply

Leave a Comment