LinuxQuestions.org
Help answer threads with 0 replies.
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-30-2005, 05:05 PM   #61
egag
Senior Member
 
Registered: Jul 2004
Location: Netherlands
Distribution: Slackware
Posts: 2,721

Rep: Reputation: 53

Quote:
Originally posted by monz

If the links pointing to the currently used kernelversion are set correctly in /usr/src, the right set of headers will be used.
wich links are you referring to ?

Quote:
Originally posted by monz

If some obscure program is specifically designed to -want- some other (2.4.x) headers, it's time to upgrade that program anyway, IMHO.
any program that uses glibc will probally need 2.4 headers to compile AFAIK.
but as said, using 2.6 headers *might* give problems, it's not allways the case i guess.

egag
 
Old 06-30-2005, 05:45 PM   #62
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
For some understanding on linking kernel headers, and where to build,
check the README file from Linus that comes with EVERY kernel source:
Quote:
INSTALLING the kernel:

- If you install the full sources, put the kernel tarball in a
directory where you have permissions (eg. your home directory) and
unpack it:

gzip -cd linux-2.6.XX.tar.gz | tar xvf -

Replace "XX" with the version number of the latest kernel.

Do NOT use the /usr/src/linux area! This area has a (usually
incomplete) set of kernel headers that are used by the library header
files. They should match the library, and not get messed up by
whatever the kernel-du-jour happens to be.
That's exactly why Pat gives that warning.
And I quote from Linus almost 5 years ago...
Linus says DON'T build in /usr/src
Quote:
I've asked glibc maintainers to stop the symlink insanity for the last
few years now, but it doesn't seem to happen.

Basically, that symlink should not be a symlink. It's a symlink for
historical reasons, none of them very good any more (and haven't been
for a long time), and it's a disaster unless you want to be a C library
developer. Which not very many people want to be.

The fact is, that the header files should match the library you link
against, not the kernel you run on.

Think about it a bit.. Imagine that the kernel introduces a new "struct
X", and maintains binary backwards compatibility by having an old system
call in the old place that gets passed a pointer to "struct old_X".
It's all compatible, because binaries compiled for the old kernel will
still continue to run - they'll use the same old interfaces they are
still used to, and they obviously do not know about the new ones.

Now, if you start mixing a new kernel header file with an old binary
"glibc", you get into trouble. The new kernel header file will use the
_new_ "struct X", because it will assume that anybody compiling against
it is after the new-and-improved interfaces that the new kernel
provides.

But then you link that program (with the new "struct X") to the binary
library object archives that were compiled with the old header files,
that use the old "struct old_X" (which _used_ to be X), and that use the
old system call entry-points that have the compatibility stuff to take
"struct old_X".

Boom! Do you see the disconnect?

In short, the _only_ people who should update their /usr/include/linux
tree are the people who actually make library releases and compile their
own glibc, because if they want to take advantaged of new kernel
features they need those new definitions. That way there is never any
conflict between the library and the headers, and you never get warnings
like the above..

>Mr. Ulrich Drepper (one of the glibc/gcc guys) gave me a standard
>"don't use kernel headers directly" answer. But neither gcc.c,
>neither the above small program use kernel headers. I suppose he
>referred to /usr/include/linux/* as (I think) he did not understand me.

No. He really meant that you should not use the kernel headers: you
should use the headers that glibc came with. It is probably a redhat bug
that those headers were a symbolic link.

I would suggest that people who compile new kernels should:

- NOT do so in /usr/src. Leave whatever kernel (probably only the
header files) that the distribution came with there, but don't touch
it.

- compile the kernel in their own home directory, as their very own
selves. No need to be root to compile the kernel. You need to be root
to _install_ the kernel, but that's different.

- not have a single symbolic link in sight (except the one that the
kernel build itself sets up, namely the "linux/include/asm" symlink
that is only used for the internal kernel compile itself)

And yes, this is what I do. My /usr/src/linux still has the old 2.2.13
header files, even though I haven't run a 2.2.13 kernel in a _loong_
time. But those headers were what glibc was compiled against, so those
headers are what matches the library object files.

And this is actually what has been the suggested environment for at
least the last five years. I don't know why the symlink business keeps
on living on, like a bad zombie. Pretty much every distribution still
has that broken symlink, and people still remember that the linux
sources should go into "/usr/src/linux" even though that hasn't been
true in a _loong_ time.

Is there some documentation file that I've not updated and that people
are slavishly following outdated information in? I don't read the
documentation myself, so I'd never notice ;)

Linus
So you see why people have trouble in this area, but I don't understand
why these Johnny-come-lately-guys still post their kernel build guides with
the instructions incorrect. I guess they've never bothered to read what the
author of the kernel wrote.



It's rumored that Pat will come out with a 10.2 in August, still with a 2.4.x
kernel, and 11.0 will be the end of this year or the first of 2006 with 2.6.x
Time will tell...
 
Old 06-30-2005, 06:43 PM   #63
perfect_circle
Senior Member
 
Registered: Oct 2004
Location: Athens, Greece
Distribution: Slackware, arch
Posts: 1,783

Rep: Reputation: 53
Thats true. I've heard it many times, and since all the applications that need the kernel source check /lib/modules/<kernel-version>/build for the kernel source directory, there is no problem with having the kernel somewhere else.
 
Old 07-01-2005, 03:09 AM   #64
xushi
Senior Member
 
Registered: Jun 2003
Location: UK
Distribution: Gentoo
Posts: 1,288

Original Poster
Rep: Reputation: 45
Kala! that's a first for me. Yes i do read documentations, but i guess all of what i read regarding kernel compiling was mostly from the forums and tutorials posted here...

Well, time to try out the *propper* method of compilng with 2.6.12.2 now
 
Old 07-01-2005, 07:56 AM   #65
AxXium
Zenwalk Admin
 
Registered: May 2005
Location: Louisiana, U.S.A.
Distribution: Zenwalk Gnu/Linux
Posts: 258

Rep: Reputation: 31
Angry

What then may I have screwed up by doing it the wrong way and should I do a fresh install os Slackware. I was taught to build in usr/src/linux.

Damn! How were we supposed to know?
 
Old 07-01-2005, 08:21 AM   #66
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
I don't know how or what you did, and probably it's alright, but this
is what your /usr/src should look like on Slackware-10.1:
Code:
mingdao@james:~/downloads$ ls -alh /usr/src 
total 1.0K
drwxr-xr-x   5 root root 160 2005-03-31 02:05 ./
drwxr-xr-x  18 root root 520 2004-11-01 06:24 ../
lrwxrwxrwx   1 root root  12 2005-03-31 02:05 linux -> linux-2.4.29/
drwxr-xr-x  15 root root 584 2005-01-21 03:41 linux-2.4.29/
drwxr-xr-x   7 root root 168 2003-10-29 14:08 rpm/
drwxr-xr-x   2 root root 176 2005-01-21 06:31 speakup-2.4.29/
If you'll look under /usr/src/linux-2.4.29/ you'll find your kernel source,
and that is what you should have there, not the kernel of the day. It
should be somewhere like this:
Code:
mingdao@james:~/build/linux-2.6.12.2$ ls -alh
total 16M
drwxr-xr-x  19 mingdao users 1.3K 2005-07-01 21:12 ./
drwxr-xr-x  16 mingdao users 1.4K 2005-07-01 21:05 ../
-rw-r--r--   1 mingdao users  474 2005-07-01 21:12 ..tmp_kallsyms1.o.cmd
-rw-r--r--   1 mingdao users  474 2005-07-01 21:12 ..tmp_kallsyms2.o.cmd
-rw-r--r--   1 mingdao users  604 2005-07-01 21:12 ..tmp_vmlinux1.cmd
-rw-r--r--   1 mingdao users  620 2005-07-01 21:12 ..tmp_vmlinux2.cmd
-rw-r--r--   1 mingdao users  30K 2005-07-01 21:06 .config
-rw-r--r--   1 mingdao users 5.2K 2005-07-01 21:06 .config.cmd
-rw-r--r--   1 mingdao users  30K 2005-07-01 21:06 .config.old
-rw-r--r--   1 mingdao users 799K 2005-07-01 21:12 .tmp_System.map
-rw-r--r--   1 mingdao users 805K 2005-07-01 21:12 .tmp_kallsyms1.S
-rw-r--r--   1 mingdao users 139K 2005-07-01 21:12 .tmp_kallsyms1.o
-rw-r--r--   1 mingdao users 805K 2005-07-01 21:12 .tmp_kallsyms2.S
-rw-r--r--   1 mingdao users 139K 2005-07-01 21:12 .tmp_kallsyms2.o
drwxr-xr-x   2 mingdao users 2.1K 2005-07-01 21:12 .tmp_versions/
-rwxr-xr-x   1 mingdao users 3.8M 2005-07-01 21:12 .tmp_vmlinux1*
-rwxr-xr-x   1 mingdao users 4.0M 2005-07-01 21:12 .tmp_vmlinux2*
-rw-r--r--   1 mingdao users    2 2005-07-01 21:12 .version
-rw-r--r--   1 mingdao users  608 2005-07-01 21:12 .vmlinux.cmd
-rw-r--r--   1 mingdao users  19K 2005-06-30 07:00 COPYING
-rw-r--r--   1 mingdao users  88K 2005-06-30 07:00 CREDITS
drwxr-xr-x  49 mingdao users 4.7K 2005-06-30 07:00 Documentation/
-rw-r--r--   1 mingdao users  57K 2005-06-30 07:00 MAINTAINERS
-rw-r--r--   1 mingdao users  44K 2005-06-30 07:00 Makefile
-rw-r--r--   1 mingdao users  96K 2005-07-01 21:12 Module.symvers
-rw-r--r--   1 mingdao users  14K 2005-06-30 07:00 README
-rw-r--r--   1 mingdao users 3.0K 2005-06-30 07:00 REPORTING-BUGS
-rw-r--r--   1 mingdao users 799K 2005-07-01 21:12 System.map
drwxr-xr-x  25 mingdao users  608 2005-06-30 07:00 arch/
drwxr-xr-x   2 mingdao users 6.2K 2005-07-01 21:12 crypto/
drwxr-xr-x  50 mingdao users 1.4K 2005-07-01 21:11 drivers/
drwxr-xr-x  55 mingdao users 5.2K 2005-07-01 21:08 fs/
drwxr-xr-x  38 mingdao users 1016 2005-07-01 21:06 include/
drwxr-xr-x   2 mingdao users  856 2005-07-01 21:12 init/
drwxr-xr-x   2 mingdao users  656 2005-07-01 21:09 ipc/
drwxr-xr-x   4 mingdao users 4.0K 2005-07-01 21:07 kernel/
drwxr-xr-x   5 mingdao users 3.2K 2005-07-01 21:12 lib/
drwxr-xr-x   2 mingdao users 3.1K 2005-07-01 21:08 mm/
drwxr-xr-x  32 mingdao users 1.2K 2005-07-01 21:12 net/
drwxr-xr-x   9 mingdao users 1.5K 2005-07-01 21:07 scripts/
drwxr-xr-x   4 mingdao users  448 2005-07-01 21:09 security/
drwxr-xr-x  16 mingdao users  968 2005-07-01 21:12 sound/
drwxr-xr-x   2 mingdao users  544 2005-07-01 21:07 usr/
-rwxr-xr-x   1 mingdao users 4.0M 2005-07-01 21:12 vmlinux*
Where you would find out is reading the INSTALL and README files which
usually come with the apps before you compile. That's what I did...I had
compiled once with the DaOne guide and it didn't work, so I read Linus'
README file. Compiled again the correct way, didn't have to edit any other
files (such as the Makefile or whatever), and it just works. You only need
a few steps to compile a 2.6.x kernel...they're in the README file.

It might be wise to change the symlink /usr/src/linux back to whatever
came with your Linux distro, then compile a new kernel under /home but
it might not be necessary. That just depends upon if you later compile
something that needs the headers that glibc was compiled with.

Just remember that anyone can post whatever they want on the internet,
and as the LQ disclaimer says:
Quote:
We would like to stress that you should fully understand what a recommended change may do to your system. You should not give anyone you do not know login information to your system. LinuxQuestions.org cannot be held liable for for anything you do as a result of information obtained at this site.
I doubt most people mean us any harm, they're just posting what they've
been doing that seems to work.
 
Old 07-01-2005, 08:26 AM   #67
AxXium
Zenwalk Admin
 
Registered: May 2005
Location: Louisiana, U.S.A.
Distribution: Zenwalk Gnu/Linux
Posts: 258

Rep: Reputation: 31
From this I gather that it is smarter to get instructions from the people who made the app in the first place, rather than searching for some hack that just so happends to work.

Now, about the symlink linux---->

Linus says

Code:
Basically, that symlink should not be a symlink. It's a symlink for
historical reasons, none of them very good any more (and haven't been
for a long time), and it's a disaster unless you want to be a C library
developer. Which not very many people want to be.
http://uwsg.iu.edu/hypermail/linux/k...07.3/0587.html

When will that be fixed or can we fix that?

Last edited by AxXium; 07-01-2005 at 08:28 AM.
 
Old 07-01-2005, 08:30 AM   #68
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Some things seem to work, and might never create a problem for most
systems. That /usr/src/linux business isn't really a hack, but it can jump
up and bite you later on. I'm almost certain I'll get flamed by someone
saying something like, "It always works for me..." but as you say here,
I follow the directions of the guys who write the apps. We must also
remember, it's a Personal Computer and we're all free to run them
however we want...
 
Old 07-01-2005, 08:38 AM   #69
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Quote:
Originally posted by mianve
From this I gather that it is smarter to get instructions from the people who made the app in the first place, rather than searching for some hack that just so happends to work.

Now, about the symlink linux---->

Linus says

Code:
Basically, that symlink should not be a symlink. It's a symlink for
historical reasons, none of them very good any more (and haven't been
for a long time), and it's a disaster unless you want to be a C library
developer. Which not very many people want to be.
http://uwsg.iu.edu/hypermail/linux/k...07.3/0587.html

When will that be fixed or can we fix that?
That's just the point. It's not broken...people symlinking the kernel
sources to /usr/src/linux is what can break it. Just leave that link
alone like Linus says, and build your kernels somewhere under /home
and you'll be fine. That's where your new kernel sources will be, and
the ones that the libraries that your distro was built with will still be
under /usr/src/linux

For instance, I create a directory just for building from source:
Code:
mingdao@james:~/build$ ls -alh
total 379M
drwxr-xr-x  16 mingdao users 1.4K 2005-07-01 21:05 ./
drwx--x--x  61 mingdao users 5.4K 2005-07-01 10:06 ../
-rwxr-xr-x   1 mingdao users 5.5K 2005-05-17 08:15 2.6-kernel-build.txt*
-rw-r--r--   1 mingdao users  38M 2005-04-10 06:08 AdbeRdr70_linux_enu.tar.gz
drwxr-xr-x   2 mingdao users  192 2005-03-28 19:42 AdobeReader/
drwxr-xr-x   2 mingdao users  13K 2004-11-27 03:05 OOo_1.1.4_LinuxIntel_install/
-rw-r--r--   1 mingdao users  77M 2005-03-30 20:05 OOo_1.1.4_LinuxIntel_install.tar.gz
drwxr-xr-x   6 mingdao users  376 2005-06-28 19:14 OpenOffice.org1.1.4/
-rw-r--r--   1 mingdao users  51K 2005-05-17 00:00 Pats-config-2.6.11.9
drwxr-xr-x   8 mingdao users 1.3K 2005-04-09 18:45 Scribus/
-rw-r--r--   1 mingdao users 8.3M 2005-03-30 20:05 firefox-1.0.1.installer.tar.gz
-rw-r--r--   1 mingdao users  32M 2005-03-31 05:18 firefox-1.0.2-source.tar.bz2
-rw-r--r--   1 mingdao users 970K 2005-03-30 20:05 freetype-2.1.9.tar.bz2
drwxr-xr-x   6 mingdao users 3.4K 2005-05-08 00:33 gaim-encryption-2.36/
-rw-r--r--   1 mingdao users 533K 2005-05-08 00:29 gaim-encryption-2.36.tar.gz
drwxr-xr-x   4 mingdao users  152 2004-12-08 14:59 hwfirewall-pre9-15/
-rw-r--r--   1 mingdao users  29K 2005-04-04 23:30 hwfirewall-pre9-15.tar.bz2
drwxr-xr-x  13 mingdao users 1.7K 2005-05-14 06:41 lame-3.96.1/
-rw-r--r--   1 mingdao users 1.2M 2005-04-18 15:05 lame-3.96.1.tar.gz
drwxr-xr-x  19 mingdao users 1.3K 2005-05-30 21:41 linux-2.6.11.11/
-rw-r--r--   1 mingdao users  35M 2005-05-30 17:07 linux-2.6.11.11.tar.bz2
drwxr-xr-x  19 mingdao users 1.3K 2005-04-09 17:37 linux-2.6.11.6/
-rw-r--r--   1 mingdao users  36M 2005-04-02 11:51 linux-2.6.11.6.tar.bz2
drwxr-xr-x  18 mingdao users  640 2005-04-19 13:29 linux-2.6.11.7/
-rw-r--r--   1 mingdao users  36M 2005-04-15 19:16 linux-2.6.11.7.tar.bz2
drwxr-xr-x  19 mingdao users 1.3K 2005-06-19 07:58 linux-2.6.12/
drwxr-xr-x  19 mingdao users 1.3K 2005-06-29 15:58 linux-2.6.12.1/
-rw-r--r--   1 mingdao users  36M 2005-06-26 17:59 linux-2.6.12.1.tar.bz2
drwxr-xr-x  19 mingdao users 1.3K 2005-07-01 21:12 linux-2.6.12.2/
-rw-r--r--   1 mingdao users  36M 2005-06-30 14:09 linux-2.6.12.2.tar.bz2
-rw-r--r--   1 mingdao users  36M 2005-06-19 01:56 linux-2.6.12.tar.bz2
drwxr-xr-x   4 mingdao users  640 2005-03-31 11:29 rpl-1.4.0/
-rw-r--r--   1 mingdao users  59K 2005-03-31 09:44 rpl-1.4.0.tar.gz
-rw-r--r--   1 mingdao users 413K 2005-05-21 04:22 udev-058.tar.bz2
-rwxr-xr-x   1 mingdao users 148K 2005-03-30 20:05 xmms-cdread-0.11d.tar.gz*
That's apps that I've built from source...most of them using SlackBuild scripts, and
a few with checkinstall...all made into nice Slackpacks except the kernels. There
are others that I've built on other boxen and moved the Slackpacks into another
directory, ~/tarballs/
 
Old 07-01-2005, 08:41 AM   #70
AxXium
Zenwalk Admin
 
Registered: May 2005
Location: Louisiana, U.S.A.
Distribution: Zenwalk Gnu/Linux
Posts: 258

Rep: Reputation: 31
Code:
it's a Personal Computer and we're all free to run them
I understand that but....

I would prefer to do things as they should be and I belive that Linus would know more about the kernel than anyone else that comes to mind.

I would rather not want to take that rare chance that something would come back to bite me.

While we are talking. I have another question somewhat related to the subject. Someone posted yesterday that Patrick said that Slackware 11 would have a 2.6.x kernel as a default kernel. Wether that's true or not, I imagine somewhere down the road he may go to a kernel other than 2.4.x. be it a 2.6.x or a 2.8.x kernel. I would assume then he would also use new kernel header files.

I would think then he would have to recompile glibc and everything else to work correctly. That being said, I wonder if even though I continue to keep updated to Slackware current, one day I will have to do a complete reinstall when he decides to use the new kernel and header files. It seems that would be the thing to do.
 
Old 07-01-2005, 08:54 AM   #71
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Quote:
Originally posted by mianve
Code:
it's a Personal Computer and we're all free to run them
I understand that but....

I would prefer to do things as they should be and I belive that Linus would know more about the kernel than anyone else that comes to mind.

I would rather not want to take that rare chance that something would come back to bite me.
I agree with you on that point.

Quote:
While we are talking. I have another question somewhat related to the subject. Someone posted yesterday that Patrick said that Slackware 11 would have a 2.6.x kernel as a default kernel. Wether that's true or not, I imagine somewhere down the road he may go to a kernel other than 2.4.x. be it a 2.6.x or a 2.8.x kernel. I would assume then he would also use new kernel header files.

I would think then he would have to recompile glibc and everything else to work correctly. That being said, I wonder if even though I continue to keep updated to Slackware current, one day I will have to do a complete reinstall when he decides to use the new kernel and header files. It seems that would be the thing to do.
Pat stated that on FreeNode in ##slackware back in January. Here's the log:
http://www.slackware.pl/static/slack...4-Jan-2005.log

If you're running -current, then you'll be upgrading glibc when Patrick does, and if you need to do anything differently, Pat will have included it in the Slackware -current ChangeLog. When he releases Slack-10.2 or
Slack-11.0, you can use the kernel he uses and put it in /usr/src/linux at that time. I think we're going to
see another release of Slackware with a 2.4.x kernel before Slack-11.0 with a 2.6.x ... just my opinion.

You should read the present Slackeare -current ChangeLog thoroughly, cause Pat does keep us pretty
much up-to-date in there.
 
Old 07-01-2005, 09:17 AM   #72
AxXium
Zenwalk Admin
 
Registered: May 2005
Location: Louisiana, U.S.A.
Distribution: Zenwalk Gnu/Linux
Posts: 258

Rep: Reputation: 31
Chinaman.....

I must thank you for the advice and insight into the kernel installation and headers as well as the part about -current.

I hope this post gets read. I'm sure there are a lot of people building there kernel in /usr/src. It is great to pointed in the right direction.

Thanks
 
Old 07-01-2005, 09:23 AM   #73
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Hey, I'm not the brightest star on the planet...I grew up in the backwoods of
Mississippi ;)

I do, however, want to do things The Slackware Way (TM) with my systems, and
run my kernel the Linus Torvalds Way (TM). I've still got a whole lot to learn, and
these 5 Slackware boxen here in China are evidence. Sometimes they are in
different states of disarray. I'm glad this has helped you is some small way.

Sorry to have hijacked xushi's thread, but I don't think he'll mind...especially while
he's in the States and has good news about his heart. ;)

Last edited by Bruce Hill; 07-01-2005 at 09:25 AM.
 
Old 07-01-2005, 09:26 AM   #74
AxXium
Zenwalk Admin
 
Registered: May 2005
Location: Louisiana, U.S.A.
Distribution: Zenwalk Gnu/Linux
Posts: 258

Rep: Reputation: 31
Code:
Hey, I'm not the brightest star on the planet...I grew up in the backwoods of Mississippi
Ha ha, I'm from the bayous of Louisiana yet I feel the same about the Slack & the Linus way.
 
Old 07-01-2005, 09:32 AM   #75
Nobber
Member
 
Registered: Jun 2002
Location: Nova Scotia
Distribution: Debian (home), Kubuntu 7.04 (work)
Posts: 265

Rep: Reputation: 30
For the record, I've always compiled new kernels under /usr/src, never had a problem, and don't expect to. But that's no surprise, since I've never used and never will use a distro with a broken /usr/include/linux tree...
 
  


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
about c comments minil Programming 1 05-02-2005 01:32 AM
I need your comments! gcclinux Linux - Games 1 11-02-2004 05:23 PM
redhat 9 comments ausmedia Linux - Distributions 2 05-04-2003 11:51 AM
Comments Please bigjohn General 9 11-16-2002 10:32 AM
Comments Please webboss Linux - General 2 11-15-2002 07:23 AM

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

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