- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- what's "full file system check 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
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
08-07-2005 05:52 PM
08-07-2005 05:52 PM
what's "full file system check required"
I want to mount a volumn group.
I got error as follow....
-----------------------------------------------
# vgchange -a y /dev/vg01
Volume group "/dev/vg01" has been successfully changed.
# mount /dev/vg01/lvol2 /u02
vxfs mount: /dev/vg01/lvol2 is corrupted. needs checking
# fsck /dev/vg01/lvol2
fsck: /etc/default/fs is used for determining the file system type
log replay in progress
file system is not clean, full fsck required
full file system check required, exiting ...
----------------------------------------
what's "full file system check required, exiting "?
The /dev/vg01/lvol1 is working normal ,
and lvol1 is our production volumn.
Can I do only lvol2 for "full "?
Thank you very much
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2005 05:57 PM
08-07-2005 05:57 PM
Re: what's "full file system check required"
fsck -o full /blabla
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2005 06:03 PM
08-07-2005 06:03 PM
Re: what's "full file system check required"
fsck on vxfs simply checks the indent log. If your curruption is beyond this you need to run full fsck. (-o full).
See man page of fsck_vxfs
Regds
TT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2005 06:20 PM
08-07-2005 06:20 PM
Re: what's "full file system check required"
You can do fsck full only for lvol2 as follow:
#fsck -F vxfs -o full /dev/vg01/lvol2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2005 08:07 PM
08-07-2005 08:07 PM
Re: what's "full file system check required"
fsck -o full,nolog /dev/vg01/rlvol2
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2005 08:26 PM
08-07-2005 08:26 PM
Re: what's "full file system check required"
fsck -o full
:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2005 12:31 AM
08-08-2005 12:31 AM
Re: what's "full file system check required"
it's rather
fsck -Fvxfs -o full,nolog /fs
because this is the only way a 'regular' fsck is going to take place.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2005 12:43 AM
08-08-2005 12:43 AM
Re: what's "full file system check required"
# fsck -F vxfs -o full -py
Cheers,
Rajesh