- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: can't mount a file system
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
03-31-2004 02:09 AM
03-31-2004 02:09 AM
can't mount a file system
jupiter,sys,root > mount /dev/vg00/lvol9
mount: /dev/vg00/lvol9 needs to be fsck'ed before mounting
mount: warning: if device /dev/vg00/lvol9 is mounted to another system
then do not run fsck
jupiter,sys,root >
Then I launched a fsck on this partition but the problem still here:jupiter,sys,root > fsck /dev/vg00/lvol9
** /dev/vg00/lvol9
** Last Mounted on /mnt
** Phase 1 - Check Blocks and Sizes
CANNOT READ: BLK 1368256
CONTINUE? y
CANNOT READ: BLK 1368256
CONTINUE? y
CANNOT READ: BLK 1368256
CONTINUE? y
FAILED READ OF BLOCK #1368256, RETRIED 2 TIMES
** Phase 2 - Check Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - Check Cyl groups
SUMMARY INFORMATION (INODE FREE) BAD
BAD CYLINDER GROUPS
FIX? y
** Phase 6 - Salvage Cylinder Groups
41254 files, 0 icont, 4336026 used, 216134 free (2334 frags, 26725 blocks)
DISK MEDIA PROBLEMS ENCOUNTERED!
BAD BLOCKS WERE FOUND ON THE DISK.
***** FILE SYSTEM IS NOT CLEAN -- DISK MEDIA PROBLEMS ENCOUNTERED *****
***** FILE SYSTEM WAS MODIFIED *****
jupiter,sys,root >
Can you help me, please ?
And is the pvmove command can solve this problem ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2004 02:16 AM
03-31-2004 02:16 AM
Re: can't mount a file system
While I haven't done a lot with the pvmove, if fsck can't read the blk then pvmove probably wont be able to read the blk either.
In the past this was always a disk replacement situation.
Best regards,
Kent M. Ostby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2004 02:35 AM
03-31-2004 02:35 AM
Re: can't mount a file system
You will need to call HP and get the disk changed.
# mount -o ro /dev/vg00/lvol9 /mnt
# find /mnt | cpio -pcmudv /copy
HTH,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2004 02:35 AM
03-31-2004 02:35 AM
Re: can't mount a file system
I agree with Kent.
DISK MEDIA PROBLEMS ENCOUNTERED
After that I faced this error on fsck three times and solution was only the replacement of disk....well I would say to substitute the disk as soon as possible, also it is about vg00!
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2004 03:25 AM
03-31-2004 03:25 AM
Re: can't mount a file system
Even if I tried to mount the lvol file system, the error is submitted, and the system implies to fsck'ed the partition.
And as in my first message I can't fsck'ed it.
It's really a problem to lose data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2004 03:40 AM
03-31-2004 03:40 AM
Re: can't mount a file system
force the mount and copy the data as soon as possible.
HFS
# mount -f /dev/vg00/lvol4 /mnt
VXFS
# mount -o ro /dev/vg00/lvol4 /mnt
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2004 11:14 PM
04-01-2004 11:14 PM
Re: can't mount a file system
if u could get all the lv's (lvdisplay -v /dev/dsk/lvol9) certainly you can able to move the data thru' pvmove
Add an additional/spare Harddisk.
Try moving only this volume by issuing the following command....
pvmove -n dev/vg00/lvol9
If this has completed successfully, u may try with other volumes to new hdd..
I hope certainly pvmove will help...
All the best
suresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2004 01:01 AM
04-02-2004 01:01 AM
Re: can't mount a file system
if not, remember that fsck does not always clean fs on 1st try.
fsck -o full -y
for 4 or 5 times could be required.
also, I've never tried, but have been told there is an occasional quick fix in
fsdb.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2004 02:20 AM
04-02-2004 02:20 AM
Re: can't mount a file system
dd if=/dev/vg00/rlvol9 of=/dev/vg00/rlvoltmp bs=1024k conv=noerror,sync
NB: the conv option is very interessant (look man pages)
noerror: Do not stop processing on an input error. If the sync conversion symbol is also specified, missing input is replaced with null bytes and processed normally; otherwise, the input block is omitted from the output.
Now, I'll try to reformat my old LV and return data on it.
Thank you all for your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 10:06 PM
04-07-2004 10:06 PM
Re: can't mount a file system
I recreate my lvol9 with -r n (see man page for info)
Just have a look on the link,
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=542133
After that, I reformat my original LV (lvol9)and I have copied data from the newly LV (lvoltmp)
But, I get a problem, my lvol9 becomes full (100%), after verification I found that the lost+found directory contain too files which have about 110 Mo each, and efectively some other files.
Now my question, If I delete files on lost+found directory to get free space, will I have any problem ?
Please your help.