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
02-21-2001 05:01 AM
02-21-2001 05:01 AM
LVM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2001 05:10 AM
02-21-2001 05:10 AM
Re: LVM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2001 05:25 AM
02-21-2001 05:25 AM
Re: LVM
aspen # lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c0t6d0
The newly allocated mirrors are now being synchronized. This operation will
take some time. Please wait ....
lvextend: Couldn't re-synchronize stale partitions of the logical volume:
I/O error
lvextend: Couldn't resynchronize logical volume "/dev/vg00/lvol1". The hardware tech ran a bunch of diag tools to no avail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2001 05:31 AM
02-21-2001 05:31 AM
Re: LVM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2001 06:04 AM
02-21-2001 06:04 AM
Re: LVM
I had a similiar problem where there were bad blocks on the original disk so it wouldn't read from it. I also had another occassion where all the extents on the where used on the disk and when lvm tried to read the last few it kept giving falling over, almost as if it expected more extents or something. Fortunately I was able to move things around and use other disks (it wasn't vg00)to aviod using the last few extents.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2001 12:21 AM
02-22-2001 12:21 AM
Re: LVM
1.After you replace the disk did you run the command:
> pvcreate -B /dev/rdsk/c1t0d0
(You mast use the -B for vg00 that say this is
a bootabel disk).
2.After that you need to check the disk capacity, and the bytes per sector (For hp it need to be 512).
The tharget disk need to be equal or great then the source.
> diskinfo /dev/rdsk/c1t0d0
describe of /dev/rdsk/c1t0d0:
vendor: SEAGATE
product id: ST34371W
type: direct access
size: 4248442 Kbytes
bytes per sector: 512
3.Other check is to run the dd command
and look if you have any problem with the source disk .
dd if=/dev/vg00/lvol1 of=/dev/null bs=512k
Run this command on all the lvols that belong to vg00.