- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- umount is not working with logical volume file sys...
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
05-28-2007 10:40 PM
05-28-2007 10:40 PM
umount is not working with logical volume file system.
I am trying to configure an application in a cluster environment for MCSG.
i have two logical volumes /dev/vgshare/u01_share and /dev/vgshare/u02_share.
i have two folders /etc/share1 and /var/share2 which have some files which should be made available on logical volumes.
for this i am doing
mkdir /tmp1
mount /dev/vgshare/u01_share /tmp1
cp -r /etc/share1/* /tmp1
rm -r /etc/share1
now i want to unmounnt /tmp1 and then mount
/dev/vgshare/u01_share on /etc/share1.
but i am not able to unmount /tmp1.
the command is not coming out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 01:03 AM
05-29-2007 01:03 AM
Re: umount is not working with logical volume file system.
Anything? if yes, ps -ef the processess, then they have to be killed before you can umount it.
BTW - cp -r doesn't preserve permissions - should have done a cp -rp
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 01:14 AM
05-29-2007 01:14 AM
Re: umount is not working with logical volume file system.
fuser -cu /tmp1
/tmp1:
does not return.
thanks i will redo copying once i am able to unmount this.
Thanks,
jag
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 02:11 AM
05-29-2007 02:11 AM
Re: umount is not working with logical volume file system.
Thanks...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 06:00 AM
05-29-2007 06:00 AM
Re: umount is not working with logical volume file system.
I am not getting any error message.The umount command does not return.
I have to do
Rgrds,
Jagadevi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 07:45 AM
05-29-2007 07:45 AM
Re: umount is not working with logical volume file system.
umount -f /tmp1
Rgds...Geoff