Results 1 to 10 of 10

Thread: Install 32-libs on VPS

  1. #1
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts

    Install 32-libs on VPS

    Hi all, I got a vps. Now i need to install ia32-libs. I updated the sources list. Then I do apt-get update. Next thing is apt-get install ia32-libs
    Code:
    Package ia32-libs is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source
    
    E: Package 'ia32-libs' has no installation candidate
    Who can help me? VPS is Debian 7, 32 bit

  2. #2
    Private First Class YuriJurek's Avatar
    Join Date
    Jun 2013
    Posts
    219
    Thanks
    152
    Thanked 88 Times in 47 Posts
    The ia32-libs is deprecated so you should consider migrating to multiarch, to do this
    Code:
    dpkg --add-architecture i386
    apt-get update
    And then
    Code:
    apt-get install package:i386
    This should do the trick.

  3. The Following 2 Users Say Thank You to YuriJurek For This Useful Post:

    kung foo man (20th August 2014),Ni3ls (20th August 2014)

  4. #3
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    Still dont work for me :/ I work in the root. Must i make sudo user?
    Code:
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    E: Unable to locate package package

  5. #4
    Private First Class YuriJurek's Avatar
    Join Date
    Jun 2013
    Posts
    219
    Thanks
    152
    Thanked 88 Times in 47 Posts
    Have you tried this after doing --add-architecture?
    Code:
    apt-get install ia32-libs

  6. #5
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,010
    Thanks
    2,102
    Thanked 1,084 Times in 753 Posts
    Quote Originally Posted by Ni3ls View Post
    Who can help me? VPS is Debian 7, 32 bit
    Since you are already running 32 bit version, you don't need a package for 32 bit support.

    I think you are missing the old gcc libraries, which cod2_lnxded was linked against. Download: http://killtube.org/downloads/cod2/gcc3-libs.zip

    Just extract them next to your cod2_lnxded, or put them in /lib-directory and run ldconfig, to put them in ld cache.

    But first try to install them the normal way and don't mess with /lib etc.:

    Code:
    apt-get install libstdc++5
    Source: http://stackoverflow.com/questions/1...mex-for-matlab
    timescale 0.01

  7. The Following User Says Thank You to kung foo man For This Useful Post:

    Ni3ls (21st August 2014)

  8. #6
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    But must i still do install ia32-libs after doing that?

  9. #7
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,010
    Thanks
    2,102
    Thanked 1,084 Times in 753 Posts
    No, just install libstdc++5 and try to run cod2_lnxded:

    Code:
    apt-get install libstdc++5
    Code:
    ./cod2_lnxded +set fs_game blablub
    timescale 0.01

  10. The Following User Says Thank You to kung foo man For This Useful Post:

    Ni3ls (21st August 2014)

  11. #8
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    It works now! Thanks to Badboy! Indeed libstd missing

  12. #9
    Private First Class YuriJurek's Avatar
    Join Date
    Jun 2013
    Posts
    219
    Thanks
    152
    Thanked 88 Times in 47 Posts
    Sorry for misleading, I thought you were using a 64 bit distro.

  13. The Following User Says Thank You to YuriJurek For This Useful Post:

    Ni3ls (22nd August 2014)

  14. #10
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    No problem. All the help is always appreciated!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •