- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: logical volume
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
03-28-2002 12:04 PM
03-28-2002 12:04 PM
I have /u01 file system as above. i want to add two more disks to the system and mirror them, create a new volume group on them and a new logical volume. i want to mount this new logical volume on the the mount point /u01/newdir
i shall create newdir. Is that feasible or can not be done. Any issue i should expect
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:06 PM
03-28-2002 12:06 PM
Re: logical volume
Looks like this is possible.
I would not know why not.
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:08 PM
03-28-2002 12:08 PM
Re: logical volume
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:11 PM
03-28-2002 12:11 PM
Re: logical volume
549445 75% /u01
This is not mirrored. only /u01/newdir will be mirrored on the new disks..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:11 PM
03-28-2002 12:11 PM
Re: logical volume
Yes indeed it's possible. create the newdir under /u01 and mount it after the vg/lv is created. Just remember that you will have to unmount the /u01 filesystem before unmounting the /u01/newdir filesystem (trivial, but possible) if needed.
Good luck
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:15 PM
03-28-2002 12:15 PM
Re: logical volume
remember that you will have to
unmount the /u01 filesystem
before unmounting the
/u01/newdir filesystem (trivial,
but possible) if needed. "
Will this be other way around/ unmount /u01/newdir first and then /u01
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:15 PM
03-28-2002 12:15 PM
Re: logical volume
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:18 PM
03-28-2002 12:18 PM
Re: logical volume
It is possible to do that. Some points:
1) In any case, if /u01 not available ( a disk fail ?), there will be problems with the new file system ( as the mount directory not available) and thereby causing problems to two different file systems !
2) While backing up, if you need /u01 only you have to unmount this new file system.
3) If you need to unmount the /u01, you have to do that for /u01/newdir too.
4) mounting order in /etc/fstab
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:29 PM
03-28-2002 12:29 PM
Re: logical volume
I forgot about mount order.
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:30 PM
03-28-2002 12:30 PM
Re: logical volume
just confirming the mounting and unmounting order again in /etc/fstab. /u01 will be mounted first and then /u01/newdir.
For unmounting /u01/newdir will be first and then /u01.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:33 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:42 PM
03-28-2002 12:42 PM
Re: logical volume
What everyone is telling you is good advice. There is no problem doing this, but why not create a mount point such as /newdir off of / and then put a soft link at /u01/newdir?
# ln -s /newdir /u01/newdir
This way if /u01 is not available you could still get to your files. And you don't have to worry about those pesky /etc/fstab issues.
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2002 12:48 PM
03-28-2002 12:48 PM
Re: logical volume
I was exploring that option, but I have given thought to link option and chances are that we will create the link.
Thanks