- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Enabling a File System to auto mount at Boot Time
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
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
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-27-2003 07:49 AM
тАО04-27-2003 07:49 AM
How do I make a File System to automount at boot time ?
Regards,
Manjunath.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2003 07:53 AM
тАО04-27-2003 07:53 AM
Re: Enabling a File System to auto mount at Boot Time
You would add an entry for the filesystem in /etc/fstab.
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2003 07:57 AM
тАО04-27-2003 07:57 AM
SolutionJust put an entry in your /etc/fstab file. You'll specify the logical volume and the mountpoint.
Also, you might want to check your /etc/lvmrc file to make sure the AUTO_VG_ACTIVATE flag is set to 1. If not, you'll have to add the volume group to the function at the bottom of the file that activates the volume groups.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2003 05:01 PM
тАО04-27-2003 05:01 PM
Re: Enabling a File System to auto mount at Boot Time
# System /etc/fstab file. Static information about the file systems
# See fstab(4) and sam(1M) for further details on configuring devices.
/dev/vg00/lvol3 / vxfs delaylog 0 1
/dev/vg00/lvol1 /stand hfs defaults 0 1
/dev/vg00/lvol4 /opt vxfs delaylog 0 2
/dev/vg00/lvol5 /tmp vxfs delaylog 0 2
/dev/vg00/lvol6 /usr vxfs delaylog 0 2
/dev/vg00/lvol7 /var vxfs delaylog 0 2
# Set up apps1 volume group
/dev/apps1/informix /informix vxfs rw,suid,delaylog,datainlog 0 2
/dev/apps1/export /export vxfs rw,suid,delaylog,datainlog,largefiles 0 2
/dev/apps1/home /home vxfs rw,suid,delaylog,datainlog 0 2
/dev/apps1/patrol /patrol vxfs rw,suid,delaylog,datainlog 0 2
/dev/apps1/exchange /exchange vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/apps1/local /usr/local vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/apps1/omni /omni_db vxfs rw,suid,delaylog,datainlog,largefiles 0 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2003 07:18 PM
тАО04-27-2003 07:18 PM
Re: Enabling a File System to auto mount at Boot Time
for the file system.
check the man pages of fstab.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2003 07:41 PM
тАО04-27-2003 07:41 PM
Re: Enabling a File System to auto mount at Boot Time
if u want any filesystem to be mounted at boot time u must put an entry in /etc/fstab, some thing like this
/dev/vg00/lbmksrc /bmksrc vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
Duting system boot, it reads /etc/fstab to mount file systems on respective mount points.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2003 08:58 PM
тАО04-27-2003 08:58 PM
Re: Enabling a File System to auto mount at Boot Time
Make the entry in /etc/fstab
and also ensure that AUTO_VG_ACTIVATE=1 in /etc/lvmrc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2003 10:25 PM
тАО04-27-2003 10:25 PM
Re: Enabling a File System to auto mount at Boot Time
As all others said,
Ensure that AUTO_VG_ACTIVATE=1 in /etc/lvmrc file
Also Make the entry for the file system in in /etc/fstab file with proper parameters as given examples in previous answers.
Paresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2003 05:47 AM
тАО04-28-2003 05:47 AM
Re: Enabling a File System to auto mount at Boot Time
Thank you for your suggestions, after making an entry in /etc/fstab, the File System is mounting at Boot Time.
Regards,
Manjunath.