- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mkdir on nfs filesystem not setting the group ...
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
04-18-2003 12:55 PM
04-18-2003 12:55 PM
mkdir on nfs filesystem not setting the group writable permissions bit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 01:28 PM
04-18-2003 01:28 PM
Re: mkdir on nfs filesystem not setting the group writable permissions bit
- ramd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 01:30 PM
04-18-2003 01:30 PM
Re: mkdir on nfs filesystem not setting the group writable permissions bit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 01:35 PM
04-18-2003 01:35 PM
Re: mkdir on nfs filesystem not setting the group writable permissions bit
see this -
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# mount | grep mig
/mig on mig:/tmp rsize=32768,wsize=32768,NFSv3 on Fri Apr 4 23:34:41 2003
# cd /mig
# ls -ld .
drwxrwxrwx 19 bin bin 4096 Apr 19 03:02 .
# umask
00
# mkdir test
mkdir: cannot create test: File exists
# rmdir test;mkdir test
# ls -ld test
drwxrwxrwx 2 nobody nogroup 96 Apr 19 03:05 test
# rmdir test
# umask 002
# mkdir test
# ls -ld test
drwxrwxr-x 2 nobody nogroup 96 Apr 19 03:05 test
# rmdir test
# umask 022
# mkdir test; ls -ld test
drwxr-xr-x 2 nobody nogroup 96 Apr 19 03:05 test
# rmdir test
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
- ramd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 02:40 PM
04-18-2003 02:40 PM
Re: mkdir on nfs filesystem not setting the group writable permissions bit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 03:02 PM
04-18-2003 03:02 PM
Re: mkdir on nfs filesystem not setting the group writable permissions bit
here is /etc/exports on my nfs server -
# cat /etc/exports
/tmp -rw=scud
Here is the mount command that i'd run to mount this on my nfs client -
# mount mig:/tmp /mig
What other config details would you require?
- ramd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2003 10:25 AM
04-21-2003 10:25 AM
Re: mkdir on nfs filesystem not setting the group writable permissions bit
My apologies for not making it clear that the NFS server is a Linux box....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2003 12:51 PM
04-21-2003 12:51 PM
Re: mkdir on nfs filesystem not setting the group writable permissions bit
The update of the linux kernel to 2.4.16-7smp solved the problem....