LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - Installation
User Name
Password
Slackware - Installation This forum is for the discussion of installation issues with Slackware.

Notices


Reply
  Search this Thread
Old 10-06-2006, 06:28 AM   #1
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Rep: Reputation: 75
Installing the 2.6 modules for a new 11.0 installation


If you install the huge2.6 kernel in a slackware 11.0 installation you need to then install the modules from the cd.

I do not see how to do this. Can it be done during the installation process? Do you need to install then boot into the new installation and install? If the modules are not there how are you going to boot into the new installation to install the modules?
 
Old 10-06-2006, 06:36 AM   #2
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
AFAIK you reboot and then install the modules. I can just say that it worked here fine, although I have for example a SATA drive, which worked well with the plain huge26.s kernel (without modules when I first booted).
 
Old 10-06-2006, 06:51 AM   #3
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Original Poster
Rep: Reputation: 75
My concern is that I have a cordless keyboard operating through a usb port and I will not be able to type anything without the modules. I guess I'll just have to try it and see.
 
Old 10-06-2006, 07:07 AM   #4
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Quote:
Originally Posted by arubin
My concern is that I have a cordless keyboard operating through a usb port and I will not be able to type anything without the modules. I guess I'll just have to try it and see.
Hi,

If you use the huge26 kernel there should be no problems. If there is a problem with the keyboard, do you have a spare 101 to temporarily use? The keyboard should init through the usb with no problems. Watch the keyboard init and link activity with the usb wireless interface.

Check the Changelog;
Code:
kernels/huge26.s/*:  Fixed USB keyboard support in the installer
(at least anyone on the box set up e.g. a keyboard logger?
 
Old 10-08-2006, 02:38 PM   #5
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Original Poster
Rep: Reputation: 75
Having looked at the extras directory I realise that I want an smp enabled kernel (I have dual core).

So what is the order of doing things? Do I need to recompile the kernel before I install these packages?

Thanks.

Alan
 
Old 10-08-2006, 08:48 PM   #6
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Slackware, Debian, OpenBSD
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
Quote:
Originally Posted by arubin
Having looked at the extras directory I realise that I want an smp enabled kernel (I have dual core).

So what is the order of doing things? Do I need to recompile the kernel before I install these packages?

Thanks.

Alan
1. When the 1st install cd finishes booting up type F2 then F3 which will give you a complete list of the kernels that are available.
2. Type in the smp enabled kernel hit enter.
3. Install slackware. When prompted install the smp enabled kernel from the cd.
4. Reboot.
5. Log-on as root, insert cd. At run level three mount cd and navigate to the directory containing modules, headers. Install kernel headers, modules with the installpkg command.
You shouldn't need to re-compile the smp kernel to install the modules, headers.
 
Old 10-09-2006, 02:13 AM   #7
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Original Poster
Rep: Reputation: 75
Well I have done the installation already (I used huge26.s). I thought I might be able to replace the kernel by copying from the bzimage file from installation disc 1 but which is the smp enabled kernel? There is only one huge26.s kernel and that seems to be non smp

#
# Processor type and features
#
# CONFIG_SMP is not set
CONFIG_X86_PC=y

My other problem is that I cannot actually boot because the ext3 file system isn't recognised. I think I need an initrd file. How can I install kernel headers etc and do a makeintrd if I cannot even get into the system?
 
Old 10-09-2006, 07:50 AM   #8
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Quote:
Originally Posted by arubin
My other problem is that I cannot actually boot because the ext3 file system isn't recognised. I think I need an initrd file. How can I install kernel headers etc and do a makeintrd if I cannot even get into the system?
Hi,

You could use the install cd1 to boot then;

Code:
mkdir /slack_repair            #make tmp mount point
mount /dev/hda# /slack_repair  #mount your / 
chroot /slack_repair           #chroot to  your /
cd /slack_repair
Now do the work you desire on your install! After you install the modules, headers or whatever needs to be done then reboot. As for the huge26, the kernel has filesystem support for most of the popular filesystems available.
 
Old 10-09-2006, 02:49 PM   #9
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Original Poster
Rep: Reputation: 75
I tried your advice and it seemed to work but boot up still failed with an absent /dev/sdb3

Anyway I re-installed but this time installed the sata.s kernel 2.4 and then booted in and dit the 2.6 and initrd stuff and I now have a working installation.

Thanks
 
Old 10-09-2006, 09:43 PM   #10
gmartin
Member
 
Registered: Mar 2003
Location: PA
Distribution: Slackware 13.37 Linux Reg # 341245
Posts: 285

Rep: Reputation: 40
arubin, there is a 2.6.x smp kernel as part of the slackware 11 package. And it is supported. I'm running it wiht my dual core, sata system without problems.

When you look at /extra/linux-smp-2.6.17.13 you should find
Code:
kernel-headers-smp-2.6.17.13-i386-3
After installing that and making sure lilo.conf is correct, , re-run lilo then install
Code:
kernel-modules-smp-2.6.17.13-i686-3
to get the drivers and reboot.
 
Old 10-10-2006, 02:11 AM   #11
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Original Poster
Rep: Reputation: 75
Thanks. It is working now but I found it easier to install with the 2.4 sata kernel boot into there and the install the 2.6 smp kernel from /extra
 
Old 11-07-2006, 01:27 PM   #12
mestigoth
LQ Newbie
 
Registered: Nov 2005
Posts: 5

Rep: Reputation: 1
After setup before reboot you can install packages.
First exit the installer.
Then changeroot to /mnt "chroot /mnt"
mount CD or DVD "mount /dev/cdrom"
then install the kernel modules or any packages you want.
 
  


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
config modules, y, n, ? for scanner installation gmichel Linux - Newbie 2 02-18-2004 04:57 AM
No modules detected in installation ar1 Linux - Newbie 1 11-30-2003 07:38 PM
Trouble again! Installation - no modules! ar1 Linux - Newbie 0 11-30-2003 11:53 AM
Re: modprobe: Note: /etc/modules.conf is more recent than lib/modules/2.4.9/modules.d Andy.M Linux - General 1 01-24-2002 01:50 AM
Re: modprobe: Note: /etc/modules.conf is more recent than lib/modules/2.4.9/modules.d Andy.M Linux - Newbie 2 01-24-2002 01:40 AM

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

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