UX:vxfs fsadm: ERROR: V-3-23544: sectors must be >= 427152198 as they are currently in use


 
Thread Tools Search this Thread
Operating Systems HP-UX UX:vxfs fsadm: ERROR: V-3-23544: sectors must be >= 427152198 as they are currently in use
# 1  
Old 06-20-2010
UX:vxfs fsadm: ERROR: V-3-23544: sectors must be >= 427152198 as they are currently in use

Hi all

I get that error when I try to extend the file system after successfully extending the logical volume.

Code:
lvextend -L 460000 /dev/vg_xxxx/lv_xxxx

was successful.

I then do this calculation according to instructions I received;

460000/4 x 1024 = 117760000

and then try to extend the file system;


Code:
# fsadm -F vxfs -b 117760000 /xxxx
UX:vxfs fsadm: ERROR: V-3-23544: sectors must be >= 427152198 as they are currently in use.

Any ideas on how to fix this? I'm not very familiar with HP-UX
# 2  
Old 06-20-2010
Hi,

fsadm -b uses 1 KiB sectors, whereas lvextend uses MiB's, so I think your instructions are incorrect and it should be 46000 x 1024 = 471040000

The command should be:
Code:
# fsadm -F vxfs -b 471040000 /xxxx

This User Gave Thanks to Scrutinizer For This Post:
# 3  
Old 06-20-2010
Success! Smilie

Code:
# fsadm -F vxfs -b 471040000 /xxxx
UX:vxfs fsadm: INFO: V-3-23585: /dev/vg_xxxx/rlv_xxxx is currently 460816384 sectors - size will be increased

Thanks for your help!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Use of prtdiag to give information of sectors,cylinders,track of each disk

Hi All, i am trying to get sectors,cylinders,track..etc information of all present disks out of solaris machine using prtvtoc command . Output of ptrvtoc command is as below : bash-3.2# prtvtoc /dev/dsk/c1t0d0s0 * /dev/dsk/c1t0d0s0 partition map * * Dimensions: * 512 bytes/sector... (2 Replies)
Discussion started by: omkar.jadhav
2 Replies

2. Debian

How to find and move boot sectors?

Hi A mismatch occurred on my system (Debian, Sid). I've got 3 disks sda, b, c. Unfortunately, when I was adding a third disk (sdc) it all finished so that both sdb and sdc now have a boot flag. So, the first thing I would like to find out is which disk the system now boots from: sdb or sdc? In... (0 Replies)
Discussion started by: mladen
0 Replies

3. UNIX for Advanced & Expert Users

read sectors from disk failed with timeout

i'm writing some code to simulate the boot progress after power on but when i try to read the 2nd sector from a floppy disk, this operation always fail with ah=0x80h which means timeout, how can i get over this problem? my code would be like this: $ cat boot.S .code16 #define SETUPLEN 4... (0 Replies)
Discussion started by: wljackhero
0 Replies

4. Linux

read sectors from disk failed with timeout

i'm writing some code to simulate the boot progress after power on but when i try to read the 2nd sector from a floppy disk, this operation always fail with ah=0x80h which means timeout, how can i get over this problem? my code would be like this: $ cat boot.S .code16 #define SETUPLEN 4... (0 Replies)
Discussion started by: wljackhero
0 Replies

5. Boot Loaders

read sectors from disk failed with timeout

i'm writing some code to simulate the boot progress after power on but when i try to read the 2nd sector from a floppy disk, this operation always fail with ah=0x80h which means timeout, how can i get over this problem? my code would be like this: $ cat boot.S .code16 #define SETUPLEN 4... (0 Replies)
Discussion started by: wljackhero
0 Replies

6. Solaris

SPARC, data sectors/track

when I try to enter the value 424 for "data sectors/track" in format menu, it returns this error: `424' is out of range. is that hard drive parameter important? what to enter? thanks. (2 Replies)
Discussion started by: orange47
2 Replies

7. SCO

Error: msgcnt 1 vxfs: mesg 016: vx_ilisterr - / file system error reading

Hello... i got an error in my SCO OpenServer 6. the error is: msgcnt 1 vxfs: mesg 016: vx_ilisterr - / file system error reading inode 373 Can anyone help me? (1 Reply)
Discussion started by: AndryMB
1 Replies

8. Filesystems, Disks and Memory

Smartmontools and fixing Unreadable Disk Sectors

I found a document: Bad block HOWTO for smartmontools My hard drive is Maxtor: root]# fdisk -lu /dev/hda Disk /dev/hda: 81.9 GB, 81964302336 bytes 255 heads, 63 sectors/track, 9964 cylinders, total 160086528 sectors Units = sectors of 1 * 512 = 512 bytes Disk identifier: 0x3f4e3f4d ... (0 Replies)
Discussion started by: justinian
0 Replies

9. SCO

VxFS filesystem

Hello, Am basically working on VxFS filesystem and while tracking the file, I got stuck at one point. As I am able to locate the superblock(it is at offset 1024 from the start of partition). And from superblock I got the sector no. of "OLT extent". By jumping to the sector no where OLT... (1 Reply)
Discussion started by: ghimanshu
1 Replies

10. Filesystems, Disks and Memory

SCSI disk spare sectors

Is there a way to determine the number of available spare sectors on a disk ? as it may be useful for notifying a user to take a backup of the disk before it runs into a medium error. (6 Replies)
Discussion started by: rednex
6 Replies
Login or Register to Ask a Question