LinuxQuestions.org
Visit Jeremy's Blog.
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 07-13-2006, 03:11 PM   #91
raska
Member
 
Registered: Aug 2004
Location: Aguascalientes, AGS. Mexico.
Distribution: Slackware 13.0 kernel 2.6.29.6
Posts: 816

Rep: Reputation: 31

Quote:
Originally Posted by win32sux
as for the "that is Slackware's fault" comment - i'm pretty sure that was sarcasm...
yup, I was in the whole expression.

Good to know Left Face Down that you are learning outright. That's the spirit.
Did you already check out the SlackBook?

It's a fine place to start. Happy reading.

remember these quotes:
"you never learnt anything by doing it right"
and the one in my sig:
"Experience is what you get, when you were expecting something else"
 
Old 07-13-2006, 03:14 PM   #92
Left Face Down
LQ Newbie
 
Registered: Jul 2006
Posts: 17

Rep: Reputation: 0
Quote:
Originally Posted by raska
yup, I was in the whole expression.

Good to know Left Face Down that you are learning outright. That's the spirit.
Did you already check out the SlackBook?

It's a fine place to start. Happy reading.
Yeah, actually slackbook is what I've been reading. I'm pretty good on the basics like moving files, creating files, and all that jazz. However I did have to look up a few things like how to unzip a tar file. Eventually I'll memorize everything because there is a lot more to linux than just that, be it any distro.
 
Old 07-13-2006, 03:41 PM   #93
nykey
Member
 
Registered: Nov 2003
Posts: 360

Rep: Reputation: 30
Oh, raska, and let's not forget the quote: If you want to learn Linux, try Slackware if I remembered it well . Even if I didn't, under my opinion the quote I've mentioned is still valid.
 
Old 07-13-2006, 04:06 PM   #94
MannyNix
Member
 
Registered: Dec 2005
Location: ~
Distribution: Slackware -current
Posts: 467

Rep: Reputation: 55
* Warning, somewhat..
<Offtopic>
Left Face Down: Glad to see you can hang. This is a great book for any distro: --> http://www.chongluo.com/books/rute/
btw, have you tried alsaconf already?

raska: LOL! nice post, i hope you're on the same boat as i am and didn't vote for "el Pendeje"
</Offtopic>

Last edited by MannyNix; 07-13-2006 at 04:11 PM.
 
Old 07-14-2006, 05:35 AM   #95
Randux
Senior Member
 
Registered: Feb 2006
Location: Siberia
Distribution: Slackware & Slamd64. What else is there?
Posts: 1,705

Rep: Reputation: 55
Quote:
Originally Posted by liquidtenmilion
Konqueror is the only file manager in slackware right now.
I don't understand this comment.

In the 10.2 distribution there are at least two others: MC (midnight commander) and xffm as part of Xfce. Neither of these requires KDE or GNOME, they're X-apps.

And it's piece of cake to install other stuff like ROX, xfm, etc.
 
Old 07-14-2006, 10:50 AM   #96
raska
Member
 
Registered: Aug 2004
Location: Aguascalientes, AGS. Mexico.
Distribution: Slackware 13.0 kernel 2.6.29.6
Posts: 816

Rep: Reputation: 31
Quote:
Originally Posted by mannyslack
i hope you're on the same boat as i am and didn't vote for "el Pendeje"
I'm buddy, worry no more. I freakin' hate that jerk.


Quote:
Originally Posted by nykey
Oh, raska, and let's not forget the quote: If you want to learn Linux, try Slackware if I remembered it well . Even if I didn't, under my opinion the quote I've mentioned is still valid.
I think that quote is quite questionable and to the current standards more like a myth than nothing else. But that has been argued in other threads which I don't recall right now.
 
Old 07-14-2006, 11:37 AM   #97
liquidtenmilion
Member
 
Registered: May 2004
Location: South Carolina
Distribution: Slackware 11.0
Posts: 606

Rep: Reputation: 32
Quote:
Originally Posted by Randux
I don't understand this comment.

In the 10.2 distribution there are at least two others: MC (midnight commander) and xffm as part of Xfce. Neither of these requires KDE or GNOME, they're X-apps.

And it's piece of cake to install other stuff like ROX, xfm, etc.
YOu're right, I did forget about xffm, but midnight commander is hardly as easy to use for new people as they would want.

Not to mention we're talking about what slackware comes with by default, because believe it or not, most new users won't be able to figure out HOW to install ROX, but even worse, they won't even know THAT rox can accomplish what they need.
 
Old 07-14-2006, 09:56 PM   #98
Cpoc
Member
 
Registered: Sep 2005
Distribution: Switched to Debian Lenny
Posts: 69

Rep: Reputation: 15
Hey liquidtenmilion I was researching more info on checkinstall and others too have suggested that it should not be used with Slackware for many of the same reasons you posted. So now I'm back to square one. I would really like to learn how to make packages on my own. Is there a more uptodate guide then the linuxpackages.net how to.

A more in dept how to go about the steps in creating slackware packages. Maybe some of the contribs of linuxpackages.net could share their info. It would ne nice if Pat could update his utility to make it a little more user friendly. I know I'm asking alot but asking does not hurt.
 
Old 07-14-2006, 11:38 PM   #99
liquidtenmilion
Member
 
Registered: May 2004
Location: South Carolina
Distribution: Slackware 11.0
Posts: 606

Rep: Reputation: 32
Most people make them either by hand:

Code:
mkdir /work
export CFLAGS="whatever cflags you want"    (such as -march=pentium3 -O2 -pipe -fomit-frame-pointer)
export CXXFLAGS=${CFLAGS}
cd /wherever/the/source/code/tarball/is/stored
./configure  --help
./configure --with-whatever --options-you-want
make
su
make install DESTDIR=/work
cd /work
makepkg programname-programversion-arch-packagebuildnumber.tgz    (for example, one of my packages is named mplayer-20060614-pentium3-1asw.tgz.)
Then you can simply delete the /work directory



(Some people then take it a step further and make a script out of those steps, but ultiamtely I think that is a waste of time, but that's just me.) That'll create a package for you, that, USUALLY works perfectly, but not for every package. For packages that don't take DESTDIR, you are going to have to get creative. (most do nowadays). For those packages I usually just do a "make install" and keep the source tarball for a "make uninstall" later.
 
Old 08-05-2006, 09:29 PM   #100
Darksurf
LQ Newbie
 
Registered: Jul 2006
Posts: 16

Rep: Reputation: 0
gentoo is too easy to use! "the easier it is to use the less you can do." that is a quote someone once used against windoze! And I somewhat agree. Youwon't learn anything if it's too easy on you and I don't like gnome( no offense). Gnome doesn't have near the support that kde has and near the flexability. Anyway gentoo is for users who will surf the net and do normal everyday tasks. Linux users are far from the ordinary. We aren't like most windoze users who don't know what the heck they're doing and only know how to turn on the computer and check e-mail. No offense to gentoo users it just isn't what most slackers are use to. Many loyal slackers are and will stay slackers. I've tried too many types of linux that everyone says is just so great and when i get there I think whats so great about this?? Many believe the Slackware install is hard to use!! How in the world is that hard??? Because it doen't have a pretty GUI like many other OSs? I've tried gentoo, sorry didn't like it. Same with my friends. We don't like ubuntu either. maybe its just gnome?? not for me but others... maybe?
 
  


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
Slackware Vs Gentoo.. raoqn Slackware 20 11-09-2006 06:55 PM
Gentoo vs Slackware otchie1 Linux - Distributions 30 04-05-2005 05:54 AM
Gentoo vs. Slackware swinchen Slackware 45 05-27-2004 10:06 PM
slackware vs gentoo N_A_J_M Linux - Distributions 6 02-19-2003 06:41 PM
Slackware vs Gentoo Ed-Slack Linux - Distributions 7 01-21-2003 11:16 PM

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

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