LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 06-03-2005, 07:15 PM   #1
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Rep: Reputation: 77
Package Manager?


Thinking about giving Slack a try. I am not very strong with Linux and hate getting stuck so am not sure if Slack 10.1 is the way to go. I have been breast fed by Fedora for ~2 years and would rate my Linux skills a 3 (10 being best) but my Linux obssesion and patience rate a 100 (10 being best).

My question is does Slack have a simple package manager like YUM or APT-GET? How would I go about installing stuff like the latest kernel, MPlayer, KDE 3.3.2, etc etc etc.

I don't know how to complile anything but can follow directions pretty well.

Thanks for any support.
 
Old 06-03-2005, 07:22 PM   #2
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,197

Rep: Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386
Slapt-get is a clone of the debian apt-get , and pkgtools is a good package manager for removing , installing and viewing packages, and also from the command line, installpkg package.tgz and removepkg package.tgz is very good
 
Old 06-03-2005, 07:23 PM   #3
DrOzz
Senior Member
 
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185

Rep: Reputation: 60
i also like Swaret too, its quick and easy.
 
Old 06-03-2005, 07:26 PM   #4
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
Do you guys suggest Slackware for me or think I should wait and get my feet wet with something like Debian?
 
Old 06-03-2005, 07:30 PM   #5
nick_th_fury
Member
 
Registered: Jun 2003
Location: Texas
Distribution: Slackware, NetBSD
Posts: 151

Rep: Reputation: 23
Not sure if your hate of getting stuck is outweighed by your patience.
If you truely have patience, then you'll love slack. You'll just have to learn a little as you go.
It's not so bad though, as there's plenty of help & documentation to help you out.

The kernel you can just goto kernel.org, download the latest & compile normally.
Since Slack doesn't alter it to be distro specific, you are always good to go with the latest.
For KDE or any software that comes with slack, just keep an eye on the change log.
ftp://ftp.slackware.com/pub/slackwar.../ChangeLog.txt

Whenever there's an update, just use the slack pack browser to download it.
Heres an example:
http://www.slackware.com/pb/searchpk....1&string=xmms

Then su to superuser, & one quick command:

upgradepkg xmms-1.2.10-i486-2.tgz

and your done with that one.
It's very easy to keep upto date with this distro.

Last edited by nick_th_fury; 06-03-2005 at 07:34 PM.
 
Old 06-03-2005, 07:35 PM   #6
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
Thanks - Think I will give Slack 10.1 another shot. Is there a site that will show me step by step how to install/compile the latest kernel from www.kernel.org?

I have never done something like this and don't want to crash my system
 
Old 06-03-2005, 07:35 PM   #7
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,197

Rep: Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386Reputation: 1386
I say dive right in, and go for Slackware, its the first distro I tried, and I haven't really bothered with any other distro.
 
Old 06-03-2005, 07:47 PM   #8
nick_th_fury
Member
 
Registered: Jun 2003
Location: Texas
Distribution: Slackware, NetBSD
Posts: 151

Rep: Reputation: 23
Quote:
Originally posted by carlwill
Thanks - Think I will give Slack 10.1 another shot. Is there a site that will show me step by step how to install/compile the latest kernel from www.kernel.org?

I have never done something like this and don't want to crash my system


Yes there are many. I have an excellent link at home & will post it tonight.
I'm at work right now so don't have it bookmarked here.
At first it is scary, but it's actully very easy once you get used to it.
3-4years ago I was sweating first time I got it wrong.
Now it's like ordering a pizza, just something you do.
 
Old 06-04-2005, 08:04 AM   #9
nick_th_fury
Member
 
Registered: Jun 2003
Location: Texas
Distribution: Slackware, NetBSD
Posts: 151

Rep: Reputation: 23
Kernel

Ok,
The site I had bookmarked is now a dead link.
There are many sites on the net that have tutorials, I do recommend searching google & reading a few.
Since I don't have a link I can share, I typed up exactly how I do it.


------------------------------------
Kernel Compile guide
------------------------------------
#download the current kernel linux-2.6.xx.tar.gz
#as root:
mv linux-2.6.xx.tar.gz /usr/src
cd /usr/src
tar -zxvf linux-2.6.xx.tar.gz
rm linux
ln -s /usr/src/linux-2.6.xx /usr/src/linux
cd linux
make menuconfig #(*Setup for your system*)
make
make bzImage
make modules
make modules_install
cp arch/i386/boot/bzImage /boot/vmlinuz-2.6.xx
cp System.map /boot/System.map-2.6.xx
rm /boot/System.map
ln -s /boot/System.map-2.6.xx /boot/System.map
cd //etc
vi lilo.conf #(*Add new selection, see below*)
cd //sbin
lilo
reboot
#(*Login as root*)
cd nvidia #(*Wherever you located your vid driver*)
sh NVIDIA-Linux-x86-1.0-5661-pkg1.run #(*Varies for your driver*)
#Done



My lilo.conf entry:
image = /boot/vmlinuz-2.6.xx
root = /dev/sda1
label = Slack_2.6.xx-SMP
read-only
------------------------------------

------------------------------------

Hope you find that helpfull.
 
Old 06-04-2005, 08:23 AM   #10
ringwraith
Senior Member
 
Registered: Sep 2003
Location: Indiana
Distribution: Slackware 15.0
Posts: 1,272

Rep: Reputation: 65
Just a note. I don't know that I would make compiling my own kernel a real high priority unless your system demands it. You should probably build a few other apps first to get your feet wet with the whole compiling process, editing text files, navigating your system. Unless you have some odd hardware, Pat V (maker of Slackware) will provide up to date kernel packages that you can simply install rather than building your own.
 
Old 06-04-2005, 08:29 AM   #11
ingvildr
Member
 
Registered: Mar 2005
Location: England, South East
Distribution: Fedora
Posts: 358

Rep: Reputation: 30
Just use slapt-get and gslapt and you have apt and synaptic on slack
 
Old 06-04-2005, 08:34 AM   #12
ringwraith
Senior Member
 
Registered: Sep 2003
Location: Indiana
Distribution: Slackware 15.0
Posts: 1,272

Rep: Reputation: 65
ingvildr: oh please.
 
Old 06-04-2005, 08:41 AM   #13
ingvildr
Member
 
Registered: Mar 2005
Location: England, South East
Distribution: Fedora
Posts: 358

Rep: Reputation: 30
well he did ask for something simple, i'm guessing your not a slapt or gslapt fan?
 
Old 06-04-2005, 08:59 AM   #14
ringwraith
Senior Member
 
Registered: Sep 2003
Location: Indiana
Distribution: Slackware 15.0
Posts: 1,272

Rep: Reputation: 65
I have tried slapt-get and swaret, didn't like them and don't use them. But if everyone else wants to, fine. Best of luck to you, But to compare either of them with apt-get in Debian means you have never used Debian for any length of time. The Debian repositories, the dependency checking are all officially part of Debian. It is built with apt-get and dependency checking as part othe distro so they work almost flawlessly when used as designed. Don't get me wrong, I am a Slackware user. I don't even have Debian currently on my system as I wanted to mess around wtih another distro right now. Each distro has its strengths and weaknesses. Slackware's are its simplicity and stability, the way most packages will compile without alot of fuss, the way alot of things will just work without much tinkering right out of the box.
 
Old 06-04-2005, 09:08 AM   #15
ingvildr
Member
 
Registered: Mar 2005
Location: England, South East
Distribution: Fedora
Posts: 358

Rep: Reputation: 30
apt is quite good but i dont like anything that plays with dependencies, thats why i like slack. I just use slapt-get as a quicker way to update. Actually my previous post was stupid i should have made it obvious i just use it because its faster to update my system with it and that its not an apt-get for slack.

Last edited by ingvildr; 06-04-2005 at 09:16 AM.
 
  


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
latex2e package unavailable in package manager or apt-get cesine Debian 2 07-11-2006 02:31 PM
Is there any other package manager?? rafias Fedora 7 11-17-2005 03:55 AM
X package manager monohouse Linux - Software 6 12-15-2004 01:14 AM
Package manager - all in one gokul Fedora 17 12-13-2004 09:15 PM
Is there any package manager available? bngrhl Linux - Newbie 8 08-06-2004 08:35 PM

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

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