- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FSCK error : file system is larger than device...
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-13-2007 09:36 PM
04-13-2007 09:36 PM
FSCK error : file system is larger than device vxfs fsck: cannot initialize aggregate file system ch
I have imported a Volume group into a server.
It got imported and activated successfully.
Bu when I try to mount the filesystems, they throw an error
vxfs mount: /dev/vgp_gem_d15/lvol_app_PT_backup is corrupted. needs checking
Also, when I try to fsck it gives
root@iran:>fsck /dev/vgp_gem_d15/lvol_opt_oraias
file system is larger than device
vxfs fsck: cannot initialize aggregate
file system check failure, aborting ...
These filesystems were mounted in the original server from I exported them...
Please help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2007 09:58 PM
04-13-2007 09:58 PM
Re: FSCK error : file system is larger than device vxfs fsck: cannot initialize aggregate file system ch
I have seen this on VeritasVolumeManager (VXVM)
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=766639
I guess you could try to translate that to LVM.
--
Check the size of the file system, using fstyp -v, calculating the number of 512 byte sectors determined by the size (in file system blocks) and bsize (bytes / file system block). Compare this to the size of the device (lvdisplay -v lvol).
The device should be smaller than the file system. The solution is to lvextend the device (partition or volume) and then
# fstyp -v /dev/vgp_gem_d15/lvol_opt_oraias
# lvdisplay -v /dev/vgp_gem_d15/lvol_opt_oraias
---
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2007 01:17 AM
04-14-2007 01:17 AM
Re: FSCK error : file system is larger than device vxfs fsck: cannot initialize aggregate file system ch
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2007 08:31 AM
04-14-2007 08:31 AM
Re: FSCK error : file system is larger than device vxfs fsck: cannot initialize aggregate file system ch
fsck the lvol on the exported server and if that's clean try the export/import process again.
~hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2007 11:18 PM
04-15-2007 11:18 PM
Re: FSCK error : file system is larger than device vxfs fsck: cannot initialize aggregate file system ch
vgdisplay -v
lvdisplay
and bdf command output on both nodes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2007 12:41 AM
04-16-2007 12:41 AM
Re: FSCK error : file system is larger than device vxfs fsck: cannot initialize aggregate file system ch
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000079994830
if the link does not open here are the steps
1. Set the appropriate size that the filesystem needs to be (where size is slightly larger by a few PE's.)
# lvextend -L size /dev/vgXX/lvolX
# extendfs /dev/vgXX/rlvolX
2. Do a full file system check
# fsck -F vxfs -o full -y /dev/vgXX/rlvolX
3. You can now mount your filesystem.
# mount /dev/vgXX/lvolXX /mount-pt