You are not logged in.

#1 2012-07-23 21:14:30

beaverusiv
Member
From: Taupo, New Zealand
Registered: 2011-07-09
Posts: 41

[SOLVED] List all installed 32bit packages?

I recently uninstalled Skype, and I want to check that it was the only 32bit program I was running. Anyway to check what 32bit packages I have installed?

Edit: The initial question hasn't been answered, really, but I got done what I wanted done.

Last edited by beaverusiv (2012-07-24 00:54:49)

Offline

#2 2012-07-23 21:28:47

WorMzy
Administrator
From: Scotland
Registered: 2010-06-16
Posts: 13,557
Website

Re: [SOLVED] List all installed 32bit packages?

pacman -Ss | grep multilib | grep installed

Will list any packages you have installed from the multilib repo.

Last edited by WorMzy (2012-07-23 21:28:54)


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#3 2012-07-23 21:30:54

Inxsible
Forum Fellow
From: Chicago
Registered: 2008-06-09
Posts: 9,183

Re: [SOLVED] List all installed 32bit packages?

WorMzy wrote:
pacman -Ss | grep multilib | grep installed

Will list any packages you have installed from the multilib repo.

Why search the entire repository ??

pacman -Qs | grep installed

will do the same


Forum Rules

There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !

Offline

#4 2012-07-23 21:38:27

fatboy
Member
From: India
Registered: 2012-03-17
Posts: 73

Re: [SOLVED] List all installed 32bit packages?

Another is

pacman -Sl multilib | grep installed

Offline

#5 2012-07-23 21:42:36

beaverusiv
Member
From: Taupo, New Zealand
Registered: 2011-07-09
Posts: 41

Re: [SOLVED] List all installed 32bit packages?

pacman -Qs | grep installed

Does nothing, do you mean:

pacman -Qs | grep multilib

?

Will these command show any 32bit AUR packages? I only see a list of lib32s same as when I ran

pacman -Qs | grep 32

Offline

#6 2012-07-23 21:48:04

WorMzy
Administrator
From: Scotland
Registered: 2010-06-16
Posts: 13,557
Website

Re: [SOLVED] List all installed 32bit packages?

Inxsible wrote:
WorMzy wrote:
pacman -Ss | grep multilib | grep installed

Will list any packages you have installed from the multilib repo.

Why search the entire repository ??

pacman -Qs | grep installed

will do the same

On my system that results in the following:

wormzy@sakura[pts/8]~$ pacman -Qs | grep installed
    Draws a graph of installed packages to PNG/SVG/GUI/console.  Good for finding bloat.
wormzy@sakura[pts/8]~$ pacman -Qs | grep multilib
    GNU C Library for multilib

It may be because I compile/package my own packages using ABS, but everything in my -Qs output is listed as "local/", which is why I used -Ss in my example.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#7 2012-07-23 21:53:06

fatboy
Member
From: India
Registered: 2012-03-17
Posts: 73

Re: [SOLVED] List all installed 32bit packages?

WorMzy wrote:

It may be because I compile/package my own packages using ABS, but everything in my -Qs output is listed as "local/", which is why I used -Ss in my example.

No I think that is standard because they are all under local/ for me too, and I haven't compiled any packages using ABS.

Offline

#8 2012-07-23 21:58:13

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,672
Website

Re: [SOLVED] List all installed 32bit packages?

pacman -S pacman-contrib; paclist multilib

Offline

#9 2012-07-23 22:00:43

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] List all installed 32bit packages?

Inxsible wrote:
WorMzy wrote:
pacman -Ss | grep multilib | grep installed

Will list any packages you have installed from the multilib repo.

Why search the entire repository ??

pacman -Qs | grep installed

will do the same

'pacman -Q' lists all packages as belonging to 'local' repo.

Offline

#10 2012-07-23 22:03:57

beaverusiv
Member
From: Taupo, New Zealand
Registered: 2011-07-09
Posts: 41

Re: [SOLVED] List all installed 32bit packages?

Do any of these search for 32bit packages not from the multilib repo?

Offline

#11 2012-07-23 22:07:21

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,672
Website

Re: [SOLVED] List all installed 32bit packages?

No....

pacman -Qm will give you a list of your AUR packages to supplement it.  Or....

pactree -r -u lib32-glibc

should work...

Offline

#12 2012-07-23 22:15:52

beaverusiv
Member
From: Taupo, New Zealand
Registered: 2011-07-09
Posts: 41

Re: [SOLVED] List all installed 32bit packages?

Okay

pacman -Qm

does not show what architecture the packages are, and

pactree -r -u lib32-glibc

Just shows the same list of lib32's. Does that mean they're just residual libs from previous packages? Would I definitely be warned of dependancies if I started -Rns'ing them all?

Offline

#13 2012-07-23 23:45:21

Leonid.I
Member
From: Aethyr
Registered: 2009-03-22
Posts: 999

Re: [SOLVED] List all installed 32bit packages?

If those lib32  packages came as deps for your skype, they should be present in the output of pacman -Qdt. Otherwise, run

pacman -Qqe | grep lib32...

If you are really in doubt (and don't know your system), do

pacman -S skype && pacman -Rsn skype

Arch Linux is more than just GNU/Linux -- it's an adventure
pkill -9 systemd

Offline

#14 2012-07-24 00:53:41

beaverusiv
Member
From: Taupo, New Zealand
Registered: 2011-07-09
Posts: 41

Re: [SOLVED] List all installed 32bit packages?

I -Rns'ed them all, seems they're all for lib32-libpulse, a dependancy of skype.

Offline

Board footer

Powered by FluxBB