- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- disk paths
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
01-28-2002 09:33 AM
01-28-2002 09:33 AM
I have some lvols and I need to remove some. I want to know in wich disk the specific lvol is. How can I do that? Thanx.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 09:36 AM
01-28-2002 09:36 AM
Re: disk paths
# lvdisplay -v /dev/dsk/lvolX
...will show which physical disks have logical extents for the logical volume in question.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 09:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 09:53 AM
01-28-2002 09:53 AM
Re: disk paths
The first step is to delete (remove) the lvol's you want to remove, then using vgdisplay -v vg## | more (where ## is the volume group number) to see what disks are in your VG. Then using the pvdisplay -v /dev/dsk/name | more (where name is the disk device, like c5t2d0) to see if any lvol's are still using the disk.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 09:58 AM
01-28-2002 09:58 AM
Re: disk paths
Try this:
1) find out which LV's you want to remove.
2) Unmount those file systems ( umount /fs1)
3) Find out LV information ( lvdisplay -v /dev/vg01/lvolx )
In this check the PV names and path to determine the hard disk details.
4) lvremove lvname
5) Remove entries from /etc/fstab.
Also, the specific HDD can be part of other LVs too. For a specific HDD info, do 'pvdisplay -v /dev/dsk/cxtxdx'
HTH,
Shiju