LinuxQuestions.org
Help answer threads with 0 replies.
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 02-20-2012, 06:40 AM   #16
Azevedo
Member
 
Registered: Feb 2012
Posts: 36

Original Poster
Rep: Reputation: Disabled

Well it is booting now. But when it prompts for login the usb keyboard won't work
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 02-20-2012, 10:13 PM   #17
Uzuki
LQ Newbie
 
Registered: Jun 2010
Location: Indonesia
Distribution: Slackware, RedHat
Posts: 27

Rep: Reputation: 4
I believe that is another topic, so i suggest you create another one
 
Old 02-20-2012, 11:45 PM   #18
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
Quote:
mkinitrd -c -k 2.8.6.* -m ext4 -f ext4 -r /dev/sdb1
If you need support for usb devices (e.g. mouse, keyboard) then add ':usbhid:ehci-hcd:uhci-hcd' to the -m string.
 
1 members found this post helpful.
Old 05-20-2017, 05:47 AM   #19
duncan_roe
Member
 
Registered: Nov 2008
Posts: 38

Rep: Reputation: 5
I just did some experiments on this which will hopefully shed some light:
- I normally build self-contained kernels which do not require an initrd
- using LABEL= in lilo.conf caused a panic as discussed above
- using LABEL= worked fine with a new initrd.gz created by "mkinitrd -c" and containing no modules at all
- using LABEL= worked fine on an older kernel with the above initrd.gz. Some complaints about "no modules" flashed by

The above were 64-bit kernels. Booting a 32-bit kernel revealed:
- using LABEL= with a 32-bit kernel failed with the 64-bit initrd.gz above. The panic message said

no working init found

So it seems that the LABEL= or UUID= functionality is relying on init (in the initrd) to mount the root partition
 
Old 05-20-2017, 10:58 AM   #20
RadicalDreamer
Senior Member
 
Registered: Jul 2016
Location: USA
Distribution: Slackware64-Current
Posts: 1,816

Rep: Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981
Quote:
Originally Posted by Azevedo View Post
Now I'm back to beggining of my problem:

On reboot, /dev/sdb1 is not the same drive/partition.
I have 4 eSata drivers which can be detected in different orders /dev/sd* on each boot up (because not always all 4 drives are turned on).
So your computer randomly assigns drive numbers at boot? Am I understanding this correctly? Does this include the Slackware operating system? One boot its sda1 and the next its sdb1? One drive with Slackware needs to be consistently sda1 if that is the case.

Here is what I do for lilo using mbr.

mkinitrd -c -k 4.4.19 -m ext4

In lilo.conf:
image = /boot/vmlinuz-generic
initrd = /boot/initrd.gz
root = /dev/sda1
label = Slackware
 
Old 05-20-2017, 11:59 AM   #21
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by duncan_roe View Post
I just did some experiments on this which will hopefully shed some light:
- I normally build self-contained kernels which do not require an initrd
- using LABEL= in lilo.conf caused a panic as discussed above
- using LABEL= worked fine with a new initrd.gz created by "mkinitrd -c" and containing no modules at all
- using LABEL= worked fine on an older kernel with the above initrd.gz. Some complaints about "no modules" flashed by

The above were 64-bit kernels. Booting a 32-bit kernel revealed:
- using LABEL= with a 32-bit kernel failed with the 64-bit initrd.gz above. The panic message said

no working init found

So it seems that the LABEL= or UUID= functionality is relying on init (in the initrd) to mount the root partition
You're correct that LABEL and UUID require an initrd. This is specified in the SlackDocs article concerning using persistent names in lilo.conf and fstab. However, the GPT spec adds PartUUID and PartLABEL (this feature was modified on relatively kernels 3.8 and newer to also work with MBR partitioned drives). You're now able to use PartUUID in your lilo.conf is able to boot the system without an initrd (PartLABEL is not supported for booting).

However, it's usually a good idea to not reply on extremely old posts (this was around 5 years old). It is frowned on by most forums.

@RadicalDreamer, this was a necro post from 2012.
 
2 members found this post helpful.
Old 05-20-2017, 09:57 PM   #22
duncan_roe
Member
 
Registered: Nov 2008
Posts: 38

Rep: Reputation: 5
Thanks for that - I am again booting without an initrd now. LILO itself does not understand PartUUID so you have to use append, as in

append="apm=off root=PARTUUID=0aaac04b-02"
 
Old 05-21-2017, 07:13 AM   #23
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by duncan_roe View Post
Thanks for that - I am again booting without an initrd now. LILO itself does not understand PartUUID so you have to use append, as in

append="apm=off root=PARTUUID=0aaac04b-02"
Yes, that is covered on that wiki page as well.

Quote:
Now, as mentioned above, PARTUUID does not require an initrd (although, it works fine if you do use one). However, lilo is old enough that it doesn't have proper support for it, so there is a workaround to get it working. Instead of referencing root like we did above, we need to replace the root option within an “addappend”. This will add anything extra to the initial append line at the top of lilo.conf. Keep in mind your spaces, as it will be placed directly afterwards, so it might be wise to include an extra space at the beginning of the line to ensure it doesn't accidentally combine words (which would likely cause a kernel panic and prevent you from booting). For me, since my root partition is on a drive with an MBR, I'll have the shortened PARTUUID instead of the regular 32 character length of a proper PARTUUID.

Code:
image = /boot/vmlinuz-generic
addappend = " root=PARTUUID=6f47c81b-02"
label = Slack-partuuid
read-only

image = /boot/vmlinuz-generic
initrd = /boot/initrd-4.4.14.gz
root = "UUID=25a4dafe-bbf2-413f-a60c-8c38efc0a122"
label = Slack-UUID
read-only

image = /boot/vmlinuz-huge
root = /dev/sda2
label = Slack-default
read-only
 
4 members found this post helpful.
  


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
[SOLVED] "Kernel panic" :VFS: Unable to mount root fs on 08:05" rsol4747 Slackware 7 04-20-2011 05:34 AM
"Kernel panic: VFS: Unable to mount root fs" - Kernel fails to boot linux Freedom Seeker Linux - General 11 11-12-2006 07:48 PM
"root=" option for SATA drives to avoid kernel panic neelay1 Linux - Software 1 05-01-2006 01:18 PM
Kernel Panic:VFS: Cannot open root device "hda3" or 00:10 shivendnrab Linux - General 1 07-01-2004 03:08 AM
error:"kernel panic: VFS: Unable to mount root fs":-( shyguy Linux - Newbie 1 07-23-2001 04:03 PM

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

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