LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-30-2013, 08:35 AM   #16
slappisMekaniker
Member
 
Registered: Nov 2013
Location: The Blue planet
Distribution: Slackware 14.0
Posts: 64

Original Poster
Rep: Reputation: 6

Quote:
Originally Posted by jkirchner View Post
I am curious, and this may not have anything to do with it, but why are you doing all this as root in /usr/local/src (Yes, the slackbuilds are run later as root, I know, I do all them from home folder I call builds, and run as root)? I have always done my c programs as normal user in my home directory in a subfolder I name bin, using a straight normal full install of Slackware and have never had an issue. Is this just a stock Slackware install you are using?
So as a normal user in which directory should i have to compile and install packages?? If any link explaining the proper usage of compiling and installing the packages or to test packages without installing them, would be pleasing!!
Quote:
Originally Posted by jkirchner View Post
Have you installed Slackware64 or the 32 bit version? And if the 64, are you multi-lib?
Slackware 32 full installation
 
Old 11-30-2013, 08:43 AM   #17
jkirchner
Member
 
Registered: Apr 2007
Location: West Virginia
Distribution: Pop!_OS
Posts: 945

Rep: Reputation: 297Reputation: 297Reputation: 297
Quote:
Originally Posted by slappisMekaniker View Post
So as a normal user in which directory should i have to compile and install packages?? If any link explaining the proper usage of compiling and installing the packages or to test packages without installing them, would be pleasing!!

Slackware 32 full installation
No. When you download slackbuilds you would unpack the slackbuild as user, and then run the slackbuild as root, so you are correct, you run that as root. I always keep packages in my home directory. I unpack them, then cd into the directory created from unpacking the slackbuild. I su - into root and then run the slackbuild. When it is done, still as root, I installpkg /tmp/name-of-packge and then when done, I exit root back to normal user.

For anything I write, I do it in my home direcory, just wirte the program, save it, compile it and run it all as a normal user. You do not have to run make and install on it.

I was asking for the testing why you are using root to compile a small c program, that is all. I have installed and run slackware many times and still use it on another pc. I have never had a problem compiling c programs using a stock install, a full install, of Slackware.

Last edited by jkirchner; 11-30-2013 at 09:11 AM.
 
Old 11-30-2013, 10:02 AM   #18
slappisMekaniker
Member
 
Registered: Nov 2013
Location: The Blue planet
Distribution: Slackware 14.0
Posts: 64

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by jkirchner View Post
No. When you download slackbuilds you would unpack the slackbuild as user, and then run the slackbuild as root, so you are correct, you run that as root. I always keep packages in my home directory. I unpack them, then cd into the directory created from unpacking the slackbuild. I su - into root and then run the slackbuild. When it is done, still as root, I installpkg /tmp/name-of-packge and then when done, I exit root back to normal user.

For anything I write, I do it in my home direcory, just wirte the program, save it, compile it and run it all as a normal user. You do not have to run make and install on it.
Exactly the same is I do..

Quote:
Originally Posted by jkirchner View Post
I was asking for the testing why you are using root to compile a small c program, that is all. I have installed and run slackware many times and still use it on another pc. I have never had a problem compiling c programs using a stock install, a full install, of Slackware.
Actually I was trying to compile the package in usr/local/src. So hand in hand I did checking of the c prog. thats all. But I am still curious and confused when I do check them in any directory it results
Code:
slacker@slappisMekaniker:~/Documents$ gcc simple.c
\simple.c:1:19: fatal error: stdio.h: No such file or directory
compilation terminated.
slacker@slappisMekaniker:~/Documents$
 
Old 12-02-2013, 04:23 PM   #19
selfprogrammed
Member
 
Registered: Jan 2010
Location: Minnesota, USA
Distribution: Slackware 13.37, 14.2, 15.0
Posts: 635

Rep: Reputation: 154Reputation: 154
It looks like two failures to check
1. gcc cannot find <stdio.h>
2. gcc cannot write output files


To verify this compile this even simpler program that does not access any include.


int main( void )
{
int i = 1234;
return i;
}

Do this in your home directory, so there are no permissions problems.
>> gcc simpler.c -o simpler.o
>> gcc simpler.o -o simpler
>> ./simpler


Are going to need specifics about the gcc install now.

Exactly which version of Slackware is this.


Exactly what version of gcc is this.
>> gcc --version

Which gcc packages got installed
>> ls /var/log/packages/*gcc*

>> ls /var/log/packages/*include*


I expect that you have a Slackware that is newer than mine, and the developers
could have done something strange with the include location, so your will have to get a response from someone with that same gcc package installed.

The default answer is to uninstall the gcc and include files (removepkg) and then re-install them using pkgtool. There is also a reinstallpkg option. The package should install them in the correct location for the gcc. Sometimes the last step runs a script and that may fail due to conflicts. But the location of files is kept in a tar file with the entire directory structure, so it is hard for it to make a mistake.
I expect that something is crossed up like having the wrong gcc, or maybe you added a later package with a different gcc that corrupted the install of the Slackware supplied gcc.
 
Old 12-03-2013, 01:01 PM   #20
selfprogrammed
Member
 
Registered: Jan 2010
Location: Minnesota, USA
Distribution: Slackware 13.37, 14.2, 15.0
Posts: 635

Rep: Reputation: 154Reputation: 154
stdio.h is part of the C-lib, not part of gcc.
The headers like stdio.h must match the implementation of the C-lib.
Any header files that are part of gcc will redirect to the C-lib headers.
Look at the gcc header files, they are short, have a few tests and have a #include of the actual C-lib header.
I expect that something is seriously wrong with your C-lib (glibc) package installation.
It may have been in two parts, glibc and glibc-dev, and you need the dev part too.

Slackware uses glibc (GNU-C-library).
Do not switch to a different C-lib package.
Everything in the Slackware distribution is linked against the particular version of glibc that came with that Slackware.
If you must update the C-lib, it is much safer to get a newer release of Slackware.
I did manage to update glibc from an updated package from Slackware.

>> ls /var/log/packages/*gcc*
>> ls /var/log/packages/*libc*


My stdio, as installed by Slackware

>> grep stdio /var/log/packages/* | grep libc

/s9/var/log/packages/glibc-2.13-i486-4:usr/include/stdio.h
/s9/var/log/packages/glibc-2.13-i486-4:usr/include/bits/stdio.h
/s9/var/log/packages/glibc-2.13-i486-4:usr/include/bits/stdio2.h
/s9/var/log/packages/glibc-2.13-i486-4:usr/include/bits/stdio-ldbl.h
/s9/var/log/packages/glibc-2.13-i486-4:usr/include/bits/stdio-lock.h
/s9/var/log/packages/glibc-2.13-i486-4:usr/include/bits/stdio_lim.h
/s9/var/log/packages/glibc-2.13-i486-4:usr/include/stdio_ext.h

Last edited by selfprogrammed; 12-03-2013 at 01:25 PM.
 
Old 12-04-2013, 04:48 AM   #21
slappisMekaniker
Member
 
Registered: Nov 2013
Location: The Blue planet
Distribution: Slackware 14.0
Posts: 64

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by selfprogrammed View Post
int main( void )
{
int i = 1234;
return i;
}

Do this in your home directory, so there are no permissions problems.
>> gcc simpler.c -o simpler.o
>> gcc simpler.o -o simpler
>> ./simpler
this was the thing i was shown when i ran "gcc simple.c -o simpler.o
Code:
slacker@slappisMekaniker:~/Documents$ gcc simple.c -o simpler.o
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find crt1.o: No such file or directory
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find crti.o: No such file or directory
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find -lc
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find crtn.o: No such file or directory
collect2: error: ld returned 1 exit status
Slackware 14.0
Code:
slacker@slappisMekaniker:~/Documents$ gcc --version
gcc (GCC) 4.7.1
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Quote:
Which gcc packages got installed
>> ls /var/log/packages/*gcc*

>> ls /var/log/packages/*include*
Code:
slacker@slappisMekaniker:~/Documents$ ls /var/log/packages/*gcc*
/var/log/packages/gcc-4.7.1-i486-1
/var/log/packages/gcc-g++-4.7.1-i486-1
/var/log/packages/gcc-gfortran-4.7.1-i486-1
/var/log/packages/gcc-gnat-4.7.1-i486-1
/var/log/packages/gcc-go-4.7.1-i486-1
/var/log/packages/gcc-java-4.7.1-i486-1
/var/log/packages/gcc-objc-4.7.1-i486-1
/var/log/packages/gccmakedep-1.0.2-noarch-2
slacker@slappisMekaniker:~/Documents$ ls /var/log/packages/*include*
/bin/ls: cannot access /var/log/packages/*include*: No such file or directory
slacker@slappisMekaniker:~/Documents$

These are the things i got while checking for gcc as per your given hint... So should i have to reinstall the gcc?
 
Old 12-04-2013, 04:56 AM   #22
slappisMekaniker
Member
 
Registered: Nov 2013
Location: The Blue planet
Distribution: Slackware 14.0
Posts: 64

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by selfprogrammed View Post
>> ls /var/log/packages/*gcc*
>> ls /var/log/packages/*libc*
for the command,
Code:
slacker@slappisMekaniker:~/Documents$ ls /var/log/packages/*libc*
/var/log/packages/glibc-i18n-2.15-i486-7
/var/log/packages/glibc-profile-2.15-i486-7
/var/log/packages/glibc-solibs-2.15-i486-8_slack14.0
/var/log/packages/glibc-zoneinfo-2012f_2012f-noarch-7
/var/log/packages/libcaca-0.99.beta18-i486-2
/var/log/packages/libcanberra-0.29-i486-1
/var/log/packages/libcap-2.22-i486-1
/var/log/packages/libcddb-1.3.2-i486-2
/var/log/packages/libcdio-0.83-i486-1
/var/log/packages/libcgroup-0.38-i486-1
/var/log/packages/libcroco-0.6.5-i486-1
slacker@slappisMekaniker:~/Documents$
Quote:
>> grep stdio /var/log/packages/* | grep libc
when i do run this command there is no execution!! Am i supposed how to use this one?? could you please explain me??
 
Old 12-04-2013, 01:14 PM   #23
Spect73
Member
 
Registered: Aug 2013
Distribution: Slackware 14.1
Posts: 128

Rep: Reputation: Disabled
Quote:
Originally Posted by selfprogrammed View Post
>> gcc simpler.c -o simpler.o
>> gcc simpler.o -o simpler
>> ./simpler

This will not work on Slackware 14 which is what slappisMekaniker said he installed. That first line compiles the program to a fully executable image and outputs it to a file named simpler.o. It does not just create an object file. Running that second line will produce tons of errors about having multiple definitions. The errors are correct as the source file has already been compiled to an object code format and the final linking has been done. To compile simpler.c to an object file, the command "gcc -c simpler.c" would be used.

I've used Slackware for many years and don't ever remember it failing to produce an executable when given that first line, as that line is written. Just to verify all that I've said, I just did it.

Coordially,
 
Old 12-04-2013, 01:36 PM   #24
Spect73
Member
 
Registered: Aug 2013
Distribution: Slackware 14.1
Posts: 128

Rep: Reputation: Disabled
slappisMekaniker,
Sorry to see you are having so many difficulties. I've just finished downloading all of the Glorious Haskell Compliler material from Slackbuilds. Give me a few days to attempt to build it. Your original problem was caused by a line in the configure script that did this:
Code:
gcc -V
which your version of gcc doesnot support. That was the fatal error that prevented the build from continuing.

As to the other errors which seem to prevent you from compiling even a simple program, those may or may not be germane to the problem. You have indicated that you have built Slackbuilds packages before, so I will assume that at least at one time you had a working Slackware 14 environment.

In the meantime, if you will be so kind, please verify that you do indeed have a full, complete Slackware 14.0 installation. And yes, this means one where nothing in gcc or the libc has been mucked with. I'm sure we can get you through this, though it may take awhile.

Coordially,
 
Old 12-05-2013, 02:39 AM   #25
slappisMekaniker
Member
 
Registered: Nov 2013
Location: The Blue planet
Distribution: Slackware 14.0
Posts: 64

Original Poster
Rep: Reputation: 6
Well Spect73, Thank you in advance for your help! It is good to have problems ofcourse to develop my abilities in finding out and solving them!! Any how I think you are doing a great work!
 
Old 12-05-2013, 01:13 PM   #26
selfprogrammed
Member
 
Registered: Jan 2010
Location: Minnesota, USA
Distribution: Slackware 13.37, 14.2, 15.0
Posts: 635

Rep: Reputation: 154Reputation: 154
As Spec73 noticed I forgot the -c on the gcc command.
>> gcc -c simpler.c -o simpler.o

but as said a one step compile should also work:
>> gcc simpler.c -o simpler

The problem is that it failed, and the output shows that you do have a second problem, besides the include problem.

Do not get hung up on the -V in the configure run. As I said it looks to be a test for another compiler. The configure tries two other gcc commands after that line, one of which looks valid for your gcc compiler.
 
Old 12-05-2013, 02:29 PM   #27
Spect73
Member
 
Registered: Aug 2013
Distribution: Slackware 14.1
Posts: 128

Rep: Reputation: Disabled
Quote:
Originally Posted by selfprogrammed View Post
As Spec73 noticed I forgot the -c on the gcc command.
>> gcc -c simpler.c -o simpler.o

but as said a one step compile should also work:
>> gcc simpler.c -o simpler

The problem is that it failed, and the output shows that you do have a second problem, besides the include problem.

Do not get hung up on the -V in the configure run. As I said it looks to be a test for another compiler. The configure tries two other gcc commands after that line, one of which looks valid for your gcc compiler.
Indeed Sir, you are correct. I just built the ghc package successfully, and I found the same error in my config.log. I've learned something new. Thanks.

The only other errors in slappisMekanikers' config.log were:
Code:
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find crt1.o: No such file or directory
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find crti.o: No such file or directory
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find -lc
/usr/lib/gcc/i486-slackware-linux/4.7.1/../../../../i486-slackware-linux/bin/ld: cannot find crtn.o: No such file or directory
The only time I've ever encountered these was when building a Linux From Scratch system and I'd dorked either the libc or gcc build. Further help would be appreciated, as I've reached the limits of my knowledge.

Coordially,
 
Old 12-05-2013, 02:47 PM   #28
selfprogrammed
Member
 
Registered: Jan 2010
Location: Minnesota, USA
Distribution: Slackware 13.37, 14.2, 15.0
Posts: 635

Rep: Reputation: 154Reputation: 154
You are missing this package (your distribution may have 2.14 or 2.15).
These are the first lines of /var/log/packages/glibc-2.13-i486-5_slack13.37.
It contains the include files, and also contains the crt1, ctri, and crtn files that you are missing
to compile simpler.c.
It is a standard development package in Slackware, so it must not have been installed.

Code:
PACKAGE NAME:     glibc-2.13-i486-5_slack13.37
COMPRESSED PACKAGE SIZE:     11M
UNCOMPRESSED PACKAGE SIZE:     130M
PACKAGE LOCATION: ./glibc-2.13-i486-5_slack13.37.txz
PACKAGE DESCRIPTION:
glibc: glibc (GNU C libraries)
glibc:
glibc: This package contains the GNU C libraries and header files.  The GNU
glibc: C library was written originally by Roland McGrath, and is currently
glibc: maintained by Ulrich Drepper.  Some parts of the library were
glibc: contributed or worked on by other people.
glibc:
glibc: You'll need this package to compile programs.
glibc:
glibc:
glibc:
...
usr/include/
usr/include/bits/
usr/include/bits/printf-ldbl.h
usr/include/bits/semaphore.h
...
usr/lib/libc.a
usr/lib/libpthread.so
usr/lib/Scrt1.o
usr/lib/librpcsvc.a
usr/lib/libdl.a
usr/lib/libpthread_nonshared.a
usr/lib/libmcheck.a
usr/lib/libutil.a
usr/lib/libieee.a
usr/lib/gcrt1.o
usr/lib/libbsd-compat.a
usr/lib/libc.so
usr/lib/libg.a
**** GREP:
You must reconsider if you actually got a full install as grep is a basic command.
You may have mistyped it, but that should have got an error message.

grep, fgrep, egrep, zegrep, zgrep, zfgrep are installed by package grep-2.7-i486-1
zipgrep is installed by package infozip-6.0-i486-1
xzgrep is installed by package xz-5.0.2-i486-1
rgrep is installed by package jed-0.99_19-i486-1
bzgrep is installed by package bzip2-1.0.6-i486-1
msggrep is installed by package gettext-tools-0.18.1.1-i486-1

I would suggest checking, or just reinstalling these packages.

****
I do not have a full install but do have the following packages.
There are some strange ones in the list, but you should have most of them.
The Slackware discs have an accompanying txt file for each package to see what it is.
Many packages like fvwm, kernel, loudmouth, aalib, are completely optional.
And you don't need xf86 packages for hardware you do not have.

Code:
ConsoleKit-0.4.3-i486-1
M2Crypto-0.20.2-i486-1
MPlayer-20101218-i486-1
PyQt-4.8.1-i486-1
QScintilla-2.4.5-i486-2
a2ps-4.14-i486-5
aaa_base-13.37-i486-3
aaa_elflibs-13.37-i486-7
aaa_terminfo-5.8-i486-1
aalib-1.4rc5-i486-3
acl-2.2.50-i486-1
acpid-2.0.9-i486-1
akonadi-1.4.1-i486-3
alpine-2.00-i486-3
alsa-lib-1.0.24.1-i486-1
alsa-oss-1.0.17-i486-1
alsa-utils-1.0.24.2-i486-1
amarok-2.4.0-i486-1
amp-0.7.6-i386-1
anthy-9100h-i486-1
appres-1.0.3-i486-1
apr-1.4.5-i486-1_slack13.37
apr-util-1.4.1-i486-1_slack13.37
ash-0.4.0-i486-2
aspell-0.60.6-i486-1
aspell-en-6.0_0-noarch-4
at-3.1.12-i486-1
atk-1.32.0-i486-1
attica-0.1.4-i486-1
attr-2.4.45-i486-1
audacious-2.4.4-i486-1
audacious-plugins-2.4.4-i486-1
audiofile-0.2.7-i486-1
aumix-2.9.1-i486-1
autoconf-2.68-noarch-1
autofs-5.0.5-i486-1
automake-1.11.1-noarch-2
automoc4-0.9.88-i486-1
babl-0.1.2-i486-1
bash-4.1.010-i486-1
bc-1.06.95-i486-1
bdftopcf-1.0.3-i486-1
beforelight-1.0.4-i486-1
bigreqsproto-1.1.1-noarch-1
bin-11.1-i486-1
binutils-2.21.51.0.6-i486-1
bison-2.4.3-i486-2
bitmap-1.0.5-i486-1
blackbox-0.70.1-i486-4
boost-1.45.0-i486-1
bpe-2.01.00-i486-1
bsd-games-2.13-i486-11
bzip2-1.0.6-i486-1
ca-certificates-20111211-noarch-1_slack13.37
cairo-1.10.2-i486-2
ccache-3.1.4-i486-1
cdparanoia-III_10.2-i486-1
cdrdao-1.2.3-i486-1
cdrtools-3.01a02-i486-1
chmlib-0.40-i486-2
clucene-0.9.21b-i486-1
cmake-2.8.4-i486-1
compiz-0.8.8-i486-1
compositeproto-0.4.2-noarch-1
coreutils-8.15-i486-1_slack13.37
cpio-2.11-i486-1
cpufrequtils-008-i486-1
crda-1.1.1-i486-1
cups-1.4.6-i486-1
curl-7.21.4-i486-1
cvs-1.11.23-i486-1
cxxlibs-6.0.14-i486-1
cyrus-sasl-2.1.23-i486-1
damageproto-1.2.1-noarch-1
db42-4.2.52-i486-3
db44-4.4.20-i486-2
dbus-1.4.1-i486-1
dbus-glib-0.88-i486-1
dbus-python-0.83.1-i486-1
dc3dd-6.12.3-i486-1
dcron-4.4-i486-1
ddrescue-1.14-i486-1
dejavu-fonts-ttf-2.33-noarch-1
desktop-file-utils-0.16-i486-2
dev86-0.16.17-i486-1
devs-2.3.1-noarch-25
dhcp-4.2.1_P1-i486-1
dhcpcd-5.2.12-i486-1_slack13.37
dialog-1.1_20100428-i486-2
diffstat-1.53-i486-1
diffutils-3.0-i486-1
dirmngr-1.1.0-i486-1
djvulibre-3.5.24-i486-1
dmapi-2.2.10-i486-1
dmidecode-2.11-i486-1
dmxproto-2.3.1-noarch-1
dosfstools-3.0.11-i486-2
doxygen-1.7.3-i486-1
dri2proto-2.3-i486-1
e2fsprogs-1.41.14-i486-1
ebook-tools-0.1.1-i486-2
ed-1.4-i486-1
editres-1.0.5-i486-1
eigen2-2.0.10-i486-1
eject-2.1.5-i486-2
elm-2.5.8-i486-3
elvis-2.2_0-i486-2
enchant-1.5.0-i486-1
encodings-1.0.4-noarch-1
enscript-1.6.5.2-i486-1
epic5-1.1.2-i486-1
esound-0.2.41-i486-1
etc-13.013-i486-1
ethtool-2.6.36-i486-1
evieext-1.1.1-noarch-1
exiv2-0.21.1-i486-1
expat-2.0.1-i486-2
expect-5.44.1.15-i486-1
fetchmail-6.3.20-i486-1_slack13.37
fftw-3.2.2-i486-1
file-5.05-i486-1
findutils-4.4.2-i486-1
fixesproto-5.0-i486-1
flac-1.2.1-i486-3
flex-2.5.35-i486-1
floppy-5.4-i386-3
fluxbox-1.3.1-i486-1
font-adobe-100dpi-1.0.3-noarch-1
font-adobe-75dpi-1.0.3-noarch-1
font-adobe-utopia-100dpi-1.0.4-noarch-1
font-adobe-utopia-75dpi-1.0.4-noarch-1
font-adobe-utopia-type1-1.0.4-noarch-1
font-alias-1.0.3-noarch-1
font-arabic-misc-1.0.3-noarch-1
font-bh-100dpi-1.0.3-noarch-1
font-bh-75dpi-1.0.3-noarch-1
font-bh-lucidatypewriter-100dpi-1.0.3-noarch-1
font-bh-lucidatypewriter-75dpi-1.0.3-noarch-1
font-bh-ttf-1.0.3-noarch-1
font-bh-type1-1.0.3-noarch-1
font-bitstream-100dpi-1.0.3-noarch-1
font-bitstream-75dpi-1.0.3-noarch-1
font-bitstream-speedo-1.0.2-noarch-1
font-bitstream-type1-1.0.3-noarch-1
font-cronyx-cyrillic-1.0.3-noarch-1
font-cursor-misc-1.0.3-noarch-1
font-daewoo-misc-1.0.3-noarch-1
font-dec-misc-1.0.3-noarch-1
font-ibm-type1-1.0.3-noarch-1
font-isas-misc-1.0.3-noarch-1
font-jis-misc-1.0.3-noarch-1
font-micro-misc-1.0.3-noarch-1
font-misc-cyrillic-1.0.3-noarch-1
font-misc-ethiopic-1.0.3-noarch-1
font-misc-meltho-1.0.3-noarch-1
font-misc-misc-1.1.2-noarch-1
font-mutt-misc-1.0.3-noarch-1
font-schumacher-misc-1.1.2-noarch-1
font-screen-cyrillic-1.0.4-noarch-1
font-sony-misc-1.0.3-noarch-1
font-sun-misc-1.0.3-noarch-1
font-util-1.2.0-i486-1
font-winitzki-cyrillic-1.0.3-noarch-1
font-xfree86-type1-1.0.4-noarch-1
fontcacheproto-0.1.3-noarch-1
fontconfig-2.8.0-i486-1
fontsproto-2.1.1-noarch-1
fonttosfnt-1.0.4-i486-1
foomatic-filters-4.0.6-i486-1
freetype-2.4.4-i486-1
fribidi-0.10.9-i486-2
fslsfonts-1.0.3-i486-1
fstobdf-1.0.4-i486-1
fuse-2.8.5-i486-1
fvwm-2.4.20-i486-2
gamin-0.1.10-i486-3
gawk-3.1.8-i486-1
gcc-4.5.2-i486-2
gcc-g++-4.5.2-i486-2
gcc-java-4.5.2-i486-2
gcc-objc-4.5.2-i486-2
gccmakedep-1.0.2-noarch-2
gd-2.0.35-i486-4
gdb-7.2-i486-2
gdbm-1.8.3-i486-4
gdisk-0.6.14-i486-1
gdk-pixbuf2-2.23.3-i486-1
geeqie-1.0-i486-3
gegl-0.1.2-i486-1
getmail-4.20.0-i486-1
gettext-0.18.1.1-i486-1
gettext-tools-0.18.1.1-i486-1
gftp-2.0.19-i486-1
ghostscript-9.02-i486-1_slack13.37
ghostscript-fonts-std-8.11-noarch-1
giflib-4.1.6-i486-1
gimp-2.6.11-i486-3
git-1.7.4.4-i486-1
gkrellm-2.3.5-i486-1
glew-1.5.7-i486-1
glib-1.2.10-i486-3
glib2-2.28.6-i486-1
glibc-2.13-i486-5_slack13.37
glibc-profile-2.13-i486-4
glibc-solibs-2.13-i486-5_slack13.37
glibc-zoneinfo-2.13-noarch-5_slack13.37
glproto-1.4.12-noarch-1
gmime-2.4.15-i486-1
gmm-3.1-noarch-1
gmp-5.0.1-i486-1
gnome-icon-theme-2.31.0-i486-1
gnuchess-5.08-i486-2
gnupg-1.4.11-i486-1
gnupg2-2.0.17-i486-1
gnuplot-4.4.3-i486-1
gnutls-2.10.5-i486-1
gpa-0.7.5-i486-1
gperf-3.0.4-i486-1
gpgme-1.3.0-i486-1
gphoto2-2.4.10-i486-1
gpm-1.20.1-i486-5
grep-2.7-i486-1
groff-1.21-i486-1
gst-plugins-base-0.10.32-i486-1
gst-plugins-good-0.10.28-i486-2
gstreamer-0.10.32-i486-1
gtk+-1.2.10-i486-5
gtk+2-2.24.4-i486-1
gtkspell-2.0.16-i486-1
gucharmap-2.33.2-i486-1
guile-1.8.8-i486-1
gutenprint-5.2.6-i486-1
gv-3.7.1-i486-2
gzip-1.4-i486-1
hal-0.5.14-i486-3
hal-info-20091130-noarch-1
hdparm-9.37-i486-1
hicolor-icon-theme-0.12-noarch-1
hplip-3.11.3a-i486-1
hunspell-1.2.9-i486-1
iceauth-1.0.4-i486-1
icmpinfo-1.11-i486-1
ico-1.0.3-i486-1
icon-naming-utils-0.8.90-i486-2
idnkit-1.0-i486-1
ilmbase-1.0.2-i486-1
imagemagick-6.6.6_10-i486-1
imake-1.0.4-i486-1
imapd-2.00-i486-1
imlib-1.9.15-i486-7
indent-2.2.10-i486-1
inetd-1.79s-i486-8
infozip-6.0-i486-1
inotify-tools-3.14-i486-1
inputproto-2.0.1-noarch-1
intel-gpu-tools-1.0.2-i486-1
intltool-0.41.1-i486-1
iproute2-2.6.37-i486-1
iptables-1.4.10-i486-1
iptraf-ng-1.0.2-i486-2
iputils-s20101006-i486-1
irssi-0.8.15-i486-3
iso-codes-3.24.2-noarch-1
ispell-3.2.06-i386-1
jasper-1.900.1-i486-3
jed-0.99_19-i486-1
joe-3.7-i486-1
jre-6u25-i586-1
k3b-2.0.2-i486-2
kaudiocreator-r1212483-i486-1
kbd-1.15.2-i486-1
kbproto-1.0.5-noarch-1
kdeaccessibility-4.5.5-i486-1
kdeadmin-4.5.5-i486-2
kdeartwork-4.5.5-i486-2
kdebase-4.5.5-i486-3
kdebase-runtime-4.5.5-i486-2
kdebase-workspace-4.5.5-i486-1
kdebindings-4.5.5-i486-2
kdeedu-4.5.5-i486-1
kdegames-4.5.5-i486-1
kdegraphics-4.5.5-i486-3
kdelibs-4.5.5-i486-2
kdemultimedia-4.5.5-i486-1
kdenetwork-4.5.5-i486-1
kdepim-4.4.10-i486-1
kdepim-runtime-4.4.10-i486-1
kdepimlibs-4.5.5-i486-2
kdeplasma-addons-4.5.5-i486-1
kdesdk-4.5.5-i486-1
kdetoys-4.5.5-i486-1
kdeutils-4.5.5-i486-1
kdevelop-4.2.2-i486-1
kdevplatform-1.2.2-i486-1
kdewebdev-4.5.5-i486-1
kernel-firmware-2.6.37.6-noarch-2
kernel-generic-2.6.37.6-i486-2
kernel-headers-2.6.37.6_smp-x86-2
kernel-huge-2.6.37.6-i486-2
kernel-huge-smp-2.6.37.6_smp-i686-2
kernel-modules-2.6.37.6-i486-2
kernel-modules-smp-2.6.37.6_smp-i686-2
kernel-source-2.6.37.6_smp-noarch-2
koffice-2.3.3-i486-2
konq-plugins-4.4.0-i486-2
kopete-cryptography-1.3.0_kde4.4.0-i486-1
lcms-1.19-i486-1
less-443-i486-1
lesstif-0.95.2-i486-1
lftp-4.2.2-i486-1
lha-114i-i486-1
libFS-1.0.3-i486-1
libICE-1.0.7-i486-1
libSM-1.2.0-i486-1
libX11-1.4.3-i486-2
libXScrnSaver-1.2.1-i486-1
libXau-1.0.6-i486-1
libXaw-1.0.9-i486-1
libXcomposite-0.4.3-i486-1
libXcursor-1.1.11-i486-1
libXdamage-1.1.3-i486-1
libXdmcp-1.1.0-i486-1
libXevie-1.0.3-i486-1
libXext-1.2.0-i486-1
libXfixes-5.0-i486-1
libXfont-1.4.3-i486-1
libXfontcache-1.0.5-i486-1
libXft-2.2.0-i486-1
libXi-1.4.2-i486-1
libXinerama-1.1.1-i486-1
libXmu-1.1.0-i486-1
libXp-1.0.1-i486-1
libXpm-3.5.9-i486-1
libXrandr-1.3.1-i486-1
libXrender-0.9.6-i486-1
libXres-1.0.5-i486-1
libXt-1.1.1-i486-1
libXtst-1.2.0-i486-1
libXv-1.0.6-i486-1
libXvMC-1.0.6-i486-1
libXxf86dga-1.1.2-i486-1
libXxf86misc-1.0.3-i486-1
libXxf86vm-1.1.1-i486-1
libaio-0.3.109-i486-1
libao-1.1.0-i486-1
libarchive-2.8.4-i486-1
libart_lgpl-2.3.21-i486-1
libassuan-2.0.1-i486-1
libcaca-0.99.beta16-i486-3
libcap-2.20-i486-1
libcddb-1.3.2-i486-1
libcdio-0.79-i486-1
libcgroup-0.37.1-i486-1
libdbusmenu-qt-0.6.4-i486-1
libdiscid-0.2.2-i486-1
libdmx-1.1.1-i486-1
libdrm-2.4.23-i486-1
libdvdread-4.1.3-i486-1
libelf-0.8.13-i486-2
liberation-fonts-ttf-1.06.0.20100721-noarch-3
libexif-0.6.20-i486-1
libfontenc-1.1.0-i486-1
libgcrypt-1.4.6-i486-1
libglade-2.6.4-i486-4
libgpg-error-1.9-i486-1
libgphoto2-2.4.10.1-i486-1
libgpod-0.8.0-i486-2
libgsf-1.14.20-i486-1
libical-0.44-i486-1
libid3tag-0.15.1b-i486-4
libidl-0.8.14-i486-1
libidn-1.19-i486-1
libieee1284-0.2.11-i486-2
libiodbc-3.52.7-i486-2
libjpeg-v8a-i486-1
libkarma-0.1.1-i486-2
libksba-1.2.0-i486-1
libktorrent-1.0.5_3-i486-1
liblastfm-0.3.3_f0b3239-i486-1
libmad-0.15.1b-i486-3
libmcrypt-2.5.8-i486-1
libmcs-0.7.2-i486-1
libmng-1.0.10-i486-2
libmowgli-0.7.1-i486-1
libmpc-0.8.2-i486-2
libmsn-4.1-i486-1
libmtp-1.0.1-i486-2
libnjb-2.2.6-i486-5
libnl-1.1-i486-1
libnotify-0.5.2-i486-1
libogg-1.2.2-i486-1
liboggz-1.1.1-i486-1
liboil-0.3.17-i486-1
libpcap-1.1.1-i486-1
libpciaccess-0.12.1-i486-1
libplist-1.3-i486-1
libpng-1.4.8-i486-1_slack13.37
libpthread-stubs-0.3-noarch-1
librsvg-2.32.0-i486-1
libsamplerate-0.1.7-i486-2
libsndfile-1.0.24-i486-1
libspectre-0.2.5-i486-2
libtermcap-1.2.3-i486-7
libtheora-1.1.1-i486-1
libtiff-3.9.4-i486-2
libtool-2.4-i486-1
libusb-1.0.8-i486-2
libvisual-0.4.0-i486-2
libvisual-plugins-0.4.0-i486-2
libvncserver-0.9.7-i486-2
libvorbis-1.3.2-i486-1
libwmf-0.2.8.4-i486-5
libwmf-docs-0.2.8.4-noarch-5
libwnck-2.30.6-i486-1
libwpd-0.8.14-i486-1
libx86-1.1-i486-1
libxcb-1.7-i486-1
libxkbfile-1.0.7-i486-1
libxklavier-5.1-i486-1
libxml2-2.7.8-i486-3
libxslt-1.1.26-i486-1
libzip-0.9.3-i486-1
lilo-22.8-i486-16
links-2.3pre1-i486-1
linux-faqs-20060228-noarch-1
linux-howtos-20110210-noarch-1
linuxdoc-tools-0.9.66-i486-8
listres-1.0.2-i486-1
lm_sensors-3.1.2-i486-1
lndir-1.0.2-i486-1
logrotate-3.7.8-i486-1
loudmouth-1.4.3-i486-1
lrzip-0.602-i486-1
lsof-4.83-i486-1
lsscsi-0.24-i486-1
luit-1.1.0-i486-1
lynx-2.8.7-i486-1
lzo-2.03-i486-1
m17n-lib-1.6.1-i486-1
m4-1.4.16-i486-1
madplay-0.15.2b-i486-3
mailx-12.4-i486-1
make-3.82-i486-3_slack_13.37
makedepend-1.0.3-i486-1
man-1.6g-i486-1
man-pages-3.32-noarch-1
mc-4.7.5.2-i486-1
mcabber-0.10.1-i486-1
mcelog-1.0pre3-i486-1
mesa-7.9.2-i486-1
metamail-2.7-i486-5
mhash-0.9.9.9-i486-3
minicom-2.5-i486-1
mkcomposecache-1.2.1-i486-1
mkfontdir-1.0.6-noarch-1
mkfontscale-1.0.8-i486-1
mm-1.4.2-i486-2
moc-2.5.0_alpha4-i486-1
module-init-tools-3.12-i486-2
most-5.0.0a-i486-2
mozilla-firefox-10.0.1-i486-1_slack13.37
mozilla-thunderbird-3.1.9-i486-2
mpfr-3.0.1-i486-1
mpg123-1.13.3-i486-1
mtr-0.80-i486-1
mutt-1.5.21-i486-1
mysql-5.1.56-i486-1
nano-2.3.0-i486-1
nasm-2.09.04-i486-1
nc-1.10-i386-1
ncftp-3.2.5-i486-1
ncompress-4.2.4.3-i486-1
ncurses-5.9-i486-1
neon-0.29.5-i486-1
net-snmp-5.6.1-i486-1
net-tools-1.60-i486-3
netkit-ntalk-0.17-i486-2
netpbm-10.49.02-i486-1
netpipes-4.2-i386-1
netwatch-1.3.0-i486-1
network-scripts-13.0-noarch-3
nn-6.7.3-i486-3
normalize-0.7.7-i486-1
notify-python-0.1.1-i486-1
ntfs-3g-2011.1.15-i486-1
ntfsprogs-2.0.0-i486-2
obex-data-server-0.4.5-i486-2
obexfs-0.12-i486-1
obexftp-0.23-i486-5
oclock-1.0.2-i486-1
openexr-1.7.0-i486-1
openldap-client-2.4.23-i486-1
openobex-1.5-i486-1
openssh-5.8p1-i486-1
openssl-0.9.8t-i486-1_slack13.37
openssl-solibs-0.9.8t-i486-1_slack13.37
openvpn-2.1.4-i486-2
oxygen-icons-4.5.5-i486-1
pan-0.134-i486-1
pango-1.28.4-i486-1
parted-2.3-i486-1
patch-2.6.1-i486-1
pciutils-3.1.7-i486-1
pcre-8.12-i486-1
perl-5.12.3-i486-1
phonon-4.4.3-i486-1
phonon-mplayer-20101213-i486-1
php-5.3.10-i486-1_slack13.37
pidentd-3.0.19-i486-1
pidgin-2.9.0-i486-1_slack13.37
pil-1.1.7-i486-1
pilot-link-0.12.5-i486-3
pinentry-0.8.1-i486-1
pixman-0.20.2-i486-1
pkg-config-0.25-i486-1
pkgtools-13.37-noarch-9
pm-utils-1.4.1-i486-2
pmake-1.111-i486-4
polkit-0.101-i486-2
polkit-gnome-0.101-i486-1
polkit-kde-1-r1145544-i486-2
polkit-qt-1-r1145513-i486-2
popa3d-1.0.2-i486-2
poppler-0.16.4-i486-1
poppler-data-0.4.4-noarch-1
popt-1.7-i486-3
portmap-6.0-i486-1
powertop-1.13-i486-1
ppp-2.4.5-i486-1
printproto-1.0.5-noarch-1
procmail-3.22-i486-2
procps-3.2.8-i486-3
proftpd-1.3.4a-i486-1_slack13.37
pth-2.0.7-i486-1
pycairo-1.8.10-i486-1
pycups-1.9.55-i486-1
pygobject-2.26.0-i486-1
pygtk-2.22.0-i486-1
pyrex-0.9.9-i486-1
python-2.6.6-i486-1
qca-2.0.2-i486-1
qca-cyrus-sasl-2.0.0_beta3-i486-1
qca-gnupg-2.0.0_beta3-i486-1
qca-ossl-2.0.0_beta3-i486-1
qimageblitz-0.0.6-i486-1
qt-4.7.0_7abde40-i486-3
qtscriptgenerator-0.1.0-i486-2
randrproto-1.3.2-noarch-1
raptor-1.4.21-i486-1
rasqal-0.9.21-i486-1
rcs-5.7-i486-2
rdesktop-1.6.0-i486-2
readline-5.2-i486-4
recordproto-1.14.1-noarch-1
redland-1.0.12-i486-1
reiserfsprogs-3.6.21-i486-1
rendercheck-1.4-i486-1
renderproto-0.11.1-noarch-1
resourceproto-1.1.1-noarch-1
rexima-1.4-i486-1
rfkill-0.4-i486-1
rgb-1.0.4-i486-1
rpm-4.8.1-i486-1
rpm2tgz-1.2.2-i486-1
rsync-3.0.8-i486-1
ruby-1.9.1_p431-i486-1
rxvt-2.7.10-i486-4
rzip-2.1-i486-1
sane-1.0.22-i486-2
sazanami-fonts-ttf-20040629-noarch-1
sc-7.16-i486-3
scim-1.4.9-i486-5
scim-anthy-1.2.4-i486-2
scim-bridge-0.4.16-i486-5
scim-hangul-0.3.2-i486-2
scim-input-pad-0.1.2-i486-4
scim-m17n-0.2.3-i486-1
scim-pinyin-0.5.91-i486-2
scim-tables-0.5.9-i486-3
screen-4.0.3-i486-1
scripts-1.0.1-noarch-2
scrnsaverproto-1.2.1-noarch-1
sdl-1.2.14-i486-5
sdparm-1.06-i486-1
seamonkey-2.7.1-i486-1_slack13.37
seamonkey-solibs-2.7.1-i486-1_slack13.37
sed-4.2.1-i486-1
seejpeg-1.10-i386-1
sendmail-8.14.4-i486-1
sendmail-cf-8.14.4-noarch-1
sessreg-1.0.6-i486-1
setxkbmap-1.2.0-i486-1
seyon-2.20c-i486-3
shadow-4.1.4.3-i486-2
shared-desktop-ontologies-0.5-i486-1
shared-mime-info-0.90-i486-1
sharutils-4.11-i486-1
showfont-1.0.3-i486-1
sinhala_lklug-font-ttf-20060929-noarch-1
sip-4.11.2-i486-1
skanlite-0.7-i486-1
slackpkg-2.82.0-noarch-5
slang-2.2.3-i486-1
slang1-1.4.9-i486-1
slocate-3.1-i486-3
smartmontools-5.40-i486-1
smproxy-1.0.4-i486-1
snownews-1.5.12-i486-1
soprano-2.5.2-i486-2
sox-14.3.2-i486-1
splitvt-1.6.5-i486-1
sqlite-3.7.5-i486-1
startup-notification-0.10-i486-1
strace-4.5.20-i486-1
strigi-0.7.2-i486-2
stunnel-4.35-i486-1
subversion-1.6.16-i486-1
sudo-1.7.4p6-i486-1
svgalib-1.9.25-i486-2
swig-1.3.38-i486-2
sysfsutils-2.1.0-i486-1
sysklogd-1.5-i486-1
syslinux-3.84-i486-2
sysstat-9.0.6.1-i486-1
system-config-printer-1.2.7-i486-1
sysvinit-2.86-i486-6
sysvinit-functions-8.53-i486-2
sysvinit-scripts-1.2-noarch-43
t1lib-5.1.2-i486-2
taglib-1.6.3-i486-1
taglib-extras-1.0.1-i486-1
tango-icon-theme-0.8.90-noarch-1
tango-icon-theme-extras-0.1.0-noarch-1
tar-1.26-i486-1
tcl-8.5.9-i486-1
tclx-8.4-i486-3
tcp_wrappers-7.6-i486-1
tcpdump-4.1.1-i486-1
telnet-0.17-i486-1
tetex-3.0-i486-8
tetex-doc-3.0-i486-8
texinfo-4.13a-i486-4
tftp-hpa-0.49-i486-1
thunar-volman-0.3.80-i486-1
tibmachuni-font-ttf-1.901b-noarch-1
time-1.7-i486-1
tin-1.8.3-i486-2
tix-8.4.3-i486-2
tk-8.5.9-i486-1
traceroute-2.0.17-i486-1
transfig-3.2.4-i486-3
tree-1.5.3-i486-1
trn-3.6-i386-1
udev-165-i486-2
unarj-265-i486-1
urwid-0.9.9.1-i486-1
usb_modeswitch-1.1.6-i486-1
usbutils-002-i486-1
utempter-1.1.5-i486-1
util-linux-2.19-i486-1
util-macros-1.13.0-noarch-1
uucp-1.07-i486-1
v4l-utils-0.8.3-i486-2
vbetool-1.1-i486-1
videoproto-2.3.1-noarch-1
viewres-1.0.3-i486-1
vim-7.3.154-i486-1
vim-gvim-7.3.154-i486-1
virtuoso-ose-6.1.2-i486-1
vlan-1.9-i486-2
vorbis-tools-1.4.0-i486-1
vsftpd-2.3.5-i486-1_slack13.37
vte-0.26.2-i486-1
wavpack-4.60.1-i486-1
wget-1.12-i486-1
which-2.20-i486-1
whois-5.0.11-i486-1
windowmaker-20060427cvs-i486-4
workbone-2.40-i486-4
wpa_supplicant-0.7.3-i486-3
wv2-0.4.2-i486-1
x11-skel-7.4-i486-2
x11-ssh-askpass-1.2.4.1-i486-2
x11perf-1.5.3-i486-1
xaos-3.5-i686-1
xauth-1.0.5-i486-1
xaw3d-20110415git-i486-1
xbacklight-1.1.2-i486-1
xbiff-1.0.3-i486-1
xbitmaps-1.1.1-i486-1
xcalc-1.0.4.1-i486-1
xcb-proto-1.6-noarch-1
xcb-util-0.3.6-i486-1
xchat-2.8.8-i486-3
xclipboard-1.1.1-i486-1
xclock-1.0.5-i486-1
xcmiscproto-1.2.1-noarch-1
xcmsdb-1.0.3-i486-1
xcompmgr-1.1.5-i486-2
xconsole-1.0.4-i486-1
xcursor-themes-1.0.3-noarch-1
xcursorgen-1.0.4-i486-1
xdbedizzy-1.1.0-i486-1
xdg-user-dirs-0.13-i486-1
xdg-utils-1.1.0_rc1-noarch-1
xditview-1.0.2-i486-1
xdm-1.1.10-i486-1
xdpyinfo-1.2.0-i486-1
xdriinfo-1.0.4-i486-1
xedit-1.2.0-i486-1
xev-1.1.0-i486-1
xextproto-7.2.0-i486-1
xeyes-1.1.1-i486-1
xf86-input-acecad-1.4.0-i486-2
xf86-input-aiptek-1.3.1-i486-1
xf86-input-evdev-2.6.0-i486-1
xf86-input-joystick-1.5.0-i486-1
xf86-input-keyboard-1.6.0-i486-1
xf86-input-mouse-1.7.0-i486-1
xf86-input-penmount-1.4.1-i486-2
xf86-input-synaptics-1.4.0-i486-1
xf86-input-vmmouse-12.7.0-i486-1
xf86-input-void-1.3.1-i486-1
xf86-input-wacom-0.10.11-i486-1
xf86-video-dummy-0.3.4-i486-1
xf86-video-savage-2.3.2-i486-1
xf86-video-vesa-2.3.0-i486-3
xf86bigfontproto-1.2.0-noarch-1
xf86dga-1.0.3-i486-1
xf86dgaproto-2.1-noarch-1
xf86driproto-2.1.1-noarch-1
xf86miscproto-0.9.3-noarch-1
xf86vidmodeproto-2.3.1-noarch-1
xfce-4.6.2-i486-5
xfce4-notifyd-0.1.1-i486-1
xfce4-power-manager-0.8.5-i486-1
xfd-1.1.0-i486-1
xfig-3.2.4-i486-5
xfontsel-1.0.3-i486-1
xfractint-20.04p09-i486-1
xfs-1.1.1-i486-1
xfsdump-3.0.4-i486-1
xfsinfo-1.0.3-i486-1
xgames-0.3-i486-4
xgamma-1.0.4-i486-1
xgc-1.0.3-i486-1
xhost-1.0.4-i486-1
xine-lib-1.1.19-i686-1
xine-ui-0.99.5-i686-3
xineramaproto-1.2.1-noarch-1
xinit-1.3.0-i486-1
xinput-1.5.3-i486-1
xkbcomp-1.2.1-i486-1
xkbevd-1.1.2-i486-1
xkbprint-1.0.3-i486-1
xkbutils-1.0.3-i486-1
xkeyboard-config-2.2.1-noarch-1
xkill-1.0.3-i486-1
xload-1.1.0-i486-1
xlockmore-5.32-i486-1
xlogo-1.0.3-i486-1
xlsatoms-1.1.0-i486-1
xlsclients-1.1.1-i486-1
xlsfonts-1.0.3-i486-1
xmag-1.0.4-i486-1
xman-1.1.1-i486-1
xmessage-1.0.3-i486-1
xmh-1.0.2-i486-1
xmms-1.2.11-i486-4
xmodmap-1.0.5-i486-1
xmore-1.0.2-i486-1
xorg-cf-files-1.0.4-noarch-1
xorg-docs-1.6-noarch-1
xorg-server-1.9.5-i486-1
xorg-server-xnest-1.9.5-i486-1
xorg-sgml-doctools-1.7-i486-1
xpaint-2.8.16-i486-1
xpdf-3.02pl6-i486-3
xpr-1.0.3-i486-1
xprop-1.2.0-i486-1
xproto-7.0.21-noarch-1
xpyb-1.2-i486-1
xrandr-1.3.4-i486-1
xrdb-1.0.9-i486-1
xrefresh-1.0.4-i486-1
xsane-0.998-i486-1
xscope-1.3-i486-1
xscreensaver-5.12-i486-1
xset-1.2.1-i486-1
xsetroot-1.1.0-i486-1
xsm-1.0.2-i486-1
xstdcmap-1.0.2-i486-1
xterm-267-i486-1
xtrans-1.2.6-noarch-1
xv-3.10a-i486-6
xvidtune-1.0.2-i486-1
xvinfo-1.1.1-i486-1
xwd-1.0.4-i486-1
xwininfo-1.1.1-i486-1
xwud-1.0.3-i486-1
xxgdb-1.12-i486-3
xz-5.0.2-i486-1
yasm-1.2.0-i486-1_slack13.37
yptools-2.12-i486-2
ytalk-3.3.0-i486-1
zlib-1.2.5-i486-4
zoo-2.10_22-i486-1
 
Old 12-05-2013, 03:02 PM   #29
selfprogrammed
Member
 
Registered: Jan 2010
Location: Minnesota, USA
Distribution: Slackware 13.37, 14.2, 15.0
Posts: 635

Rep: Reputation: 154Reputation: 154
GREP

Verify that grep is working
>> grep --version

When grep does not find any matching files it just returns without printing anything.
No problem then, except that the files we were checking for are not there.
 
Old 12-05-2013, 09:08 PM   #30
Spect73
Member
 
Registered: Aug 2013
Distribution: Slackware 14.1
Posts: 128

Rep: Reputation: Disabled
slappisMekaniker,
I've been going back through all the posts regarding this problem. And, I stumbled onto something kinda interesting. You have another thread titled "trying to install qemu-kvm but ended up with following error" where you aren't getting zlib. In your first post of this thread you write "Well, when i try to install ghc(the depency package for zlib)i came into clash". Now, the ghc package is for the
"Glorious Haskell Compiler". It isn't a dependency for zlib.

Additionally, reading all posts in both threads, I must say that you most likely don't have a full install of Slackware 14.0 at this point. One of the mistakes that I made was thinking that you had successfully built some SlackBuilds packages. But, you merely said that you had downloaded them. This is what I suggest:
1. Put the install DVD in and select a full install. That means place an 'X' by everything. You have
a 500G disk, so room is absolutely no problem. I have Slackware 14.0 on my system, and I to have a
500G disk. I install everything even though the bulk of it I will never use.
2. Once you have a freshly installed system, try compiling a simple 'C' language program. If you have
actually done a full install it will work.
3. Then spend some time just using Slackware. Get used to how it works. Then progress up to using
qemu or whatever else.

I understand that learning this can be frustrating but don't give up. However, you must be willing to do what the folks attempting to help you ask. In that qemu thread one of the posters said that a fresh install was probably needed. You replied 'no way'. Since that time, only more difficulties have arisen. Perhaps it is time to do that fresh install and start over.

Oh well, I now know I can build the "Glorious Haskell Compiler" if I decide to ever investigate it. And I've learned about a few personalities and programs. Time well spent I think.
 
1 members found this post helpful.
  


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
Need a Distro that is Lightweight but has COMPILER that works! Cyanaether22 Linux - Software 10 05-08-2009 02:58 AM
Is there a C++ compiler in the FC6 distro that actually works? fc6_user Programming 31 02-08-2007 05:58 PM
Turbo C and C++ works on Linux and if so which compiler and editor is available. benoy4007 Red Hat 2 08-14-2004 08:13 AM
checking whether the C compiler (gcc ) works... no Transition Linux - Newbie 19 07-01-2004 03:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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