LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 12-31-2010, 01:13 PM   #1
zer0signal
Member
 
Registered: Oct 2010
Location: Cleveland
Distribution: Slackware, Fedora, RHEL (4,5), LFS 6.7, CentOS
Posts: 258

Rep: Reputation: 29
Jumping into Slackware...


Hey guys, I'm sure you have heard this question a lot, but I'm thinking about jumping into Slackware and trying to get my feet wet with this distro. I'm coming from a Redhat/Fedora environment... I feel I am very proficient with CLI and compiling and configuring packages. I's there anything else I should be aware of when jumping into this distro? Your thoughts and opinions would appreciated.

Thx
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 12-31-2010, 01:29 PM   #2
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Sounds like you're more than skilled enough to appreciate Slackware with that background. You should have no problem.


1) Don't ignore all the readme's in the top directory of the install CD.
2) At your first opportunity switch to a generic kernel + initrd as described in /boot/README.initrd
3) Take advantage of slackbuilds.org and learn to write your own early on.
4) Once you go Slack, you don't go back

Have fun.
 
1 members found this post helpful.
Old 12-31-2010, 01:48 PM   #3
Drakeo
Senior Member
 
Registered: Jan 2008
Location: Urbana IL
Distribution: Slackware, Slacko,
Posts: 3,716
Blog Entries: 3

Rep: Reputation: 483Reputation: 483Reputation: 483Reputation: 483Reputation: 483
big thing about Slackware is it is a full CLI and GUI Distro. Word of advice if you want to compile something 9 out of 10 some one has already built build scripts for you.
slackbuilds.org or the SBOPKG browser builder. that is used with slackbuilds.
Every programe ran on Slackware is built from source with Slackware scripts. this really helps keep them programs packages in line with pkgtool.
Have fun.
 
1 members found this post helpful.
Old 12-31-2010, 02:09 PM   #4
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Hi, welcome to Slackware,

the most easy way to install Slackware is the DVD, but the fastest way is to download the packages with wget
Code:
mkdir slackware64
cd slackware64
for i in a ap d e f k kde l n t tcl x xap y; do mkdir $i; cd $i; wget ftp://pathtoslackwaremirror/slackware64-13.1/slackware64/$i/*; cd ..; done
and then you may either create a minimal install-CD without packages (read here: ftp://ftp.gwdg.de/pub/linux/slackwar...nux/README.TXT) or download the USB-bootimage ftp://ftp.gwdg.de/pub/linux/slackwar...xe-installers/ which is even more convenient. The installer will give you the option to install the packages from a "premounted partition". So you create the slackware64 directory on a partition which you don't format while the installation. That's how I install Slackware.

Markus
 
2 members found this post helpful.
Old 12-31-2010, 02:44 PM   #5
lumak
Member
 
Registered: Aug 2008
Location: Phoenix
Distribution: Arch
Posts: 799
Blog Entries: 32

Rep: Reputation: 111Reputation: 111
Slackware Init System

all the startup scripts are in /etc/rc.d and the standard is to have each script completely functional on its own.

services are controlled with "/etc/rc.d/rc.<service> start|stop|restart" aside from those that are controlled by the rc.inetd.

If you want a default slackware program to start when the system does, 'chmod +x /etc/rc.d/rc.<service>'

Read the /etc/rc.d/rc.mysqld file for how to setup mysql before running it. THERE IS NO DEFAULT SQL DATABASE AND YOU MUST SET UP MYSQL BEFORE USING IT.

Any third party daemon software you want to run will need it's own startup file. Slackbuilds.org will include these for anything located there. You must manually add their execution to /etc/rc.d/rc.local[shutdown] to get them to start when the system is booted.


Slackware Package Management

Slackware is a complete OS. Therefor you do a Full install and the package manager doesn't need to track dependencies. If you modify what packages are installed, you are now the System Admin and have to manage all that your self. Good Luck.


Other than that? It's still Linux and everything should be the same.
 
1 members found this post helpful.
Old 12-31-2010, 03:27 PM   #6
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Installing

Greetz
Here is an install tutorial complete with screenshots so you can install with pre-knowledge and confidence. It was written for v13 but 13.1 is identical. Once in you will never worry ever again that some random upgrade will break your system or removing something you don't want will also remove something you do want. The worst that can happen is an app won't run until you solve the dependency. Plus the vast majority of what you learn about Slackware today will still be useful in 5 years, maybe 10. The nuts and bolts are sacred.

Here's the promised link http://maketecheasier.com/install-an...-13/2010/01/21

You are in for a pleasant adventure!

PS I hate initrd and it is not necessary if you make sure to load early essentials at kernel level instead of as modules. Once you get up and running if this interests you, please start a new thread or read all the docs on the DVD regarding Installing and Upgrading.

Last edited by enorbet; 12-31-2010 at 03:33 PM.
 
1 members found this post helpful.
Old 12-31-2010, 03:50 PM   #7
2handband
Member
 
Registered: Jan 2009
Location: Alexandria, Minnesota
Distribution: Manjaro
Posts: 837

Rep: Reputation: 96
Linked in my sig is a website full of tutorials, mostly written by me. Everything is current for Slackware 13.1.
 
1 members found this post helpful.
Old 12-31-2010, 09:29 PM   #8
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
Quote:
Originally Posted by markush View Post
Code:
for i in a ap d e f k kde l n t tcl x xap y; do mkdir $i; cd $i; wget ftp://pathtoslackwaremirror/slackware64-13.1/slackware64/$i/*; cd ..; done
Or rsync with something like
Code:
rsync -avz --exclude='kdei/' \
  rsync://path_to_remote_mirror/slackware64-13.1/slackware64/ \
  /path_to_local_mirror/slackware64/
 
2 members found this post helpful.
Old 01-01-2011, 10:13 AM   #9
zer0signal
Member
 
Registered: Oct 2010
Location: Cleveland
Distribution: Slackware, Fedora, RHEL (4,5), LFS 6.7, CentOS
Posts: 258

Original Poster
Rep: Reputation: 29
Thanks guy's for all the advice, I am going to give this a whirl on my laptop this weekend. If everything goes good from there, and have no issues. I'll install on my desktop!
 
Old 01-01-2011, 11:01 AM   #10
2handband
Member
 
Registered: Jan 2009
Location: Alexandria, Minnesota
Distribution: Manjaro
Posts: 837

Rep: Reputation: 96
Quote:
Originally Posted by zer0signal View Post
Thanks guy's for all the advice, I am going to give this a whirl on my laptop this weekend. If everything goes good from there, and have no issues. I'll install on my desktop!
Probably the biggest thing to get used to (it was for me) coming over from another distro is Slackware software management. I've got a fairly lengthy tutorial on the subject:

http://www.genek.net/LinuxAdventures.../slackpkg.html
 
1 members found this post helpful.
Old 01-01-2011, 08:03 PM   #11
zer0signal
Member
 
Registered: Oct 2010
Location: Cleveland
Distribution: Slackware, Fedora, RHEL (4,5), LFS 6.7, CentOS
Posts: 258

Original Poster
Rep: Reputation: 29
First post from Slackware! lol Managed to get in an setup with no documentation, now its time to figure this out and learn.. Thx guys for all the posts!
 
Old 01-02-2011, 03:35 AM   #12
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Well, congratulations.

In order to have the Slackware-logo in your posts here in LQ, you may open firefox and enter the adress about:config
Rightclicking into the window will give you the option New->String, the string is "general.useragent.vendor" and the value has to be "Slackware"

Markus
 
4 members found this post helpful.
Old 01-02-2011, 06:53 AM   #13
Drakeo
Senior Member
 
Registered: Jan 2008
Location: Urbana IL
Distribution: Slackware, Slacko,
Posts: 3,716
Blog Entries: 3

Rep: Reputation: 483Reputation: 483Reputation: 483Reputation: 483Reputation: 483
thanks for the tip markush
 
Old 01-02-2011, 07:33 AM   #14
jrecortel
Member
 
Registered: Sep 2008
Location: Philippines
Distribution: slackware, FreeBSD
Posts: 123

Rep: Reputation: 19
must try what markush said about Slackware-logo.
 
Old 01-02-2011, 10:49 AM   #15
zer0signal
Member
 
Registered: Oct 2010
Location: Cleveland
Distribution: Slackware, Fedora, RHEL (4,5), LFS 6.7, CentOS
Posts: 258

Original Poster
Rep: Reputation: 29
Nice! Thx
 
  


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
Strange problem with cursor jumping to menus in Slackware 12.1 teddyt Slackware 15 06-27-2008 06:44 AM
Firefox jumping pixellany Linux - Software 3 12-16-2006 05:37 PM
monitor jumping around? powerlifter450 SUSE / openSUSE 2 02-24-2005 06:24 PM
Jumping in Head first dvlmn666 Linux - Newbie 4 12-18-2003 01:17 PM
Mouse jumping ?? rsaylor Linux - Newbie 7 06-26-2002 11:42 AM

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

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