LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 04-01-2011, 11:40 AM   #1
SeRi@lDiE
Member
 
Registered: Jun 2006
Location: /dev/null
Distribution: Slackware 13.1, Slackware 13.37, aptosid, rhel
Posts: 547
Blog Entries: 7

Rep: Reputation: 55
Multilib Question


I have Slackware 13.1 64Bit. For me to run a 32Bit application all I need is to install multilib correct?

I seen compat32 and multilib from this sites

http://compat32pkg.sourceforge.net/
http://multilibpkg.sourceforge.net/

Thats where I got a bit confused.

Thank You for the help.
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 04-01-2011, 11:55 AM   #2
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,661

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
Check this page for more information about Multilib: http://alien.slackbook.org/dokuwiki/...kware:multilib
 
Old 04-01-2011, 01:41 PM   #3
phenixia2003
Senior Member
 
Registered: May 2006
Location: France
Distribution: Slackware
Posts: 1,052

Rep: Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008
Hello,

Quote:
Originally Posted by SeRi@lDiE View Post
I have Slackware 13.1 64Bit. For me to run a 32Bit application all I need is to install multilib correct?

I seen compat32 and multilib from this sites

http://compat32pkg.sourceforge.net/
http://multilibpkg.sourceforge.net/

Thats where I got a bit confused.
Hello,

To turn your pure 64-bit "Slackware-13.1" into multilib, you need to install two subset of packages :
  1. The subset which allow to run/compile 32-bit applications. This subset is provided by the multilib
    version of packages glibc*, gcc*, and, by the package compat32-tools. This is the "64-bit part of
    the multilib".

  2. The subset which provides 32-bit versions of libraries (like mesa, alsa-lib, cairo, ...) needed by
    32-bit programs. This is the "32-bit part of the multilib", also know as "32-bit compatibility layer"

To automate the management (install, checking updates, upgrading, remove) of these subsets, I wrote the tools you mention above.

multilibpkg is dedicated to the management of the "64-bit part of the multilib". For example, to install this subset on your system using multilibpkg, you'll do this (as root) :

Code:
$ multilibpkg --mirror @Official-13.1 --install

multilibpkg ver. 0.9.101208 (stable)
(WARNING) You're using multilibpkg in mode --install, while the system is not               
(WARNING) in run level 1: current runlevel is (3).

Do you want to continue (Y/N) ? y
[--install] Started on Fri 01 Apr 2011 08:28:08 PM CEST
[--install]   Using multilib-mirror http://connie.slackware.com/~alien/multilib/13.1
[--install]   Local system is Slackware/x86_64 version 13.1.0
[--install]   Mirrored multilib dedicated to Slackware/x86_64 version 13.1
[--install]   Downloaded packages will be stored into /var/cache/multilibpkg
                                                         
[--install]   12 package(s) were found (1,048 sec.)

[--install]   Downloading 64-bit multilib packages...
....
compat32pkg has to be used to manage the "32-bit part of the multilib". For example, to install this subset on your system using compat32pkg, you'll do this (as root) :

Code:
$ compat32pkg --mirror @WorldWide-13.1 --install layer-32

compat32pkg ver. 1.3.110319 (stable)

[--install] Started on Fri 01 Apr 2011 08:31:47 PM CEST
[--install]   Using mirror ftp://mirrors.kernel.org/slackware/slackware-13.1
[--install]   Local system is Slackware/x86_64 version 13.1.0
[--install]   Mirrored system is Slackware/i486 version 13.1
[--install]   Slackware-32 packages will be stored into /var/cache/compat32pkg/slackware-32
[--install]   compat32 packages will be stored into /var/cache/compat32pkg/compat-32
[--install]   Configuration file for "layer-32" : /etc/compat32pkg/multilib-32bit-packages.lst version 1.3.110327
                                                                    
[--install]   103 package(s) were found (1,500 sec.)

[--install]   Processing package #1/103: aaa_elflibs version 13.1 build 1
...
After that, you should be able to run the 32-bit programs you want.

multilibpkg and compat32pkg can also be used to check updates, upgrade, or remove of the subsets mentioned above.

For example, to check whether updates are available, you'll do this (as root) :

Code:
$ multilibpkg --mirror @Official-13.1 --check-updates

$ compat32pkg --mirror @WorldWide-13.1 --check-updates layer-32
When updates are available, you'll use these tools as below (as root) to upgrade the installed multilib :

Code:
$ multilibpkg --mirror @Official-13.1 --upgrade

$ compat32pkg --mirror @WorldWide-13.1 --upgrade layer-32
Finally, when you'll not need the multilib, you'll use these tools as below (as root) to remove of the installed multilib :

Code:
$ multilibpkg --uninstall @WorldWide-13.1

$ compat32pkg --remove layer-32
Note: multilibpkg --uninstall <ADDR> will supersede the multilib version of packages gcc* and glibc* by their 64-bit counterpart available onto the slackware-64 mirror given in argument.

Hoping this will clarify things for you.

Greetings.

--
SeB

Last edited by phenixia2003; 04-02-2011 at 05:06 AM. Reason: some corrections
 
3 members found this post helpful.
Old 04-01-2011, 04:03 PM   #4
SeRi@lDiE
Member
 
Registered: Jun 2006
Location: /dev/null
Distribution: Slackware 13.1, Slackware 13.37, aptosid, rhel
Posts: 547

Original Poster
Blog Entries: 7

Rep: Reputation: 55
phenixia2003,

Thank you very much for this information!!!!
Awesome tools by the way

Again Thank You.

---------- Post added 04-01-11 at 04:04 PM ----------

Quote:
Originally Posted by willysr View Post
Check this page for more information about Multilib: http://alien.slackbook.org/dokuwiki/...kware:multilib
Thank you for the link.

alien has very good information and has been a good source for help!

Thank you.
 
Old 04-02-2011, 12:20 AM   #5
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 293Reputation: 293Reputation: 293
Quote:
Originally Posted by phenixia2003 View Post
To automate the management (install, checking updates, upgrading, remove) of these subsets, I wrote the tools you mention above.

$ multilibpkg --mirror @Official-13.1 --install
...
One question about multilibpkg and compat32pkg: Don't these commands need to be run as root?
Your post indicates that you are running those multilibpkg and compat32pkg commands as a normal user.

Last edited by tommcd; 04-02-2011 at 12:21 AM.
 
Old 04-02-2011, 05:12 AM   #6
phenixia2003
Senior Member
 
Registered: May 2006
Location: France
Distribution: Slackware
Posts: 1,052

Rep: Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008
Hello,

Quote:
Originally Posted by tommcd View Post
One question about multilibpkg and compat32pkg: Don't these commands need to be run as root?
Indeed, you're right and this is now pointed out in my original post.


Grettings.

--
SeB
 
  


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
upgrading slackware64 13.1 multilib to slackware64 -current multilib Cultist Slackware 4 03-12-2011 09:04 AM
multilib question rob.rice Slackware 3 12-30-2010 10:45 AM
[SOLVED] Broffice not compile on Slack64(multilib or no multilib);SlackBuild afreitascs Slackware 4 06-14-2010 07:16 AM
Multilib Question slowpoke Slackware 2 03-28-2010 12:49 AM
Question about multilib ProtoformX Linux From Scratch 3 08-06-2009 04:02 AM

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

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