LinuxQuestions.org
Visit Jeremy's Blog.
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-11-2013, 04:59 PM   #1
Yaakov Ben-Avraham
LQ Newbie
 
Registered: Jan 2013
Location: Vancouver, Canada
Distribution: Slackware 14.0
Posts: 25

Rep: Reputation: Disabled
Question Slackware 14.0 installed with HUGE.S does not load modules


I have to use HUGE.S not HUGESMP.S because my 32 bit ISA machine does not have SMP capabilities (HUGESMP.S hangs)

When I install Slackware 14.0 from SETUP , no modules will load. IE

# cat /proc/modules

returns null output.

As can be expected, this causes all kinds of problems.

What is the solution to this bug?
 
Old 02-11-2013, 05:07 PM   #2
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
In the other thread you opened for the same issue, you received this answer: http://www.linuxquestions.org/questi...9/#post4888129 and I think you should have followed up on that instead of creating this new topic.

Please post the output of these commands:
Code:
uname -a
ls /var/log/packages/kernel-*
Eric
 
Old 02-11-2013, 05:16 PM   #3
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
If you didn't install kernel-modules-3.2.29-i486-1.txz, just do that.
 
Old 02-11-2013, 08:29 PM   #4
Yaakov Ben-Avraham
LQ Newbie
 
Registered: Jan 2013
Location: Vancouver, Canada
Distribution: Slackware 14.0
Posts: 25

Original Poster
Rep: Reputation: Disabled
Unhappy

Quote:
Originally Posted by Didier Spaier View Post
If you didn't install kernel-modules-3.2.29-i486-1.txz, just do that.
OK. I have located the txz file, and extracted the tar library. Since I am a newbie, can you please explain step by step how I install these modules from the tar library?

Humbly needing your assistance,

Yaakov
 
Old 02-12-2013, 12:44 AM   #5
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,844

Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
DO NOT extract the .txz file. From the directory where have the .txz file, do this as root:

Code:
installpkg kernel-modules-3.2.29-i486-1.txz
Then reboot.
 
Old 02-12-2013, 11:12 AM   #6
Yaakov Ben-Avraham
LQ Newbie
 
Registered: Jan 2013
Location: Vancouver, Canada
Distribution: Slackware 14.0
Posts: 25

Original Poster
Rep: Reputation: Disabled
Unhappy

I typed the following after extracting the .txz file

# installpkg kernel-modules-3.2.29-i486-1.txz

and was told that the package was installed successfully.
I next rebooted. Then

# cat /proc/modules

still returned NO installed modules
and FUSE was not available.

How now brown cow?
 
Old 02-12-2013, 03:31 PM   #7
tuxbg
Member
 
Registered: Sep 2012
Location: Bulgaria,Varna
Distribution: Slackware64
Posts: 249

Rep: Reputation: Disabled
Code:
slackpkg reinstall kernel-modules
 
Old 02-12-2013, 03:34 PM   #8
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
Please first send output of commands as requested by Alien Bob on post #2
 
Old 02-12-2013, 03:48 PM   #9
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,498

Rep: Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450
Quote:
Originally Posted by Yaakov Ben-Avraham View Post
I typed the following after extracting the .txz file

# installpkg kernel-modules-3.2.29-i486-1.txz

and was told that the package was installed successfully.
I next rebooted. Then

# cat /proc/modules

still returned NO installed modules
and FUSE was not available.

How now brown cow?
If you were missing one critical package, you might be missing more. You might consider running upgradepkg --install-new *.t?z in every slackware subdirectory (slackware/a, slackware/ap, etc) with the possible exception of the kdei directory.
 
Old 02-13-2013, 04:45 PM   #10
Yaakov Ben-Avraham
LQ Newbie
 
Registered: Jan 2013
Location: Vancouver, Canada
Distribution: Slackware 14.0
Posts: 25

Original Poster
Rep: Reputation: Disabled
Unhappy

Quote:
Originally Posted by tuxbg View Post
Code:
slackpkg reinstall kernel-modules
Unfortunately I cannot do that easily, because ETH0 (and hence the Internet) is not accessible on my Slackware 14.0 system I need to know how to do the reinstall without accessing the mirrors - just the Slackware 14.0 distribution DVD as sold by The Slackware Store.

p.s. Slackware 13.37 booted the HUGESMP.S kernel just fine, only 14.0 hangs when booting the HUGESMP.S kernel?!
 
Old 02-13-2013, 05:46 PM   #11
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
Please first send output of commands as requested by Alien Bob on post #2
 
Old 02-13-2013, 06:14 PM   #12
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,498

Rep: Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450
Quote:
Originally Posted by Yaakov Ben-Avraham View Post
Unfortunately I cannot do that easily, because ETH0 (and hence the Internet) is not accessible on my Slackware 14.0 system I need to know how to do the reinstall without accessing the mirrors - just the Slackware 14.0 distribution DVD as sold by The Slackware Store.

p.s. Slackware 13.37 booted the HUGESMP.S kernel just fine, only 14.0 hangs when booting the HUGESMP.S kernel?!
How about mounting the dvd on /mnt and trying the upgradepkg fix, as I suggested previously?

I'll even give you a complete command line to do it:

mount /dev/sr0 /mnt
upgradepkg --install-new /mnt/slackware*/{a,ap,d,e,f,k,kde,l,n,t,tcl,x,xap,xfce,y}/*.t?z
 
Old 02-13-2013, 06:28 PM   #13
Yaakov Ben-Avraham
LQ Newbie
 
Registered: Jan 2013
Location: Vancouver, Canada
Distribution: Slackware 14.0
Posts: 25

Original Poster
Rep: Reputation: Disabled
Post

Quote:
Originally Posted by Didier Spaier View Post
Please first send output of commands as requested by Alien Bob on post #2
/var/log/packages/kernel-firmware-20120804git-noarch-1
/var/log/packages/kernel-generic-3.2.29-i486-1
/var/log/packages/kernel-generic-smp-3.2.29_smp-i686-1
/var/log/packages/kernel-headers-3.2.29_smp-x86-1
/var/log/packages/kernel-huge-3.2.29-i486-1
/var/log/packages/kernel-huge-smp-3.2.29_smp-i686-1
/var/log/packages/kernel-modules-3.2.29-i486-1
/var/log/packages/kernel-modules-smp-3.2.29_smp-i686-1
/var/log/packages/kernel-source-3.2.29_smp-noarch-1
 
Old 02-13-2013, 06:33 PM   #14
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,498

Rep: Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450Reputation: 8450
You missed the output of "uname -a", which would allow us to see if for some reason you were still running an old kernel.

Was this a fresh installation, or did you install over the top of something that was already there? If the latter, that could lead to all kinds of problems... but, if so, adding --reinstall to that upgradepkg command line would still be able to help clean up the mess, along with the suggestions in UPGRADE.TXT for removing obsolete packages and handling .new config files.
 
Old 02-13-2013, 07:33 PM   #15
Yaakov Ben-Avraham
LQ Newbie
 
Registered: Jan 2013
Location: Vancouver, Canada
Distribution: Slackware 14.0
Posts: 25

Original Poster
Rep: Reputation: Disabled
Post

Quote:
Originally Posted by volkerdi View Post
You missed the output of "uname -a", which would allow us to see if for some reason you were still running an old kernel.

Was this a fresh installation, or did you install over the top of something that was already there? If the latter, that could lead to all kinds of problems... but, if so, adding --reinstall to that upgradepkg command line would still be able to help clean up the mess, along with the suggestions in UPGRADE.TXT for removing obsolete packages and handling .new config files.
# uname -a

Linux eyes 2.6.37.6 #2 Sun Apr 10 01:09:12 CDT 2011 i686 Intel(R) Pentium(R) III CPU-S 1400 MHz GenunineIntel GNU/Linux

I am running the non-SMP kernel because Slackware 14.0 HUGESMP.S image hangs
when booting from DVD (Slackware 13.37 HUGESMP.S works from DVD)

This was a fresh installation on a virgin disk.

Last edited by Yaakov Ben-Avraham; 02-13-2013 at 07:38 PM. Reason: Noted that 13.37 HUGESMP.S image boots
 
  


Reply

Tags
32-bit, modules, smp



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
modprobe: FATAL: Could not load /lib/modules/.../modules.dep Ankardo Debian 9 02-01-2011 05:09 PM
Slackware 13.1 huge smp is not huge cs_strong Slackware 4 11-16-2010 07:41 AM
Cant load modules for usb in SlackWare 12.2 mike1312 Slackware 2 01-07-2009 05:17 PM
Modules wont load, slackware 10.2 lrolstad Linux - Laptop and Netbook 5 09-15-2006 04:15 AM
FATAL: Could not load /lib/modules/2.6.14-default/modules.dep no such file exist dr_zayus69 Linux - Software 3 12-26-2005 06:44 PM

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

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