- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Couldnt find matching file system:LABEL=/
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
07-10-2004 04:26 AM
07-10-2004 04:26 AM
Couldnt find matching file system:LABEL=/
When i rebooted my LINUX server iam getting an error
"Couldnt find matching file system:LABEL=/"
My /etc/fstab file seems to be ok.
When i run fsck then also iam getting the same error
Kindly help me out in rectifying the same.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2004 05:29 PM
07-10-2004 05:29 PM
Re: Couldnt find matching file system:LABEL=/
Is device with fs labeled "/" connected?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 12:17 PM
07-11-2004 12:17 PM
Re: Couldnt find matching file system:LABEL=/
If you know another way to access your /etc/fstab, and if you remember the filesystem layout (correspondence between partitions and FS's), then edit /etc/fstab and replace all "LABEL=/" by actual partition names.
One method to access your /etc/fstab is to use the installation disk, go thru the installation steps until keyboard selection, then open a text console with CTRL-ALT-F2. Then :
modprobe ext3
mkdir /myroot
mount -t ext3
chroot /myroot
vi /etc/fstab
(do changes)
exit
Warning : if you don't know what you are doing, things can get more complicated !!!
Good luck,
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 01:11 PM
07-11-2004 01:11 PM
Re: Couldnt find matching file system:LABEL=/
If you've not had any sort of catastrophic failure (i.e. you no longer have a root partition at all), then did you possibly migrate to new disks copying data, or have a disk failure, or .. or ... too many options..
Another option (rather than using the partition names in /etc/fstab) is to try re-labeling the partitions using 'e2label
Just a thought...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 05:28 PM
07-11-2004 05:28 PM
Re: Couldnt find matching file system:LABEL=/
I tried mounting the slice /dev/sda5 to /myroot
but it is giving an error
"Not a valid block".
How can i go about in mounting the Filesystem.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 05:38 PM
07-11-2004 05:38 PM
Re: Couldnt find matching file system:LABEL=/
file -s /dev/sda5
If it returns something like 'Linux rev 1.0 ext3 filesystem data (needs journal recovery)', then ok. Good.
If it returns something else, then bad.. very bady.
Either way, try doing a full filesystem check:
fsck -f -y /dev/sda5
It will hopefully find any errors and fix them. Given the error you got when you did the mount though, it doesn't look promising. Have a backup? :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 07:00 PM
07-11-2004 07:00 PM
Re: Couldnt find matching file system:LABEL=/
What is df (df /) command saying.
Are you having the entries in /etc/fstab and /etc/mtab for / and mount point.
/sbin/fdisk /dev/sda5
It will give the way to solve that.
Regards,
Muthukumar.