LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Error while running tar (https://www.linuxquestions.org/questions/linux-newbie-8/error-while-running-tar-787808/)

taylorkh 02-08-2010 11:41 AM

Error while running tar
 
I am writing, well actually enhancing, a script to do a daily backup of important data on my PC to a second hard drive. I wish to tar my home directory to a single file - and will probably use gzip as well. So I decided to work out the correct tar syntax in a terminal first - here is what happened.

I opened a terminal window
I cd to a directory not part of my home directory
I issued the command
Quote:

tar -cvf mytar.tar /home/ken
tar processed a bunch of files, the last being .netrc and then displayed the following message
Quote:

tar: Exiting with failure status due to previous errors
I examined the tar file and it contains .netrc. The contents of .netrc are correct.

I scrolled back through the list of files in the terminal window and do not see any error messages.

I guess the question is... how do I determine what file tripped up the tar process?

TIA,

Ken

amani 02-08-2010 12:23 PM

ext4 related??

install the debuginfo package to see more clearly...gdb

taylorkh 02-08-2010 12:47 PM

Thanks for the quick reply amani. I am running all ext3 file systems so I do not think that is the issue.

Can you please tell me more about the debuginfo package. Is it available for Ubuntu - I do not find it in Synaptic nor do I find any debug packages associated with tar. I have googled for debuginfo and it appears to be a RedHat/Fedora package(?)

Ken

amani 02-08-2010 12:57 PM

the debuginfo packages are used with gnu debugger... but since you do not have ext4, then do not bother.

The problem is elsewhere

knudfl 02-08-2010 01:20 PM

.

Suggest : Do a separate 'tar -cvf' with the " .netrc "
files to test, what is happening.

.....

taylorkh 02-08-2010 01:42 PM

I just did a tar of my .netrc file as suggested. It worked fine, no error and the .netrc file is in the tar file as expected.

I am guessing that the file which caused the problem is the one which tar tried to process after .netrc. However, I have no idea what that file would be. Is tar reading files by timestamp, name alphabetically, inode number???

Ken

btmiller 02-08-2010 01:49 PM

The tar command should tell you the error that occured (you may need to look back through the output). Usually this happens when a file changes or gets deleted while tar is trying to archive it. This is pretty common when archiving large directory and is nothing to worry about if that's what happened.

taylorkh 02-08-2010 03:10 PM

I have again looked line for line through the output. I see nothing to indicate a problem. I do note that the tar file is about 8.8 MB and my home directory is about 90 GB. I am not using compression so obviously the process is dying before processing all of the files under /home/ken.

That I have to worry about :(

Ken

taylorkh 02-08-2010 05:52 PM

I changed my command thusly
Quote:

tar -cvf mytar.tar /home/ken 2> myerrors.txt
and the contents of myerrors.txt
Quote:

tar: Removing leading `/' from member names
tar: /home/ken/.viminfo: Cannot open: Permission denied
tar: Exiting with failure status due to previous errors
And the permissions on this rogue file .vminfo
Quote:

dr-x------ 2 ken ken 0 2010-02-06 16:42 .gvfs
So I did a sudo chmod 555 /home/ken/.viminfo and low and behold I can tar the whole mess. The resulting tar file is about 84 MB.

Ken


All times are GMT -5. The time now is 02:00 PM.