Results 1 to 7 of 7

Thread: Finding 32-bits installed libraries

  1. #1
    Join Date
    Apr 2010
    Beans
    498
    Distro
    Ubuntu 13.04 Raring Ringtail

    Finding 32-bits installed libraries

    Hi! A few days I installed a couple of 32 bits libraries on my 64 bits Ubuntu so I could get a 32-bits application running. The thing is it didn't work and I'd like to get rid of all 32-bits libraries I installed.

    Is there a way to find which 32-bits libraries have been installed?

    Thanks!
    Last edited by _0R10N; June 13th, 2013 at 11:45 AM.
    Bad command. Bad, bad command! Sit! Stay! Staaaaay!!!.

  2. #2
    Join Date
    Feb 2010
    Location
    Obscurial Springs
    Beans
    15,210
    Distro
    Ubuntu Budgie Development Release

    Re: Finding 32-bits installed libraries

    If they are un-needed packages the following should work.
    Code:
    sudo apt-get autoremove
    "Our intention creates our reality. "

    Ubuntu Documentation Search: Popular Pages
    Ubuntu: Security Basics
    Ubuntu: Flavors

  3. #3
    Join Date
    Jan 2009
    Location
    ::1
    Beans
    2,485

    Re: Finding 32-bits installed libraries

    Quote Originally Posted by _0R10N View Post
    Hi! A few days I installed a couple of 32 bits libraries on my 64 bits Ubuntu so I could get a 32-bits application running. The thing is it didn't work and I'd like to get rid of all 32-bits libraries I installed.

    Is there a way to find which 32-bits libraries have been installed?

    Thanks!
    If you installed with "sudo apt-get install <blabla>", remove with ... "sudo apt-get remove <blabla>".

    HTH

  4. #4
    Join Date
    Apr 2010
    Beans
    498
    Distro
    Ubuntu 13.04 Raring Ringtail

    Re: Finding 32-bits installed libraries

    Thanks for the replies! I know how to remove unnecessary packages. The thing is they weren't autoremoved when running this command, they where installed as dependencies of openjdk-7-jdk:i386 and some other package.
    Bad command. Bad, bad command! Sit! Stay! Staaaaay!!!.

  5. #5
    Join Date
    Jul 2010
    Location
    ozarks, Arkansas, USA
    Beans
    14,199
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Finding 32-bits installed libraries

    [COLOR=#000000]_0R10N; Hi !

    How about this approach:
    Code:
    apt-cache show openjdk-7-jdk:i386
    In the output is a list of dependencies
    do:
    Code:
    dpkg -l <dependency>
    to see that status,version and other info ?

    just a thought
    THE current(cy) in Documentation:
    https://help.ubuntu.com/community/PopularPages

    Happy ubuntu'n !

  6. #6
    Join Date
    Apr 2012
    Beans
    7,256

    Re: Finding 32-bits installed libraries

    well I would think if autoremove doesn't remove the then they are still required by some other package - but how about

    Code:
    apt-cache depends openjdk-7-jdk:i386
    or for a more general list of i386 packages

    Code:
    dpkg -l | awk '$2 ~ /:i386/ {print}'

  7. #7
    Join Date
    Apr 2010
    Beans
    498
    Distro
    Ubuntu 13.04 Raring Ringtail

    Re: Finding 32-bits installed libraries

    Thanks to all of you! The @steeldriver and @Bashing-om suggestions work great!
    Bad command. Bad, bad command! Sit! Stay! Staaaaay!!!.

Tags for this Thread

Bookmarks

Posting Permissions

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