LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 11-10-2013, 06:52 AM   #16
Bertman123
Member
 
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380

Rep: Reputation: 77

Quote:
Originally Posted by hitest View Post
Yeah. That advice assumed the use of lilo(he is using GRUB). I'm not sure that is the best route to follow.
I just upgraded my tower that way and had no issues, though I use lilo and not grub, so can't comment on that part.
 
1 members found this post helpful.
Old 11-10-2013, 09:27 AM   #17
psionl0
Member
 
Registered: Jan 2011
Distribution: slackware_64 14.1
Posts: 722
Blog Entries: 2

Rep: Reputation: 125Reputation: 125
I had a laptop which ran well on Slackware 13.1 but when I upgraded to LEET it didn't cope very well (mind you, the 13.6.37.6 kernel had a lot to answer for).

I currently have a netbook with an intel atom processor and 1 GB memory running 32-bit Slackware 14.0 and a PC with 2 GB memory running 64-bit Slackware 14.0. Both work marvelously.

Will they work equally as well if I upgrade to 14.1 or will their resources be tested?
 
Old 11-10-2013, 11:01 AM   #18
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Slackware
Posts: 7,471

Rep: Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902Reputation: 3902
Quote:
Originally Posted by Bertman123 View Post
I just upgraded my tower that way and had no issues, though I use lilo and not grub, so can't comment on that part.
Yes. That has worked for me as well. The important piece is to edit /etc/slackpkg/slackpkg.conf and set DOWNLOAD_ALL=off to on. This way you download all of the software before you start the upgrade process. The default for Slackware 14.0 is DOWNLOAD_ALL=off.
I will be curious to hear if the upgrade can be done with GRUB.
 
Old 11-10-2013, 12:19 PM   #19
BCarey
Senior Member
 
Registered: Oct 2005
Location: New Mexico
Distribution: Slackware
Posts: 1,639

Rep: Reputation: Disabled
Quote:
Originally Posted by Didier Spaier View Post
Kinda? Using slackpkg is an alternate method. UPGRADE.TXT being written by Patrick Volkerding, you can safely consider the method proposed there as recommended
OK, but the how-to referenced by Stuferus was written by Eric H., so while maybe not "official", it can be strongly trusted. It also addresses the issues raised by jtsn about installing and testing the kernel first, upgrading glibc-solibs before other things, etc. Really, you can use slackpkg blindly, or in conjunction with the instructions in UPGRADE.TXT to simply speed the process (like not having to manually uninstall all the removed packages). This seems to be the approach in the referenced how-to, which goes well beyond simply issuing 4 or 5 commands.

Brian
 
1 members found this post helpful.
Old 11-10-2013, 12:46 PM   #20
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,355

Rep: Reputation: Disabled
Quote:
Originally Posted by BCarey View Post
OK, but the how-to referenced by Stuferus was written by Eric H., so while maybe not "official", it can be strongly trusted.
Indeed. Did I say otherwise?
 
Old 11-10-2013, 01:00 PM   #21
Stuferus
Member
 
Registered: Jun 2013
Location: Germany
Distribution: Slackware
Posts: 174

Rep: Reputation: Disabled
i think useing upgrade.txt and slackpkg both is a good way.. i dont want to look (for example) after every single new config file.. that would take a while to long.. so i think ill use slackpkg new-config to speed it up (if its really possible, i only did think about it a short while now).

as i have a serial console connection (nice 15m cable with 9600bps), as my system for example is headless, ill have no problem with singleuser mode - i think..
 
Old 11-10-2013, 01:22 PM   #22
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773
Quote:
Originally Posted by Stuferus View Post
i dont want to look (for example) after every single new config file.. that would take a while to long..
Code:
find /etc -name '*.new'
 
Old 11-10-2013, 02:11 PM   #23
Stuferus
Member
 
Registered: Jun 2013
Location: Germany
Distribution: Slackware
Posts: 174

Rep: Reputation: Disabled
Quote:
Originally Posted by ruario View Post
Code:
find /etc -name '*.new'
i still would have to look at every one manualy with an edtior wouldnt i? or are you hinting slackpgk new-config will not work?
 
Old 11-10-2013, 02:54 PM   #24
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,355

Rep: Reputation: Disabled
Quote:
Originally Posted by Stuferus View Post
i still would have to look at every one manualy with an edtior wouldnt i? or are you hinting slackpgk new-config will not work?
slackpkg and find command ruario gave you roughly do the same thing. Whatever the method, better have a look at every file if you want to stay in control of your system.
 
Old 11-10-2013, 03:02 PM   #25
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773
Quote:
Originally Posted by Stuferus View Post
i still would have to look at every one manualy with an edtior wouldnt i?
It is fairly easy to knock up a quick for loop to diff the new files to their current version, e.g.

Code:
for c in $(find /etc -name '*.new'); do echo $c:; diff $(dirname $c)/$(basename $c .new) $c; done
Quote:
or are you hinting slackpgk new-config will not work?
Nope, not at all, slackpkg automates this stuff nicely. I'm just comment that it can fairly easily (IMHO) be done without touching slackpkg if you so desire.
 
Old 11-10-2013, 03:12 PM   #26
BCarey
Senior Member
 
Registered: Oct 2005
Location: New Mexico
Distribution: Slackware
Posts: 1,639

Rep: Reputation: Disabled
Quote:
Originally Posted by Didier Spaier View Post
Indeed. Did I say otherwise?
Sorry if I misunderstood the implication of your post. It seemed to me that you were steering him away from slackpkg.

Brian
 
Old 11-10-2013, 03:21 PM   #27
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773Reputation: 1773
Lots of people use slackpkg to handle the distro upgrade, including many very experienced users and even members of the Slackware team. It apparently works very nicely for them but as long as UPGRADE.TXT doesn't list it, it is not an official upgrade method.

Just to be clear, that is not a comment on if I personally think it is good or bad.
 
Old 11-10-2013, 04:16 PM   #28
Stuferus
Member
 
Registered: Jun 2013
Location: Germany
Distribution: Slackware
Posts: 174

Rep: Reputation: Disabled
ok, ruario, understood
 
Old 11-10-2013, 08:07 PM   #29
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,860

Rep: Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230
slackroll does a pretty good job too. (http://rg3.github.io/slackroll/)
 
1 members found this post helpful.
Old 11-11-2013, 06:24 PM   #30
TroN-0074
Senior Member
 
Registered: Dec 2011
Location: Michigan USA
Distribution: OpenSUSE 13.2 64bit-Gnome on ASUS U52F
Posts: 1,444

Original Poster
Rep: Reputation: 340Reputation: 340Reputation: 340Reputation: 340
Thank you all.
I am all set with SlackWare 14.1. I went with AlienBob's how to. It worked I just skipped the LILO installation and let it proceed. It took all day of running stuff on terminal once it was done I booted on Arch and updated the GRUB from there, then reboot and GRUB had created an entry for SlackWare 14.1.

So all good to go!

Thank you for all advice received, I highly appreciate it.
 
1 members found this post helpful.
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Upgrading From 2.4 To 2.6 uktr Linux - Kernel 1 10-27-2006 12:47 AM
Upgrading to Badger! Can't login anymore after upgrading? BellaSha87 Ubuntu 1 12-03-2005 12:09 PM
upgrading (or not upgrading) glibc richarde Slackware 9 09-12-2005 12:56 AM
upgrading from cd pranith Ubuntu 2 03-19-2005 04:27 AM
Upgrading from 8.2 to 9.1, please help. skydart SUSE / openSUSE 2 11-23-2004 12:52 PM

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

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