LinuxQuestions.org
Review your favorite Linux distribution.
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-12-2021, 07:48 AM   #1
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Slackware64 Current ffmpeg - libavdevice - libvidstab.so.1.1 -vs- libvidstab.so.1.2


All --

Is it me and my multilib / alien ffmpeg package or is ffmpeg libavdevice.so.58.13.100 also broken in Slackware64 Current ?

I rebuilt the ffmpeg package and this is what ldd tells me:

These are the ffmpeg programs in /tmp/package-ffmpeg/usr/bin/
Code:
cd  /tmp/package-ffmpeg/usr/bin ; echo "Cwd = `pwd`" ; for i in *; do Missing="$(ldd $i |grep 'not found')"; [ "$Missing" != "" ] && echo "program:  $i" && echo $Missing; done

Cwd = /tmp/package-ffmpeg/usr/bin
program:  ffmpeg
libvidstab.so.1.1 => not found
program:  ffplay
libvidstab.so.1.1 => not found
program:  ffprobe
libvidstab.so.1.1 => not found
These are the libraries in /tmp/package-ffmpeg/usr/lib64/
Code:
cd  /tmp/package-ffmpeg/usr/lib64 ; echo "Cwd = `pwd`" ; for i in lib*; do Missing="$(ldd $i |grep 'not found')"; [ "$Missing" != "" ] && echo "library:  $i" && echo $Missing; done
Cwd = /tmp/package-ffmpeg/usr/lib64
library:  libavdevice.so.58.13.100
libvidstab.so.1.1 => not found
Libvidstab.1.2 was installed via l/vid.stab-20201110_f9166e9-x86_64-1.txz
Code:
# whatprovides libvidstab   # see below my sig

# Package:  l/vid.stab-20201110_f9166e9-x86_64-1.txz
-rw-r--r-- root/root      1371 2021-10-10 16:34 usr/include/vid.stab/libvidstab.h
-rwxr-xr-x root/root     80992 2021-10-10 16:35 usr/lib64/libvidstab.so.1.2
Thanks

-- kjh

This is whatprovides which I adapted from e5150's script:
Code:
#!/bin/bash
#
# from e5150 at LQ:  http://www.linuxquestions.org/questions/slackware-14/missing-libfam-so-4175592571/#post5625605
#
MIRRORDIR="/dld/dld/slackware"
FULLPATH=0

[ "$1" = "-p" ] && FULLPATH=1 && shift

[ $# -lt 1 ] && echo "usage:  `basename $0` [ -p ] FileName" >&2 && exit 1

if [ -f /etc/os-release ];then
        . /etc/os-release
else
        VERSION_ID=`cut -d' ' -f2 /etc/slackware-version`
fi

[ "`arch`" = "x86_64" ] && ARCHSUFFIX=64

MANIFEST=$MIRRORDIR/slackware$ARCHSUFFIX-$VERSION_ID/slackware$ARCHSUFFIX/MANIFEST.bz2

FileName="$(echo "$1" |sed -e 's|^/||')"

bzgrep -e  'Package:|'"$FileName" $MANIFEST | \
  grep -B1 "$FileName"                      | \
   sed -e  's/^|| */# /'                    | \
   if [ "$FULLPATH" = "1" ]
   then
      sed -e "s# .\/# $MIRRORDIR/slackware$ARCHSUFFIX-$VERSION_ID/slackware$ARCHSUFFIX/#"
   else
      sed -e "s# .\/# #"
   fi

exit ${PIPESTATUS[1]}               # return status of the second grep command
 
Old 12-12-2021, 09:01 AM   #2
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,785

Rep: Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464
Quote:
Originally Posted by kjhambrick View Post
Is it me and my multilib / alien ffmpeg package or is ffmpeg libavdevice.so.58.13.100 also broken in Slackware64 Current ?
It is you.
Quote:
I rebuilt the ffmpeg package and this is what ldd tells me:
ldd is useless here, because it lists not only the direct dependencies but also the dependencies of dependencies and so on. Instead, try
Code:
objdump -x libavdevice.so.58.13.100|grep NEEDED
You probably see that libavdevice does not load any version of libvidstab. But you can go through the list you got, to see if some of the listed libraries NEED libvidstab.so.1.1. If not, then look at the next level of dependencies.
 
1 members found this post helpful.
Old 12-12-2021, 09:24 AM   #3
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,785

Rep: Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464
Or you could go through all the libraries to check which one wants libvidstab.so.1.1, like this:
Code:
for f in *.so*; do objdump -x $f |grep NEEDED|grep -q libvidstab.so.1.1 && echo $f ; done
Run that command in /lib64, /usr/lib64 and wherever you want.
 
2 members found this post helpful.
Old 12-12-2021, 09:31 AM   #4
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Original Poster
Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Quote:
Originally Posted by Petri Kaukasoina View Post
It is you...<snip>... But you can go through the list you got, to see if some of the listed libraries NEED libvidstab.so.1.1. If not, then look at the next level of dependencies.
Thanks for the feedback Petri Kaukasoina

I need to do some digging then ...

But I am curious ... what is the difference is if I walk the dependency tree manually or if I let ldd do that for me ?

Thanks again.

-- kjh

Find all the missing shared object libraries in /usr/lib64/

Code:
# cd /usr/lib64
# for i in lib*.so*; do Foo="$(ldd $i 2>/dev/null |grep 'not found')"; [ "$Foo" != "" ] && echo -e "$i:\n$Foo" ; done
libQtAV.so:
        libvidstab.so.1.1 => not found
libQtAV.so.1:
        libvidstab.so.1.1 => not found
libQtAV.so.1.13:
        libvidstab.so.1.1 => not found
libQtAV.so.1.13.0:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so.1:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so.1.13:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so.1.13.0:
        libvidstab.so.1.1 => not found
libavdevice.so:
        libvidstab.so.1.1 => not found
libavdevice.so.58:
        libvidstab.so.1.1 => not found
libavdevice.so.58.13.100:
        libvidstab.so.1.1 => not found
libavfilter.so:
        libvidstab.so.1.1 => not found
libavfilter.so.7:
        libvidstab.so.1.1 => not found
libavfilter.so.7.110.100:
        libvidstab.so.1.1 => not found
libdigikamcore.so:
        libvidstab.so.1.1 => not found
libdigikamcore.so.7.4.0:
        libvidstab.so.1.1 => not found
libdigikamdatabase.so:
        libvidstab.so.1.1 => not found
libdigikamdatabase.so.7.4.0:
        libvidstab.so.1.1 => not found
libdigikamgui.so:
        libvidstab.so.1.1 => not found
libdigikamgui.so.7.4.0:
        libvidstab.so.1.1 => not found
libffmpegthumbnailer.so:
        libvidstab.so.1.1 => not found
libffmpegthumbnailer.so.4:
        libvidstab.so.1.1 => not found
libffmpegthumbnailer.so.4.15.1:
        libvidstab.so.1.1 => not found
libfreerdp-client.so:
        libavcodec.so.57 => not found
        libavutil.so.55 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libfreerdp-client.so.2:
        libavcodec.so.57 => not found
        libavutil.so.55 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libfreerdp-client.so.2.0.0:
        libavcodec.so.57 => not found
        libavutil.so.55 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libfreerdp.so:
        libssl.so.1 => not found
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libfreerdp.so.2:
        libssl.so.1 => not found
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libfreerdp.so.2.0.0:
        libssl.so.1 => not found
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libwinpr-tools.so:
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libwinpr-tools.so.2:
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libwinpr-tools.so.2.0.0:
        libcrypto.so.1 => not found
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libwinpr.so:
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libwinpr.so.2:
        libssl.so.1 => not found
        libcrypto.so.1 => not found
libwinpr.so.2.0.0:
        libssl.so.1 => not found
        libcrypto.so.1 => not found
 
Old 12-12-2021, 09:38 AM   #5
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,785

Rep: Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464
Quote:
Originally Posted by kjhambrick View Post
But I am curious ... what is the difference is if I walk the dependency tree manually or if I let ldd do that for me ?
ldd does not show where the problem is in the dependency chain. But try the command in post #3. It should point you to the file which references the old libvidstab.so.1.1.
 
Old 12-12-2021, 10:00 AM   #6
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,785

Rep: Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464
Quote:
Originally Posted by kjhambrick View Post
Code:
        libssl.so.1 => not found
        libcrypto.so.1 => not found
You seem to have references to the old openssl, too. Try
Code:
for f in *.so*; do objdump -x $f |grep NEEDED|grep -q libcrypto.so.1$ && echo $f ; done
($ needed to mark the end of the soname, so it won't match libcrypto.so.1.1)
 
Old 12-12-2021, 10:48 AM   #7
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Original Poster
Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Quote:
Originally Posted by Petri Kaukasoina View Post
Or you could go through all the libraries to check which one wants libvidstab.so.1.1, like this:
Code:
for f in *.so*; do objdump -x $f |grep NEEDED|grep -q libvidstab.so.1.1 && echo $f ; done
Run that command in /lib64, /usr/lib64 and wherever you want.
Our Posts crossed paths ...

The vid.stab-20201110_f9166e9-x86_64-1 Package provides livbidstab.so.1.2 but packages link libvidstab.so.1.1

Still looking ...

-- kjh
 
Old 12-12-2021, 10:51 AM   #8
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,785

Rep: Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464
Quote:
Originally Posted by kjhambrick View Post
The vid.stab-20201110_f9166e9-x86_64-1 Package provides livbidstab.so.1.2 but packages link libvidstab.so.1.1
Yes, but which package links to libvidstab.so.1.1 ? ldd does not show it but #3 should show the library causing the problem.
 
Old 12-12-2021, 11:08 AM   #9
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Original Poster
Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Quote:
Originally Posted by Petri Kaukasoina View Post
You seem to have references to the old openssl, too. Try
Code:
for f in *.so*; do objdump -x $f |grep NEEDED|grep -q libcrypto.so.1$ && echo $f ; done
($ needed to mark the end of the soname, so it won't match libcrypto.so.1.1)
Thanks again Petri Kaukasoina

Libcrypto.so.1 is linked by the freerdp.so.2.0.0 and libwinpr.so.2.0.0

libfreerdp and libwinpr come from the freerdp package.

I've got the native Slackware Current as well as an Alien Bob version installed ...

That doesn't seem right.

Still digging,

-- kjh

Code:
# pwd
/usr/lib64

# for f in *.so*; do objdump -x $f 2>/dev/null |grep NEEDED|grep -q libcrypto.so.1$ && echo $f ; done
libfreerdp.so
libfreerdp.so.2
libfreerdp.so.2.0.0
libwinpr-tools.so
libwinpr-tools.so.2
libwinpr-tools.so.2.0.0
libwinpr.so
libwinpr.so.2
libwinpr.so.2.0.0
Where does libfreerdp come from ?
Code:
# whatprovides libfreerdp
# Package:  xap/freerdp-2.4.1-x86_64-2.txz
-rwxr-xr-x root/root    765408 2021-10-29 11:55 usr/lib64/libfreerdp-client2.so.2.4.1
-rwxr-xr-x root/root    232184 2021-10-29 11:55 usr/lib64/libfreerdp-server2.so.2.4.1
-rwxr-xr-x root/root     31424 2021-10-29 11:55 usr/lib64/libfreerdp-shadow-subsystem2.so.2.4.1
-rwxr-xr-x root/root    120968 2021-10-29 11:55 usr/lib64/libfreerdp-shadow2.so.2.4.1
-rwxr-xr-x root/root   1721008 2021-10-29 11:55 usr/lib64/libfreerdp2.so.2.4.1
Where does libwinpr come from ?
Code:
# whatprovides libwinpr
# Package:  xap/freerdp-2.4.1-x86_64-2.txz
-rwxr-xr-x root/root     34000 2021-10-29 11:55 usr/lib64/libwinpr-tools2.so.2.4.1
-rwxr-xr-x root/root   1200680 2021-10-29 11:55 usr/lib64/libwinpr2.so.2.4.1
What version(s) of freerdp are installed on kjhlt7 ?
Code:
# ver freerdp
-rw-r--r-- 1 root root 11919 Nov  7 05:04 /var/log/packages/freerdp-2.4.1-x86_64-2
-rw-r--r-- 1 root root 10250 Sep  9 14:39 /var/log/packages/freerdp-20160810-x86_64-1alien
 
Old 12-12-2021, 11:14 AM   #10
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Original Poster
Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Quote:
Originally Posted by Petri Kaukasoina View Post
ldd does not show where the problem is in the dependency chain. But try the command in post #3. It should point you to the file which references the old libvidstab.so.1.1.
Gotcha ...

The culprit is libavfilter which is provided by the ffmpeg package.

Thanks

-- kjh

Code:
# for f in *.so*; do objdump -x $f 2>/dev/null |grep NEEDED|grep -q libvidstab.so.1.1 && echo $f ; done
libavfilter.so
libavfilter.so.7
libavfilter.so.7.110.100
 
Old 12-13-2021, 05:55 AM   #11
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Original Poster
Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Thanks for all the feedback Petri Kaukasoina

I have cleaned up the mess that I believe I made when I converted my liveslack + multilib via setup2hd

See https://www.linuxquestions.org/quest...1/#post6301574

( thanks enorbet )

I still have an issue with libvidstab.so

Can anyone else running Slackware64 Current run /usr/bin/geeqie ?

Code:
[konrad@kjhlt7 ~]$ /usr/bin/geeqie
geeqie: error while loading shared libraries: libvidstab.so.1.1: cannot open shared object file: No such file or directory
Thanks

-- kjh

;TLDNR ...

I removed freerdp-20160810-x86_64-1alien and ffmpeg-4.4-x86_64-1alien which cleared the missing libcrypto and libssl link errors shown 7-or-so Posts above.

Both of these packages were older than the Slackware64 Current Versions:
Code:
-rw-r--r-- 1 root root   15043 Sep  9 14:42 /var/log/removed_packages/ffmpeg-4.4-x86_64-1alien
-rw-r--r-- 1 root root   10250 Sep  9 14:39 /var/log/removed_packages/freerdp-20160810-x86_64-1alien
Now my only issue is with l/vid.stab-20201110_f9166e9-x86_64-1

There is something odd going on here.

vid.stab-20201110_f9166e9-x86_64-1 provides /usr/lib64/libvidstab.so.1.2

However the include file says that the version is 1.1:
Code:
# mkdir /tmp/vid.stab
# cd /tmp/vid.stab
# tar -xvf /dld/slackware/slackware64-15.0/slackware64/l/vid.stab-20201110_f9166e9-x86_64-1.txz

<snip>

# ls -la $(find usr/lib64 -type f -iname "lib*")

-rwxr-xr-x 1 root root 80992 Oct 10 16:35 usr/lib64/libvidstab.so.1.2*

# grep -i '^ *# *define .*version'  usr/include/vid.stab/* |less -SeX

usr/include/vid.stab/libvidstab.h:#define LIBVIDSTAB_VERSION "v1.1 (2015-05-16)"
usr/include/vid.stab/serialize.h:#define LIBVIDSTAB_FILE_FORMAT_VERSION 1
I've got libvidstab.so.1.2 but all the links are for libvidstab.so.1.1 ...

Does anyone else see this ?

Code:
# cd /usr/lib64

# for i in lib*.so*; do Foo="$(ldd $i 2>/dev/null |grep 'libvidstab')"; [ "$Foo" != "" ] && echo -e "$i:\n$Foo" ; done

libQtAV.so:
        libvidstab.so.1.1 => not found
libQtAV.so.1:
        libvidstab.so.1.1 => not found
libQtAV.so.1.13:
        libvidstab.so.1.1 => not found
libQtAV.so.1.13.0:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so.1:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so.1.13:
        libvidstab.so.1.1 => not found
libQtAVWidgets.so.1.13.0:
        libvidstab.so.1.1 => not found
libavdevice.so:
        libvidstab.so.1.1 => not found
libavdevice.so.58:
        libvidstab.so.1.1 => not found
libavdevice.so.58.13.100:
        libvidstab.so.1.1 => not found
libavfilter.so:
        libvidstab.so.1.1 => not found
libavfilter.so.7:
        libvidstab.so.1.1 => not found
libavfilter.so.7.110.100:
        libvidstab.so.1.1 => not found
libdigikamcore.so:
        libvidstab.so.1.1 => not found
libdigikamcore.so.7.4.0:
        libvidstab.so.1.1 => not found
libdigikamdatabase.so:
        libvidstab.so.1.1 => not found
libdigikamdatabase.so.7.4.0:
        libvidstab.so.1.1 => not found
libdigikamgui.so:
        libvidstab.so.1.1 => not found
libdigikamgui.so.7.4.0:
        libvidstab.so.1.1 => not found
libffmpegthumbnailer.so:
        libvidstab.so.1.1 => not found
libffmpegthumbnailer.so.4:
        libvidstab.so.1.1 => not found
libffmpegthumbnailer.so.4.15.1:
        libvidstab.so.1.1 => not found
And these are all the programs in /usr/bin/ that link libvidstab:
Code:
# cd  /usr/bin
# for i in *; do Foo="$(ldd $i 2>/dev/null |grep 'libvidstab')"; [ "$Foo" != "" ] && echo -e "$i:\n$Foo" ; done

Player:
        libvidstab.so.1.1 => not found
digikam:
        libvidstab.so.1.1 => not found
ffmpeg:
        libvidstab.so.1.1 => not found
ffmpegthumbnailer:
        libvidstab.so.1.1 => not found
ffplay:
        libvidstab.so.1.1 => not found
ffprobe:
        libvidstab.so.1.1 => not found
geeqie:
        libvidstab.so.1.1 => not found
showfoto:
        libvidstab.so.1.1 => not found
Thanks again Petri Kaukasoina ( and anyone else who might have any additional info )

-- kjh
 
Old 12-13-2021, 06:09 AM   #12
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,785

Rep: Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464
Did you reinstall ffmpeg-4.4.1-x86_64-2 ? You had a libavfilter.so.7.110.100 which had a reference to libvidstab.so.1.1, according to objdump.

Last edited by Petri Kaukasoina; 12-13-2021 at 06:10 AM.
 
1 members found this post helpful.
Old 12-13-2021, 06:33 AM   #13
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Original Poster
Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Woo Hoo !

That did it for me.

I also reinstalled freerdp for good measure ...

Solved !

Thank $1million, Petri Kaukasoina

-- kjh
 
  


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
Brightness function keys not working on Slackware64 & Slackware64 current Andersen Slackware 7 01-15-2018 04:27 AM
[SOLVED] GST-FFMPEG (Undefined Symbols Galore) on Slackware64-Current tpreitzel Slackware 2 08-06-2012 06:10 PM
upgrading slackware64 13.1 multilib to slackware64 -current multilib Cultist Slackware 4 03-12-2011 09:04 AM
Updating from Slackware64-current to Slackware64 13. glore2002 Slackware 4 08-28-2009 06:50 PM

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

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