- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk Status : FS_wholedisk
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
04-21-2004 11:11 AM
04-21-2004 11:11 AM
Disk Status : FS_wholedisk
When i type vxdisk list :
DEVICE TYPE DISK GROUP STATUS
c4t0d1 simple - - FS_wholedisk
Can i convert FS_wholedisk to LVM ?
This disk is an hardware logical array...
If i cannot convert Status on this disk, how i can create lv ? i cannot see vg in SAM... thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2004 09:27 PM
04-24-2004 09:27 PM
Re: Disk Status : FS_wholedisk
Why don't to backup you filesystem that resides in c4t0d1 and proceed as below:
Use vgextend to add this pv to existing VG
# vgextend -f vgxx /dev/dsk/c4t0d1
# lvcreate -L
# newfs -F vxfs /dev/rdsk/r
# mkdir
# mount /dev/dsk/
Repeat this if create more LV's.
Restore back your Data into this FileSystems created.
vgxx is your existing Volume Group. If want you can create separate VG for this Disk then proceed as below:
# cd dev
# mkdir
# cd /dev/vgxx
# mknod group -c major minor
# vgcreate -f /dev/vgxx /dev/dsk/c4t0d1
# lvcreate -L
# newfs -F vxfs /dev/rdsk/r
# mkdir
# mount /dev/dsk/
You can create same filesystem/LV structure as you have not on wholedisk if required.
This should work fine
Bharat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2004 02:19 PM
04-25-2004 02:19 PM
Re: Disk Status : FS_wholedisk
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2004 04:28 PM
04-25-2004 04:28 PM
Re: Disk Status : FS_wholedisk
FS_wholedisk status shows that your full disk is used as single FS without usiing any volume manager (Nither Veritas nor LVM).
If you want to use take this disk in the control of volume manager you have to backup all the data and then use LVM or VxVM command to take it under volume manager.
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2004 07:58 PM
04-25-2004 07:58 PM
Re: Disk Status : FS_wholedisk
Good luck
Kaps