- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mounting and umount 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
11-22-2005 01:58 AM
11-22-2005 01:58 AM
/opt/ai/live
/opt/ai/test
and /opt/ai on a mounted directory.
I umount'ed /opt/ai/live and /opt/ai/test
then umount'ed /opt/ai
I then removed mount point /opt/ai
and tried to re mount /opt/ai/live and /opt/ai/test, but I get this message
"mount: /opt/ai/test: No such file or directory"
any ideas how I can re-mount the filesystem/logical volume I have before.
Really need help on this one guys
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 02:05 AM
11-22-2005 02:05 AM
SolutionTo mount /opt/ai/live
The path must exist.
Part of the process of creating the mount point is:
mkdir /opt/ai/live
mkdir /opt/ai/test
Retry the mount.
It will work now.
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
11-22-2005 02:05 AM
11-22-2005 02:05 AM
Re: mounting and umount filesystems
mkdir -p /opt/ai/live
mkdir -p /opt/ai/test
mount /your_lv_1 /opt/ai/test
mount /your_lv_2 /opt/ai/live ?
RGDS
Mauro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 02:06 AM
11-22-2005 02:06 AM
Re: mounting and umount filesystems
mkdir /opt/ai/live
mkdir /opt/ai/test
try to remount them again.
Best regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 02:08 AM
11-22-2005 02:08 AM
Re: mounting and umount filesystems
To mount /opt/ai/live
The path must exist.
Part of the process of creating the mount point is:
mkdir /opt/ai/live
mkdir /opt/ai/test
Retry the mount.
It will probably work now.
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
11-22-2005 02:17 AM
11-22-2005 02:17 AM
Re: mounting and umount filesystems
Since you are now trying to mount them on another logical volume (/opt) you need to recreate the directories /opt/ai/live and /opt/ai/test before you remount them.
A cautionary word - if you remount /opt/ai without first unmounting /opt/ai/test, the /opt/ai/test that appears on the system will be empty - because it will be off of the /opt/ai mount point, not the /opt mount point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 02:20 AM
11-22-2005 02:20 AM
Re: mounting and umount filesystems
You saved my bacon bigtime.
Paul