View Single Post
Community Council | Posts: 4,920 | Thanked: 12,867 times | Joined on May 2012 @ Southerrn Finland
#1295
Originally Posted by Shadwblade2652 View Post
I did do --numeric-owner when I unpackaged it...

I'll try it again and post results

~~~~~~~~~~~~~
Exactly what does the sync command do? Is it mandatory?
Note that at least in some tar implementations the order of options is meaningful when extracting files from an archive, you need to put the options like this:
tar -xvf <filename_of_archive.tar> --numeric-owner -C <target_directory>

The "sync" command makes sure that all file buffers are written to the device. It is pretty good to use especially after unpacking a load of files to make sure the changes really go to the file system.
On the other hand, I do believe that properly unmounting the FS should achieve the same result.

Last edited by juiceme; 2014-01-07 at 08:34.