- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- VXFS file system - full fsck required
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
Discussions
Discussions
Discussions
Forums
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
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
тАО12-20-2001 02:22 AM
тАО12-20-2001 02:22 AM
VXFS file system - full fsck required
I have the following error message when trying to fsck /usr at single user; anyone know what exactly is a full file system check or indede how it is performed?...is it just a question of typing fsck at the single user prompt?
# fsck /dev/vg00/rlvol7
vxfs fsck: file system had I/O error(s) on meta - data.
log replay in progress
full file system check required, exiting...
Appreciate any replies on this,
Regards,
John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-20-2001 02:27 AM
тАО12-20-2001 02:27 AM
Re: VXFS file system - full fsck required
# fsck -F vxfs -o full /dev/vg00/rlvol7
See the fsck_vxfs man page for more info.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-20-2001 02:27 AM
тАО12-20-2001 02:27 AM
Re: VXFS file system - full fsck required
o repair an inconsistent filesystem, the filesystem should be unmounted first:
umount [mountpoint]
Next step is to do a fsck to check and repair the filesystem:
fsck ???F vxfs ???o full /dev/[vg]/[rlvol]
In some cases the logarea might have been damaged.This requires a:
fsck ???F vxfs ???o full,nolog /dev/[vg]/[rlvol]
After a successfull fsck the filesystem can be remounted again:
mount [mountpoint]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-20-2001 02:33 AM
тАО12-20-2001 02:33 AM
Re: VXFS file system - full fsck required
#fsck -F vxfs -y -o full /dev/vgXX/rlvolY
if all options fails the only way out is to re-create the lvol (lvremove, lvcreate, newfs & mount) then restore data. I hope u have a good bkup.
G'd luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2003 10:15 AM
тАО07-16-2003 10:15 AM
Re: VXFS file system - full fsck required
Thanks