- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mounting filesystems
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
04-17-2004 09:43 AM
04-17-2004 09:43 AM
mounting filesystems
Newbie needing help. I'm trying to mount a file system and I'm getting the message no such file or directory. The file system is in /etc/fstab. What's wrong? Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2004 09:50 AM
04-17-2004 09:50 AM
Re: mounting filesystems
for example, you have:
/etc/fstab
/dev/vg00/lvol1 /mpoint1 ....
You must verify that /mpoint1 is created, if not, mkdir /mpoint1
After, type the command: mount -a or mount /dev/vg00/lvol1 /mpoint1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2004 11:05 AM
04-17-2004 11:05 AM
Re: mounting filesystems
You need to create a mount point directory.
Example:
# mkdir /abc
# mount /dev/vg02/lvol5 /abc
It should be able to mount lvol5 on abc.
Now check the entry in /etc/fstab and modify if required.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2004 11:47 AM
04-17-2004 11:47 AM
Re: mounting filesystems
#mount hostname:/filesyste /mountpoint
(See the fstab entry)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2004 08:29 PM
04-17-2004 08:29 PM
Re: mounting filesystems
IS the Volume Group active and is the filesystem configured. Check vgdisplay -v /dev/vg_name for the VG to which this Filesystem belongs. Good Guess is that either the VG no longer exist or it is not active.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 10:13 AM
04-18-2004 10:13 AM
Re: mounting filesystems
If you have let say this file system
dev/vg02/lvol9 and you want to mount it.
Just make one directory for example /sandra
Use this comand to mount it:
mount /dev/vg02/lvol9 /sandra
Success
Idriz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 09:24 PM
04-18-2004 09:24 PM
Re: mounting filesystems
In that case you can rewrite the entry, delete the old and then try out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 11:06 PM
04-18-2004 11:06 PM
Re: mounting filesystems
Se quiseres podes falar em português comigo.
qual realmente o problema. Já verificas-te se a directoria existe? qual o comando que estás a usar? já esperimentas-te o "#mo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 11:19 PM
04-18-2004 11:19 PM
Re: mounting filesystems
check the which logical volume u want to mount
#mount /dev/vgXX/lvolX /<
Thanx