LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 05-15-2016, 06:04 AM   #1
VisionIncision
Member
 
Registered: Dec 2011
Location: Wiltshire, UK
Distribution: Slackware, Gentoo
Posts: 130

Rep: Reputation: 3
Post install mount issues.


Hi all,
I am having some issues installing Slackware64 14.1 on one of my old laptops. Following the install I am receiving the following during the boot process:-

Code:
EXT3-fs (sda7): error: couldn't mount because of unsupported optional features (240)
EXT2-fs (sda7): error: couldn't mount because of unsupported optional features (240)
EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
It appears that as a result my inittab file cannot be found.

The laptop previously had Debian, but I have since wiped the partition table and removed GPT.

EDIT:- It appears that this is not the issue causing my system to not boot, so there must be another reason why my inittab file isn't found. I have done multiple reinstalls and it is the same issue. Are there any common, known causes for such behaviour on a new install?

Upon booting I receive the following error:-
Code:
INIT: No inittab file found
Enter runlevel:
When I enter a runlevel(single user mode for example), I receive the following:-
Code:
INIT: Entering runlevel: 1
INIT: no more processes left in this runlevel
If I bypass INIT as suggested below I get a bash shell, so the kernel boots ok.

EDIT 2:- The plot thickens. If I install to one partition, I can boot up just fine.

If anybody has any insight, or suggestions it would be greatly appreciated

Last edited by VisionIncision; 05-15-2016 at 11:48 AM.
 
Old 05-15-2016, 06:12 AM   #2
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,905

Rep: Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026Reputation: 5026
That's just the kernel trying to mount the filesystem as ext2/3 before using ext4, and should be non-fatal. You can avoid the messages by adding rootfstype=ext4 to your kernel options (e.g. append= in lilo.conf).

If your system is failing to boot, then it's unlikely to be because of these and you need to look for other clues.
 
4 members found this post helpful.
Old 05-15-2016, 06:14 AM   #3
VisionIncision
Member
 
Registered: Dec 2011
Location: Wiltshire, UK
Distribution: Slackware, Gentoo
Posts: 130

Original Poster
Rep: Reputation: 3
Quote:
Originally Posted by GazL View Post
That's just the kernel trying to mount the filesystem as ext2/3 before using ext4, and should be non-fatal. You can avoid the messages by adding rootfstype=ext4 to your kernel options (e.g. append= in lilo.conf).

If your system is failing to boot, then it's unlikely to be because of these and you need to look for other clues.
Hmm, that's interesting, thanks.
 
Old 05-15-2016, 10:52 AM   #4
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,614
Blog Entries: 19

Rep: Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460
It would be useful if you posted the end of your boot messages, i.e. the bit where the fatal error occurs. You say that init can't find the inittab file but you haven't shown us the message which tells you that.

You might also like to try bypassing init by using the the kernel option "init=/bin/bash". If you really have an init problem and not a kernel panic, that should boot you straight into a shell.
 
Old 05-15-2016, 11:27 AM   #5
VisionIncision
Member
 
Registered: Dec 2011
Location: Wiltshire, UK
Distribution: Slackware, Gentoo
Posts: 130

Original Poster
Rep: Reputation: 3
Quote:
Originally Posted by hazel View Post
It would be useful if you posted the end of your boot messages, i.e. the bit where the fatal error occurs. You say that init can't find the inittab file but you haven't shown us the message which tells you that.

You might also like to try bypassing init by using the the kernel option "init=/bin/bash". If you really have an init problem and not a kernel panic, that should boot you straight into a shell.
My apologies, I have updated the original post to be a little more useful. May I ask, when bypassing INIT as you suggested, should I expect none of my partitions to be mounted at this point?

Thanks.
 
Old 05-15-2016, 12:38 PM   #6
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,614
Blog Entries: 19

Rep: Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460Reputation: 4460
Definitely an init problem then. Probably your inittab file is corrupt. That's been known to happen after updates. Google the error message and you'll see some cases where that's precisely what happened.

Next step is to post the file here so we can all have a look at it.

As far as mounting is concerned: after booting the kernel, you have access to the root partition (probably read only) because the kernel was told to mount it on /. The other partitions will not be mounted because that's done by the init scripts.
 
Old 05-15-2016, 01:32 PM   #7
Gerard Lally
Senior Member
 
Registered: Sep 2009
Location: Leinster, IE
Distribution: Slackware, NetBSD
Posts: 2,184

Rep: Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765Reputation: 1765
Quote:
Originally Posted by VisionIncision View Post
The laptop previously had Debian, but I have since wiped the partition table and removed GPT.
Are you sure you removed all traces of the GPT partition setup? Please note that GPT stores partition information at end of disk as well. Before partitioning I usually wipe beginning and end of disk with dd:

Code:
# WARNING for those new to Linux: do not use the following commands on a disk where
# you have stored important data
dd if=/dev/zero of=/dev/sda bs=512 count=8192
dd if=/dev/zero of=/dev/sda seek=<number of sectors minus a few thousand>
(Yes I do wipe far more than I need to but it doesn't take long.)

Last edited by Gerard Lally; 05-15-2016 at 01:34 PM.
 
  


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
Cannot mount cdrom in kickstart post-install VG1 Linux - Enterprise 3 05-20-2009 10:37 AM
Post Install Issues toasty_ghosty Slackware 17 09-18-2007 04:02 PM
Fedora Core 3 Post Install Issues symonphoenix Fedora 2 01-25-2005 11:08 AM
Mandrake 9.2 Post Install Issues eddieman Linux - Newbie 2 01-11-2004 04:33 PM
Post-install LILO issues underscorebleac Red Hat 9 09-19-2003 11:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:31 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