- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: LVM ount point manipulation
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
09-24-2007 08:14 PM
09-24-2007 08:14 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 08:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 08:27 PM
09-24-2007 08:27 PM
Re: LVM ount point manipulation
In your case, you can either do:
umount /tmpstuff
mkdir /
mount /dev/
e.g. mkdir /newstuff
mount /dev/vg01/lvol1 /newstuff
Then modify the entry in /etc/fstab to reflect the new mount point for the next boot.
OR
just mkdir the new mount point, and modify the /etc/fstab file to refelect the new mopunt point, and wait for the nextsystem boot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 08:33 PM
09-24-2007 08:33 PM
Re: LVM ount point manipulation
the oratmp logical volume cannot have the same mount point as /tmp because to logical volumes cannot share the same mount point.
what are you trying to achieve?
if you want all oratmp stuff to go into /tmp it may be worth just changeing the /tmpstuff mount point to /tmp/tmpstuff
tar the data in /tmpstuff
unmount /tmpstuff (only can be done if there are no active processes or app is down)
mount /dev/vgxx/oratmp /tmp/tmpstuff
then untar the data into /tmp/tmpstuff
finally edit /etc/fstab so the filesystem will mount during boot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 08:52 PM
09-24-2007 08:52 PM
Re: LVM ount point manipulation
As said before it's almost impossible to umount /tmp when the system is running, because there are always files used in /tmp.
So you've to reboot it or at least go into single user mode and unmount /tmp.
HTH
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 10:06 PM
09-24-2007 10:06 PM