LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 09-28-2008, 04:08 PM   #31
matt0007
LQ Newbie
 
Registered: Sep 2008
Posts: 25

Original Poster
Rep: Reputation: 15

SUCCESS!!!!!!!!!!!!!!!!

hugesmp.s root=/dev/sda4 rdinit= nohotplug
booted up to
darkstar login:

said something about having mail from Pavlov


so, what is hotplug, how do fix it and how do i get into GUI?
 
Old 09-28-2008, 04:13 PM   #32
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
You tried my last suggestion ?
boot with: hugesmp.s root=/dev/sda4 rdinit= nohotplug

Your laptop is modern laptop, it should go well with acpi, I don't get it
At this point, I will attempt anything, I see it is delivered with windows vista, so why not let the bios beleive we want to boot windows vista instead of Linux?

Try boot with:
hugesmp.s root=/dev/sda4 acpi_os_name="Windows 2006" rdinit=

("Windows 2006" is the syntax for windows vista, see http://www.mail-archive.com/linux-ac.../msg10394.html)

[edit]
Ok, now try update /etc/lilo.conf with
append="nohotplug"

Congrat

Now follow standard slackware post install procedure:

first create a new user:
adduser
(follow the direction)

Then login into that user account and do:
xwmconfig
(choose your window manager)
then do:
startx

Last edited by keefaz; 09-28-2008 at 04:15 PM.
 
Old 09-28-2008, 04:35 PM   #33
matt0007
LQ Newbie
 
Registered: Sep 2008
Posts: 25

Original Poster
Rep: Reputation: 15
did you want me to boot it with the exact line?
"hugesmp.s root=/dev/sda4 acpi_os_name="Windows 2006" rdinit="
if so, it didn't work again failed at: hda_codec:...

now, when i am using:
hugesmp.s root=/dev/sda4 rdinit= nohotplug

process stops at one point, but i don't manage to read what is says, because some other text comes up
atkbd.c: unknown key was pressed
atkbd.c: unknown key was released
.
.
.
.
like ten times and then it waits for me to press [enter]. when i do, it boots fine to the darkstar login
is it some other error or just it stops due to our parameters entered?

where exactly do i do:
/etc/lilo.conf
append="nohotplug"
when it boots up and I login as root@darkstar?
 
Old 09-28-2008, 04:47 PM   #34
matt0007
LQ Newbie
 
Registered: Sep 2008
Posts: 25

Original Poster
Rep: Reputation: 15
ok so i used hugesmp.s root=/dev/sda4 rdinit= nohotplug, it stopped as i mentioned earlier and this time stayed for a little while, so i had a chance to read it. it said something about root partition being already mounted as read-write and that if i wanted for system to work correctly it should be mounted as read-only. and some instructions how to do that. but I guess- i'll worry about it later


what concerns
/etc/lilo.conf

as soon as i type that in, i get [access denied] message
 
Old 09-28-2008, 04:53 PM   #35
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Yes you have to use a text editor to edit this file, try:

jed /etc/lilo.conf

or:
nano /etc/lilo.conf

(use the one you're confortable with)
Then add the line: append="nohotplug"
in lilo.conf, under the line: root = /dev/sda4
save lilo.conf, then on the linux Console, type: lilo

Just to make sure, your lilo.conf slackware entry should look like:
#Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/sda4
read-only
append = "nohotplug"
label = Linux

Also I forgot the ro option in the line:
hugesmp.s root=/dev/sda4 ro rdinit= nohotplug

(that's where the error about root partition mounted read write come from I guess)

Last edited by keefaz; 09-28-2008 at 05:14 PM.
 
Old 09-28-2008, 05:15 PM   #36
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,353

Rep: Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590
try installing 12.1 using the huge.s kernel at the boot prompt at the begining of the installation.
 
Old 09-28-2008, 05:25 PM   #37
matt0007
LQ Newbie
 
Registered: Sep 2008
Posts: 25

Original Poster
Rep: Reputation: 15
i edited it, rebooted and now it's booting fine from my hd. i think from here i'll manage myself

i would like to thank you keefaz, and other guys who replied, so much for all your help. it's not called comunity-driven OS for nothing i see soon, i'll learn a little bit about linux and be back here helping others.
keefaz, if you're ever round london, give me a shout mantas1984@yahoo.com i'll buy you a drink

p.s. i know i'm being lazy here, but could you explain to me a little bit more in deph what is hotplug, apci and why mordern laptops should work with one but not the other and now that lilo has apend="nohotplug" is it disabling some device on my machine?
 
Old 09-28-2008, 05:34 PM   #38
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Linux drivers are called modules.
The job of hotplug is to detect your hardware and load the corresponding modules.
But sometimes it fails to detect the hardware or load a wrong module,
in this case the solution is to put the module on a blacklist, hotplug will not attempt to load the modules in the blacklist, the blacklist is: /etc/modprobe.d/blacklist

Now you have to find the module that possibly causes problem with hotplug, you could run:
/etc/rc.d/rc.udev start
and then: dmesg
see all error on output and from that find the wrong module
But I am not expert and I could be wrong on that, for now the only thing we know is that your system needs "nohotplug" kernel parameter to boot proprelly...


When you don't want to use hotplug, you can load the modules "by hand", eg modprobe <module name>
There is a script: /etc/rc.d/rc.modules*
You make it executable: chmod +x /etc/rc.d/rc.modules*
and you write the module you want to load in it, following the modprobe syntax (present in this file)

Last edited by keefaz; 09-28-2008 at 05:43 PM.
 
Old 09-28-2008, 05:43 PM   #39
matt0007
LQ Newbie
 
Registered: Sep 2008
Posts: 25

Original Poster
Rep: Reputation: 15
btw,

when i edited lilo, i got 3 warnings:
1.LBA32 addressing assumed
2.Unable to determine video adapter in use in the present system.
3.Video adapter does not support VESA BIOS extentions needed for display of 256 colors.Boot loader will fall back to the text only operation.

should i be worried about it? and is it the consequence of hotplug being disabled?
 
Old 09-28-2008, 05:47 PM   #40
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
For hotplug, I tried to explain, see my edited post
1. LBA32 assumed, you have an extended partition made windows style, it is ok
2& 3: it is ok, unless you want display a nice background image in lilo boot, but it is only esthetic thing

You can add lba32 line in /etc/lilo.conf to avoid the lba32 warning,
add this line: lba32
(near the top of lilo.conf, like under "timeout ..." line)
Then run: lilo
to take the change in account

Last edited by keefaz; 09-28-2008 at 05:52 PM.
 
Old 09-28-2008, 05:54 PM   #41
matt0007
LQ Newbie
 
Registered: Sep 2008
Posts: 25

Original Poster
Rep: Reputation: 15
i'll worry about it later. thanx once again

Last edited by matt0007; 09-28-2008 at 06:13 PM.
 
Old 09-29-2008, 12:39 AM   #42
bobaye
Member
 
Registered: Dec 2006
Location: Riverside CA
Distribution: Slackware first, then everything else
Posts: 48

Rep: Reputation: 15
Good show matt, that was the most tenacious show of install grit I've seen.
Glad to see it's working.
No small work work on the part of keefaz either ;-)
 
  


Reply

Tags
boot



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
advent 7086 - Slackware and GFX Drivers ellion Linux - Newbie 7 08-13-2006 01:57 PM
the very first slackware 10 boot after installation rsumbeling Slackware - Installation 3 11-11-2004 09:51 PM
slackware 10 first boot after installation rsumbeling Slackware 2 11-08-2004 07:52 AM
Fresh Slackware 9.1 installation requires boot disk to boot smithtodda Slackware - Installation 7 06-23-2004 09:06 PM

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

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