- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- queries on a line in fstab
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
10-05-2004 02:06 PM
10-05-2004 02:06 PM
"192.168.20.31:/users1/ndb /iwork/network/conversion/rdserver nfs rw,suid 0 0"
what does this line does?
what does suid 0 0 implies?
thank u for ur kind advises!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2004 02:14 PM
10-05-2004 02:14 PM
SolutionThis an NFS entry. This means, the directory/filesystem /users1/ndb on 192.168.20.31 is to be mounted on /iwork/../rdserver directory on the local system.
nfs indicates that it is an NFS entry.
rw means it's up for read and write. But it doesn't mean anyone can read and write into it. It's according to the permissions and how it is expored on the remote system.
suid means the programs on the NFS mounte directory will run the permissions of their owners. So, if the program is owned by 'userA' and if 'userB' runs it, it will run as 'userA'.
0,0 are typically pass number and backup frequency that are ignored for NFS.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2004 02:20 PM
10-05-2004 02:20 PM
Re: queries on a line in fstab
This line mounts a filesystem via NFS from the /users1/nds filesystem on server at IP address 192.168.20.31, mounted locally as /iwork/network/conversion/rdserver. The suid option allows setuid execution of files on that mount. The first zero is for backup frequency, and the second zero is for the pass number for when an fsck should be run at boot time.
See 'man mount_nfs' and 'mount fstab' for more information.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2004 02:25 PM
10-05-2004 02:25 PM
Re: queries on a line in fstab
I just want to make sure I am not conveying wrong information. I didn't mean all programs on NFS mounted directory will be run as 'suid' programs if 'suid' option is specified. It's only applicable to the programs that already have 'suid' permissions. I am a fat fingered 'typo' master ;-)
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2004 06:01 PM
10-06-2004 06:01 PM
Re: queries on a line in fstab
The suid implies suid is allowed. You cn make nosuid to dissalow users from suid-ing on that filesystem. This might break some applications that rely on suid though.
Regards
Gerhard