- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: fstab syntax
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
11-08-2007 01:46 AM
11-08-2007 01:46 AM
fstab syntax
mount /11b/data/iman/idsm_tmp /tmp/idsm_tmp
My question is how do I enter this in the fstab so that it mounts when the server reboots. OS is 11.11.
NOTE: The application using this directory doesn't like links.
Thanks,
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 02:01 AM
11-08-2007 02:01 AM
Re: fstab syntax
You can, you would need to make sure that the first directory is mounted before the second is attempted.
So for example:
/dev/vg01/dir1
/dev/vg01/dir1/dir2
Would have entries in the fstab file something like this:
/dev/vg01/lvol1 /dir1 vxfs delaylog 0 2
/dev/vg01/lvol2 /dir1/dir2 vxfs delaylog 0 2
Mike.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 03:41 AM
11-08-2007 03:41 AM
Re: fstab syntax
Syntax used:
/11b/data/iman/idsm_tmp /tmp/idsm_tmp lofs defaults 0 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 04:01 AM
11-08-2007 04:01 AM
Re: fstab syntax
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 05:22 PM
11-08-2007 05:22 PM
Re: fstab syntax
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2007 05:26 PM
11-08-2007 05:26 PM
Re: fstab syntax
Oops, I just saw this. How does the application know there is a link?
This implies the application is trying to be too clever and is not clever enough.
You of course can create a directory hardlink (if in the same filesystem) to fight stupidity with even more. :-)