- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- uid on nfs mounted folders
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-08-2001 01:08 PM
08-08-2001 01:08 PM
I have some folders (on NT) that I have mounted as directories on the UNIX server. They are in the /etc/fstab and all is well. My problem is that the UID assigned for the folders is 65534 (for the GID as well). I can move files to and from them, but Ignite is flipping out, since
"File 'engpro1/temp' has uid 65534. Pax does not correctly support files with uid larger than 60k"
If I make a new file, it has my uid and gid. The same holds true to folders. I don't know where it pulled these numbers from, but can I force them to something else (ideally, my uid if I am logged in on engpro1 (the NT machine)? We have a program called Diskacess, that lets us log in and validate to the server and share the folders with UNIX. Thanks.
Mark
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2001 01:21 PM
08-08-2001 01:21 PM
SolutionThose are uid's are gid's of the NFS anonymous user. The OS can't match the file / group so it has to do something. Most Windows NFS packages allow you to set up some sort of mapping between NT users and UNIX users.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2001 02:17 PM
08-08-2001 02:17 PM
Re: uid on nfs mounted folders
I suppose you would feel better if I explain where the 65534 comes from. You should have an emtry in your passwd file of nobody with a uid of -2 and a group file entry of nogroup with a gid of -2.
65534 (fffe hex) is the unsigned 16-bit integer equivalent of -2 in 16-bit two's-complement representation.
Hope this clears it up, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2001 07:37 AM
08-09-2001 07:37 AM
Re: uid on nfs mounted folders
You can check /etc/exports, you will see a line like this:
/mount_point -anon=65534
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2001 09:18 AM
08-09-2001 09:18 AM
Re: uid on nfs mounted folders
mark