Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
11-10-2013, 06:52 AM
|
#16
|
Member
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380
Rep:
|
Quote:
Originally Posted by hitest
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.
|
11-10-2013, 09:27 AM
|
#17
|
Member
Registered: Jan 2011
Distribution: slackware_64 14.1
Posts: 722
Rep: 
|
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?
|
|
|
11-10-2013, 11:01 AM
|
#18
|
Guru
Registered: Mar 2004
Location: Canada
Distribution: Slackware
Posts: 7,471
|
Quote:
Originally Posted by Bertman123
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.
|
|
|
11-10-2013, 12:19 PM
|
#19
|
Senior Member
Registered: Oct 2005
Location: New Mexico
Distribution: Slackware
Posts: 1,639
Rep: 
|
Quote:
Originally Posted by Didier Spaier
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.
|
11-10-2013, 12:46 PM
|
#20
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,355
Rep: 
|
Quote:
Originally Posted by BCarey
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?
|
|
|
11-10-2013, 01:00 PM
|
#21
|
Member
Registered: Jun 2013
Location: Germany
Distribution: Slackware
Posts: 174
Rep: 
|
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..
|
|
|
11-10-2013, 01:22 PM
|
#22
|
Senior Member
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559
|
Quote:
Originally Posted by Stuferus
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'
|
|
|
11-10-2013, 02:11 PM
|
#23
|
Member
Registered: Jun 2013
Location: Germany
Distribution: Slackware
Posts: 174
Rep: 
|
Quote:
Originally Posted by ruario
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?
|
|
|
11-10-2013, 02:54 PM
|
#24
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,355
Rep: 
|
Quote:
Originally Posted by Stuferus
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.
|
|
|
11-10-2013, 03:02 PM
|
#25
|
Senior Member
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559
|
Quote:
Originally Posted by Stuferus
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.
|
|
|
11-10-2013, 03:12 PM
|
#26
|
Senior Member
Registered: Oct 2005
Location: New Mexico
Distribution: Slackware
Posts: 1,639
Rep: 
|
Quote:
Originally Posted by Didier Spaier
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
|
|
|
11-10-2013, 03:21 PM
|
#27
|
Senior Member
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559
|
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.
|
|
|
11-10-2013, 04:16 PM
|
#28
|
Member
Registered: Jun 2013
Location: Germany
Distribution: Slackware
Posts: 174
Rep: 
|
ok, ruario, understood 
|
|
|
11-10-2013, 08:07 PM
|
#29
|
Senior Member
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,860
|
slackroll does a pretty good job too. ( http://rg3.github.io/slackroll/)
|
|
1 members found this post helpful.
|
11-11-2013, 06:24 PM
|
#30
|
Senior Member
Registered: Dec 2011
Location: Michigan USA
Distribution: OpenSUSE 13.2 64bit-Gnome on ASUS U52F
Posts: 1,444
Original Poster
|
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.
|
All times are GMT -5. The time now is 11:10 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|