- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Error in TAR backup
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 02:25 AM
08-13-2004 02:25 AM
I get a message "tar: couldn't get gname for gid 105" when I run the TAR backup. After I get this message, TAR backups another file system which is not included in my tar command. What do you think is the matter?
Thank you very much
Karl
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 02:27 AM
08-13-2004 02:27 AM
SolutionThe "tar: couldn't get gname for gid 105" just means that there was a file that had its group set for group 105, which does not exist in /etc/group. That is just an informational message.
If you post your tar command, and tell us what you did and did not want to back up, we can probably tell you where the problem is.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 02:30 AM
08-13-2004 02:30 AM
Re: Error in TAR backup
tar will cross filesystem boundaries, ie if you have a /opt and a /opt/something, a tar of /opt will include /opt/something unless you explicity specify otherwise.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 02:40 AM
08-13-2004 02:40 AM
Re: Error in TAR backup
Anyway, let me go back to the "gid 150" message. Does this mean that the files that have 105 were not included in the backup?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 02:47 AM
08-13-2004 02:47 AM
Re: Error in TAR backup
You can verify this logic with: -
touch afile
chgrp 678 afile
tar cvf arch.tar afile
tar tvf arch.tar
the output is: -
rw-r----- 335/678 0 Aug 13 15:46 2004 afile
which confirms the file has been backed up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 02:51 AM
08-13-2004 02:51 AM
Re: Error in TAR backup
Apparently at some point a group with a GID of 105 existed, but it does not anymore.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2004 02:53 AM
08-13-2004 02:53 AM
Re: Error in TAR backup
Best regards,
Karl