LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-20-2011, 12:41 PM   #1
pollyVent
LQ Newbie
 
Registered: Dec 2011
Posts: 6

Rep: Reputation: Disabled
boot problem pls help


When I boot my Linux RHEL system, I get the following error:

Checking root filesystem
fsck.ext3: No such file or directory while trying to open /dev/VolGroup00/LogVol00 ..................... [Failed]

***An error occurred during the file system check.
***Dropping you to a shell; the system will reboot
***when you leave the shell.
Give root password for maintenance (or type Control-D to continue):

(Repair Filesystem) 1 #

i want to resolve this problem without reisntalling the OS
 
Old 12-20-2011, 01:21 PM   #2
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by pollyVent View Post
When I boot my Linux RHEL system, I get the following error:

Checking root filesystem
fsck.ext3: No such file or directory while trying to open /dev/VolGroup00/LogVol00 ..................... [Failed]

***An error occurred during the file system check.
***Dropping you to a shell; the system will reboot
***when you leave the shell.
Give root password for maintenance (or type Control-D to continue):

(Repair Filesystem) 1 #
i want to resolve this problem without reisntalling the OS
Sorry, not enough information here. Looks like you installed to a logical volume, and the device isn't found. But without knowing how you installed, to what hardware, partitioning, etc., there's not much we can tell you.

However, since you're using RedHat Enterprise, you can call RedHat support for help, since you are paying for RHEL, right? They can walk you through lots over the phone, and tell you some options we may not know about here.
 
Old 12-20-2011, 01:26 PM   #3
pollyVent
LQ Newbie
 
Registered: Dec 2011
Posts: 6

Original Poster
Rep: Reputation: Disabled
last week i cannot login to my server, so ive tried to recover it using grub. but unfortunately grub also has a password and i dont know it. so i used the installation DVD to run the linux rescue. i tried to edit the grub.conf then comment the md5 password. ive rebooted the system and boot into single user mode using grub to create a new root password using passwd and reboot the system and successfully login as root. then i tried to execute ll command but theres an error message something like cannot alocate memory(i cant remember the error message).
after 4 days, again i cannot login so ive tried the same solution but sadly to say i cant rebbot my system normally
 
Old 12-20-2011, 01:27 PM   #4
pollyVent
LQ Newbie
 
Registered: Dec 2011
Posts: 6

Original Poster
Rep: Reputation: Disabled
my rhel support was already expired and last 2010 and we did not renew our subscription
 
Old 12-20-2011, 01:35 PM   #5
singhharmeet
LQ Newbie
 
Registered: Dec 2011
Posts: 21

Rep: Reputation: Disabled
your gurb boot loader is pointing to load filesystem from your partition which is not being found.
or simply grub is unable to find root partition.
u can troubleshoot this with the help of grub menu,
at grub menu press c to go to grub prompt.
it will be something like this
grub >
type this command
grub> find /grub/grub.conf
GRUB should return the partition with the /boot directory. In this case, it’s the first
partition on the first hard drive:
(hd0,0)
you may have to edit grub.conf file or you may have to edit /etc/fstab file
in worst case you partition may have gone bad
hope this helps !!
 
Old 12-20-2011, 02:02 PM   #6
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by pollyVent View Post
last week i cannot login to my server, so ive tried to recover it using grub. but unfortunately grub also has a password and i dont know it. so i used the installation DVD to run the linux rescue. i tried to edit the grub.conf then comment the md5 password. ive rebooted the system and boot into single user mode using grub to create a new root password using passwd and reboot the system and successfully login as root. then i tried to execute ll command but theres an error message something like cannot alocate memory(i cant remember the error message).
after 4 days, again i cannot login so ive tried the same solution but sadly to say i cant rebbot my system normally
...and...
Quote:
Originally Posted by pollyVent
my rhel support was already expired and last 2010 and we did not renew our subscription
You are still not providing ANY useful details. Just telling us you cannot log in to your server, and hinting at some unspecified error message tells us nothing.

Again, it seems you're booting from a logical volume...either the device is bad, or (without the password), it can't be mounted/read. Without actual DETAILS about your setup, we can't help. If this is a production server at your company, call RedHat, pay for support TODAY, and they will help you.
 
Old 12-20-2011, 02:29 PM   #7
pollyVent
LQ Newbie
 
Registered: Dec 2011
Posts: 6

Original Poster
Rep: Reputation: Disabled
this is a production server. we cannot afford to pay or renew our subscription now because of company financial crisis. so were here to seek some advices and solutions
 
Old 12-20-2011, 02:32 PM   #8
pollyVent
LQ Newbie
 
Registered: Dec 2011
Posts: 6

Original Poster
Rep: Reputation: Disabled
to singhharmeet, i tried ur advice and the output is (hd0,0)
 
Old 12-20-2011, 02:51 PM   #9
singhharmeet
LQ Newbie
 
Registered: Dec 2011
Posts: 21

Rep: Reputation: Disabled
try using this and check if the configuration files are okay and point correctly towards your root partition in read only mode:

grub > cat grub.conf (display contents of file )

and also check your /etc/fstab file with:

grub> cat /etc/fstab (displays content of file )

see if the files have correct configurations

if files are okay...
try this ( following is just an example press tab twice to enter correct kernel ):
grub > kernel /vmlinuz-2.6.32-71.el6.x86_64 ro root=/dev/sda1
then press enter
and then:
grub > initrd /initrd-2.6.32-55.el6.i686.img
press enter
then type
grub > boot
 
Old 12-20-2011, 03:14 PM   #10
pollyVent
LQ Newbie
 
Registered: Dec 2011
Posts: 6

Original Poster
Rep: Reputation: Disabled
i cannot check the content of grub.conf,/etc/fstab using cat file not found when i execute. could you post here where can i find this or maybe the path in grub mode>
 
Old 12-20-2011, 03:38 PM   #11
singhharmeet
LQ Newbie
 
Registered: Dec 2011
Posts: 21

Rep: Reputation: Disabled
try this
grub> cat (hd0,0) /grub/grub.conf
grub> cat (hd0,0) /etc/fstab
 
  


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
slackware 13.37 boot problem .pls help stergios31L2 Linux - Newbie 5 06-18-2011 09:09 AM
Boot problem(pls help me) Ganja Linux - Newbie 3 02-23-2005 04:04 PM
boot errors again. 6 down 2 to go, pls help marlor Slackware 3 07-08-2004 06:47 AM
DUAL BOOT - WIN XP cant be seen/boot on boot - pls help Bluiee Linux - Newbie 1 05-25-2004 05:29 AM
pls pls pls help me ! i'm tired with httpd config on fedora apache 2.0.48 AngelOfTheDamn Fedora 0 01-24-2004 05:12 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:09 AM.

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