Results 1 to 10 of 14
At any *.tar.gz unpacking i (as root) receive this kind of error message:
Code:
An error occurred while extracting files.
Cannot change ownership to uid 500, gid 500: Operation not ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-18-2004 #1Just Joined!
- Join Date
- Feb 2004
- Location
- Bucharest - RO
- Posts
- 64
.tar.gz errors
At any *.tar.gz unpacking i (as root) receive this kind of error message:
The thing is that, in the end, file roller unpacks that *.tar.gz file...What is wrong and what should i do?Code:An error occurred while extracting files. Cannot change ownership to uid 500, gid 500: Operation not permitted Error exit delayed from previous errors
- 03-18-2004 #2
what command are you using to unpack it like what options are you using with tar?
BIG K aka Kyle
Programming Forums
www.kylekonline.com
Please don\'t PM me for help-- ask in the forums instead!
- 03-18-2004 #3Just Joined!
- Join Date
- Feb 2004
- Location
- Bucharest - RO
- Posts
- 64
i use file roller...so i just click the extract button and that`s it
- 03-18-2004 #4
Try tar zxvpf <filename>.tar.gz in a shell
- 03-18-2004 #5Just Joined!
- Join Date
- Feb 2004
- Location
- Bucharest - RO
- Posts
- 64
the same thing...
- 03-18-2004 #6
- 03-18-2004 #7Just Joined!
- Join Date
- Feb 2004
- Location
- Bucharest - RO
- Posts
- 64
it`s the same thing ....And i tell you it`s the same thing for all *.tar.gz files, not only for one
- 03-19-2004 #8Linux User
- Join Date
- May 2003
- Location
- CA
- Posts
- 370
wat r the ownerships of the .tar.gz files? who has uid 500 in your passwd file?
Fixing Unix is better than working with Windows.
http://nikhilk.homedns.org/projects/index.html
- 03-29-2004 #9Just Joined!
- Join Date
- Feb 2004
- Location
- Bucharest - RO
- Posts
- 64
in my passwd file, my user has uid 500, not the root.What shall i do?
- 03-29-2004 #10Linux Engineer
- Join Date
- Jul 2003
- Location
- Uppsala, Sweden
- Posts
- 1,278
Dont bother unpacking them as the root user do these steps instead:
as normal user:
tar -xvjf /home/me/myfile.tar.bz2 or for tar.gz files use:
tar -xvzf /home/me/myfile.tar.gz
this will create the directory:
/home/me/myfile/ so CD to it:
cd /home/me/myfile/
then run
./configure
then run:
make
Only now do you become root:
su
<password>
then run:
make installProud to be a GNU/Gentoo Linux user!


Reply With Quote
