LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-22-2005, 07:05 PM   #16
bean.art
LQ Newbie
 
Registered: Nov 2005
Distribution: Fedora Core 4
Posts: 17

Original Poster
Rep: Reputation: 0

e2fsck -f /dev/hda3

prints:

group descriptors look bad... trying backup blocks...
resize inode not valid. Recreate<y>?

Should i recreate????
 
Old 11-22-2005, 07:15 PM   #17
WhatsHisName
Senior Member
 
Registered: Oct 2003
Location: /earth/usa/nj (UTC-5)
Distribution: RHEL, AltimaLinux, Rocky
Posts: 1,151

Rep: Reputation: 46
You’re getting error messages that I don’t usually see.

Something is amiss with hda3 with respect to an ext3 filesystem, so you don’t have much to loose by saying “y”. It doesn’t appear to be functional now and may not be after “y”.
 
Old 11-22-2005, 07:19 PM   #18
bean.art
LQ Newbie
 
Registered: Nov 2005
Distribution: Fedora Core 4
Posts: 17

Original Poster
Rep: Reputation: 0
Well, if I can save my hard drive by taking it to a local computer shop for a hard drive recovery, will hitting <y> wreck any chances I have for saving what's on it??
 
Old 11-22-2005, 07:26 PM   #19
bean.art
LQ Newbie
 
Registered: Nov 2005
Distribution: Fedora Core 4
Posts: 17

Original Poster
Rep: Reputation: 0
I hit <n> and it printed:

Pass 1: checking inodes, blocks, and sizes
Inode 7, i_blocks is 3074, should be 3044. Fix<y>?

I hit <n> to each consequtive question and it told me that the:

filesystem still has errors

I tried it all over again and hit <y> for all questions.
it told me that the file system was modified.

Last edited by bean.art; 11-22-2005 at 07:28 PM.
 
Old 11-22-2005, 07:27 PM   #20
WhatsHisName
Senior Member
 
Registered: Oct 2003
Location: /earth/usa/nj (UTC-5)
Distribution: RHEL, AltimaLinux, Rocky
Posts: 1,151

Rep: Reputation: 46
It will only alter what is in hda3, so the NTFS stuff will be safe.

The worst thing that should happen is that hda3 will still be inaccessible, which is what I think is going to happen.

It’s always remotely possible that you put /boot in the LVM, where grub cannot see it, and that hda3 was never formatted.
 
Old 11-22-2005, 07:29 PM   #21
bean.art
LQ Newbie
 
Registered: Nov 2005
Distribution: Fedora Core 4
Posts: 17

Original Poster
Rep: Reputation: 0
thing is, i've been using fedora on this computer problem free for as long as fedora 4 has been out. It just all of a sudden has problems.

Grub had read the /boot files fine for months now???
 
Old 11-22-2005, 07:33 PM   #22
WhatsHisName
Senior Member
 
Registered: Oct 2003
Location: /earth/usa/nj (UTC-5)
Distribution: RHEL, AltimaLinux, Rocky
Posts: 1,151

Rep: Reputation: 46
Actually, having seen your post #19, it may be recoverable. So answer “y” to the questions. The LVM stuff will still be there.
 
Old 11-22-2005, 07:36 PM   #23
WhatsHisName
Senior Member
 
Registered: Oct 2003
Location: /earth/usa/nj (UTC-5)
Distribution: RHEL, AltimaLinux, Rocky
Posts: 1,151

Rep: Reputation: 46
I’m going to be off-line for several hours, so other readers of this thread should feel free to offer suggestions and encouragement.
 
Old 11-22-2005, 07:36 PM   #24
bean.art
LQ Newbie
 
Registered: Nov 2005
Distribution: Fedora Core 4
Posts: 17

Original Poster
Rep: Reputation: 0
Thankyou WhatsHisName
 
Old 11-22-2005, 07:49 PM   #25
bean.art
LQ Newbie
 
Registered: Nov 2005
Distribution: Fedora Core 4
Posts: 17

Original Poster
Rep: Reputation: 0
I don't know what happened, but it booted!!!!!!!

THanks thakns thanks thanks
 
Old 11-22-2005, 08:35 PM   #26
suchi
Member
 
Registered: Nov 2003
Location: india
Posts: 46
Blog Entries: 1

Rep: Reputation: 15
Just do this:

when the system boots and shows grub,
1. type your "root (hdx,x) " command first
2. then type chainloader +1

This is because there is another grub at the partition where it is installed probably.
Tell me if it works. I load the same way here. If u have grub on a seperate partition instead of MBR, it happens
 
Old 11-22-2005, 08:36 PM   #27
suchi
Member
 
Registered: Nov 2003
Location: india
Posts: 46
Blog Entries: 1

Rep: Reputation: 15
You can also use <tab> to autocomplete grub entries if you want
 
Old 11-23-2005, 11:48 AM   #28
WhatsHisName
Senior Member
 
Registered: Oct 2003
Location: /earth/usa/nj (UTC-5)
Distribution: RHEL, AltimaLinux, Rocky
Posts: 1,151

Rep: Reputation: 46
At some point in the near future, you should backup /boot and run e2fsck on hda3 from rescue mode without mounting the installation.

For example, you could create /root/boot_backup and use “cp -a ...” to create an archival backup of /boot there.

Then, if the hda3 ext3 filesystem could not be fixed using e2fsck, you could reformat it using “mke2fs -j ...” and then use “cp -a ...” to restore the backup copy to /boot.

If you reformatted hda3 as ext3, you would need to either create 2 mount points and then mount hda3 in one and “/” (i.e., the logical volume) in the other so that you could copy from one to the other OR you could reassemble the entire FC4 setup like this:

mkdir /mnt/sysimage
mount /dev/VolGroup00/LogVol00 /mnt/sysimage
mount /dev/hda3 /mnt/sysimage/boot
chroot /mnt/sysimage
cp -a /root/boot_backup/* /boot

If you had other logical volumes for /home, /var, etc., then you should also mount them in a similar manner before using chroot. And the mount point doesn’t have to be named sysimage. It can be anything you want to call it.
 
Old 11-23-2005, 04:10 PM   #29
bean.art
LQ Newbie
 
Registered: Nov 2005
Distribution: Fedora Core 4
Posts: 17

Original Poster
Rep: Reputation: 0
Thanks WhatsHisName

Except that I really understood none of that. If you or someone else could re-explain that to me in really simple newbie language, I'd be so grateful.

Hilary
 
Old 12-01-2005, 06:33 AM   #30
dreamslayer802
LQ Newbie
 
Registered: Dec 2005
Posts: 1

Rep: Reputation: 0
I had a similar problem while installing FC4. Grub apparently didn't fully install. Most of the files were missing in the grub directory. I had Redhat 9 installed on a different computer, so I copied the grub directory to a thumb drive, then copied them back the the FC4 computer using a livecd. After editing grub.conf, I did get it to start loading the image file, without success. I did do lots of things before I figured out that this was the problem. Now I plan to reinstall FC4, and copy the files from my thumb drive afterwards. hope this helps
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to bypass 'Grub' after deleting the Linux partition, so that Windows XP can load? Marion D Poff Linux - Software 11 03-15-2011 03:52 PM
How to rescue partition? (Bad block in disk, reiserfsck stops) gattumarrudu Linux - Hardware 4 06-29-2010 01:47 PM
Installing The Grub Bootloader From Rescue Disk sloik2000 Linux - Software 4 01-20-2005 04:38 PM
Need a boot disk to load Fedora Core 3 duclu Linux - Newbie 17 01-20-2005 11:50 AM
XP won't load...grub hid partition? SamerAdra Mandriva 4 10-21-2004 09:37 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:48 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration