- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: always not mounted/missing file system
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
01-13-2005 03:26 PM
01-13-2005 03:26 PM
always not mounted/missing file system
mount /dev/vg01/lvol11 /orcle
it works but everytime i reboot my server file system /oracle always not mounted.
what should i do? please help thank you very much!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 03:49 PM
01-13-2005 03:49 PM
Re: always not mounted/missing file system
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 04:16 PM
01-13-2005 04:16 PM
Re: always not mounted/missing file system
mount /oracle
will work if there's an entry in /etc/fstab that describes *how* to mount /oracle -- HP-UX needs to know what part of the disk to mount at "/oracle". The "what part of the disk" is the /dev/vg01/lvol11 in your successful mount command.
Try adding a line (probably at the end) of your /etc/fstab:
/dev/vg01/lvol11 /oracle vxfs defaults 0 2
(There are a lot of parameters you can use; I'm making the assumption that your filesystem is a vxfs filesystem. If it's not, you need to change "vxfs" to something else. You should probably change "defaults" to something more appropriate -- see what other, similar filesystems are mounted as -- perhaps delaylog, datainlog, and so forth. See:
man 4 fstab
for more information.)
If you're adding more filesystems, you'll need to do this for each new filesystem. One easy way to add filesystems is with the "SAM" utility (sam). SAM (System Administration Manager) takes care of all the details for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 04:21 PM
01-13-2005 04:21 PM
Re: always not mounted/missing file system
You have largefiles option in /etc/fstab on an 11i v1 system or above. That option worked in 11.00 but was deprecated in 11i v1.
If thats not the issue then try a generic set of mount options in /etc/fstab for the oracle fs.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 07:20 PM
01-13-2005 07:20 PM
Re: always not mounted/missing file system
If you are not sure of the integrity of the filesystem, try and run "fsck" on the LV device. Thereafter, check the entries in /etc/fstab for:
/dev/vg01/lvol11 /oracle vxfs defaults 0 2
or similar.
Reboot to confirm the process.
All the best.
Charles
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 12:27 PM
01-16-2005 12:27 PM
Re: always not mounted/missing file system
in my /etc/fstab there is an entry of my /oracle file system.
/dev/vg01/lvol11 /oracle vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
but still when i reboot my server my /oracle file system didn't mount and i mounted it manually.
one more thing i have a largefiles option in my /etc/fstab, do you think this is one of the cause of my problem now?
how to convert nolargefiles to largefiles option? will it work if i will vi(edit) then delete the nolargefiles to largefile? then reboot the server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 01:20 PM
01-16-2005 01:20 PM
Re: always not mounted/missing file system
you rebooted the system and see if there are any
error messages:
$ dmesg -
(Make sure to redirect the output of the above
command to a file as any subsequent "dmesg -"
command will not print the same messages again).
- Biswajit