LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 03-05-2008, 10:07 AM   #1
BULPulse
Member
 
Registered: Nov 2007
Location: UK
Distribution: Slackware 13
Posts: 60

Rep: Reputation: 15
Problems with running Slackware after updating????????


I had to update my system so i used
Code:
# wget ftp...../slackware12/patches/packages/* .tgz
which downloaded all the updates i needed, then i run
Code:
# updatepkg * .tgz
and all my updates were done but when i restarted the computer it showed me this:
Code:
 Loading LinuxEBDA is big; kernel setup stack overlaps LILO second stage
after this nothing happens, any suggestions on how to fix it and why it happens?
 
Old 03-05-2008, 10:41 AM   #2
shadowsnipes
Senior Member
 
Registered: Sep 2005
Distribution: Slackware
Posts: 1,443

Rep: Reputation: 73
probably because you didn't read the instructions for some of the updates. While most just require you to restart a service (or reboot), there are kernel patches at this time so you need to run lilo.
 
Old 03-05-2008, 10:53 AM   #3
BULPulse
Member
 
Registered: Nov 2007
Location: UK
Distribution: Slackware 13
Posts: 60

Original Poster
Rep: Reputation: 15
so how can i fix it?
 
Old 03-05-2008, 11:01 AM   #4
shadowsnipes
Senior Member
 
Registered: Sep 2005
Distribution: Slackware
Posts: 1,443

Rep: Reputation: 73
I just thought I would add a little more instruction on how to do this as you probably wiped out all of your kernel images. You will need to boot into linux using a rescue disk, liveCD, or the slackware install cd. From there you will have to:

1) mount your slackware install
Code:
mount -t filesystem_type /dev/device /mnt/mount_dir
Change the parts in italics for your installation.

2) chroot to your installation
Code:
chroot /mnt/mount_dir
Check to make sure you are in your installation by listing some known user directories or something.

3) run lilo
Code:
/sbin/lilo
4) Reboot


Of course, if you still have any working kernel images that weren't upgraded (ie. not one of the official slackware kernel images) then you can just boot into that and run lilo.
 
Old 03-05-2008, 11:04 AM   #5
BULPulse
Member
 
Registered: Nov 2007
Location: UK
Distribution: Slackware 13
Posts: 60

Original Poster
Rep: Reputation: 15
just a quick question would everything be as it was or is it deleted?
 
Old 03-05-2008, 11:07 AM   #6
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
So, to fix it, I would boot the install CD or DVD, then chroot into your HDD environment and then run '/sbin/lilo'.

EDIT: I'm slow poster (I open all threads I choose, then answer them in order), so yes do as shadowsnipes says.

If you do as it says everything will return to normal as if nothing had happened.

Last edited by H_TeXMeX_H; 03-05-2008 at 11:10 AM.
 
Old 03-05-2008, 11:13 AM   #7
shadowsnipes
Senior Member
 
Registered: Sep 2005
Distribution: Slackware
Posts: 1,443

Rep: Reputation: 73
Quote:
Originally Posted by H_TeXMeX_H View Post
EDIT: I'm slow poster (I open all threads I choose, then answer them in order), so yes do as shadowsnipes says.
I do the same thing Sometimes if I have had a tab open for awhile I will reload the page before posting.
 
Old 03-05-2008, 12:57 PM   #8
BULPulse
Member
 
Registered: Nov 2007
Location: UK
Distribution: Slackware 13
Posts: 60

Original Poster
Rep: Reputation: 15
Just to say thank you and that everything worked well
 
Old 03-05-2008, 01:40 PM   #9
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Good to see that fixed it.

Quote:
Originally Posted by shadowsnipes View Post
I do the same thing Sometimes if I have had a tab open for awhile I will reload the page before posting.
Yeah, I should remember to reload once in a while.
 
Old 03-05-2008, 10:33 PM   #10
shadowsnipes
Senior Member
 
Registered: Sep 2005
Distribution: Slackware
Posts: 1,443

Rep: Reputation: 73
BULPulse,

Glad to hear you got everything working! If you haven't already done so, I recommend that you subscribe to the security mailing list. This will help you keep informed of security patches as they come and will show you if any additional steps are needed to complete upgrades.

For information on subscribing I refer you to the slackbook page at http://www.slackbook.org/html/help-o...P-ONLINE-EMAIL.
 
Old 03-05-2008, 10:49 PM   #11
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 293Reputation: 293Reputation: 293
You should also update any .new config files. To find them run:
find /etc -name "*.new"
Then: mv file.comfig.new file.config
See item #12 in changes and hints.txt:
http://slackware.mirrors.tds.net/pub..._AND_HINTS.TXT
 
Old 03-06-2008, 12:17 PM   #12
BULPulse
Member
 
Registered: Nov 2007
Location: UK
Distribution: Slackware 13
Posts: 60

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by shadowsnipes View Post
BULPulse,

Glad to hear you got everything working! If you haven't already done so, I recommend that you subscribe to the security mailing list. This will help you keep informed of security patches as they come and will show you if any additional steps are needed to complete upgrades.

For information on subscribing I refer you to the slackbook page at http://www.slackbook.org/html/help-o...P-ONLINE-EMAIL.
Done!

Quote:
Originally Posted by tommcd

You should also update any .new config files. To find them run:
find /etc -name "*.new"
Then: mv file.comfig.new file.config
See item #12 in changes and hints.txt:
http://slackware.mirrors.tds.net/pub..._AND_HINTS.TXT
Done!
 
  


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
Problems running Slackware 11 on Virtual Machine from WMWare Workstation 5 Daniel-UFF Slackware 1 11-09-2006 07:30 AM
Need help updating firmware on a 8868-6RX bo running Suse coronet_blue Linux - General 0 05-11-2006 10:01 AM
Problems running Wine in Slackware 9.1 kamransoomro84 Linux - Software 2 06-02-2004 08:13 PM
Problems updating Slackware 9.1 2.4.x kernel to 2.6.6 WopMaster8 Slackware 7 06-01-2004 08:32 PM
problems running php on slackware 9.1 uglyugly Slackware 1 01-29-2004 05:22 PM

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

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