- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mounting 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-18-2001 09:48 AM
01-18-2001 09:48 AM
mounting file system
VG03, iam unable to access a file system called
/dev/vg03/sall_2000. These entries are on /etc/fstab but
not on the /etc/mnttab directory. vgdisplay shows that the file system is there. My question is how do i run a mount command on this file system, what options do i specify when executing a mount command. I ran this command: mount /saal_2000, but the error message reads "file not found in /etc/fstab.
Thanks, bassey.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2001 09:52 AM
01-18-2001 09:52 AM
Re: mounting file system
mount /vgxx/lvxx/sal... /sal
see man mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2001 09:54 AM
01-18-2001 09:54 AM
Re: mounting file system
First...so nice to finally be able to respond to your posts.
When you do a vgdisplay and see /dev/vg03/sall_2000, well the sall_2000 is the logical volume, not the file system....You don't here specify a real file system, just the logical volume. .... ???
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2001 06:34 AM
01-19-2001 06:34 AM
Re: mounting file system
I agree with Rita, you need t ocreate FS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2001 07:08 AM
01-19-2001 07:08 AM
Re: mounting file system
If there is an entry in the fstab just try the command mount -a, this will try to mount all enries fstab which are not mounted yet.
Greetz, Danny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2001 07:20 AM
01-19-2001 07:20 AM
Re: mounting file system
Welcome back to the forums !!
As you have an entry for /dev/vg03/sall_2000 in your file /etc/fstab, the second field of the same line should tell you the mountpoint of the filesystem.
example
/dev/vg03/sall_2000 /sall vxfs rw,suid,delaylog,datainlog 0 2
The line above tells you that logical volume /dev/vg03/sall_2000 has to be mounted under directory /sall.
Make sure that the mountpoint exists (in this case /sall), issue an 'mkdir' if it doesn't.
Then you would be able to type 'mount /sall' as this will mount the filesystem, providing your filesystems has been created, of course.
If not, you'll have to create it first. The easiest way being 'sam'.
Have a look at manpages for newfs and newfs_vxfs for details.
Best regards,
Dan