- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mount proble
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
12-02-2002 06:42 PM
12-02-2002 06:42 PM
mount proble
vxfs mount: /dev/oraarcvg02/lvol1 is corrupted. needs checking
how can i check it?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 06:47 PM
12-02-2002 06:47 PM
Re: mount proble
Try using 'fsck'
# fsck -o full /dev/oraarcvg02/rlvol1
Once the fsck has completed, you should be able to mount your filesystem.
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 07:24 PM
12-02-2002 07:24 PM
Re: mount proble
# fsck -F vxfs -y -o full /dev/oraarcvg02/lvol1
and then mount it afterwards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 10:01 PM
12-02-2002 10:01 PM
Re: mount proble
since the file system is corrupted, you need to check (fsck) that filesystem
#fsck -o full /dev/oraarcvg02/lvol1
then mount the file system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 11:06 PM
12-02-2002 11:06 PM
Re: mount proble
# fsck -F vxfs -y -o full /dev/oraarcvg02/lvol1
you can try to mount the filesystem readonly, backup the datas, re-create the file and restore the datas:
# mount -F vxfs -o ro /dev/oraarcvg02/lvol1 /oraarclog02
---> backup the datas
# newfs -F vxfs /dev/oraarcvg02/rlvol1
# mount -F vxfs /dev/oraarcvg02/lvol1 /oraarclog02
---> restore the datas
Good luck ;-)