46

Over the time I installed many i386 packages, which I no longer need. How can I clean up the system and stay only with the amd64 packages?

Ankit
  • 6,779
yossile
  • 5,728

6 Answers6

42

The other automated solutions are dangerous and not always working (1), so here another way

sudo aptitude purge `dpkg --get-selections | grep ":i386" | awk '{print $1}'`

or

sudo apt-get purge `dpkg --get-selections | grep ":i386" | awk '{print $1}'`

(Try to use always and only one of the tools. Since aptitude is better when having dependency trouble, I prefer that.)

Good idea to also

dpkg --remove-architecture i386

and maybe

dpkg --print-foreign-architectures

(1) The other commands also lists packages having only i386 in their name (although they are for 64bit architecture), the regular expression didn't work and dpkg shows packages which are already removed, but still have configuration files left (dpkg -l shows "rc" instead of "ii" as status).

PythoNic
  • 686
  • 1
  • 5
  • 15
  • 1
    Since you're using awk anyway, you may as well get rid of the grep invocation. Also, $() is preferable instead of backticks. I just got rid of my i386 packages using this command based on the one you gave: sudo apt purge $(dpkg --get-selections | awk '$1 ~ /:i386$/ { print $1 }') – scy Jan 26 '17 at 23:54
  • The aptitude one works correctly. – Sohan Arafat Sep 19 '22 at 22:42
  • 1
    This will break your Steam client, even if you installed the client for amd64 architecture, it still installs some 32-bit files and libraries to ensure compatibility with older games. – Gri Ma Jul 12 '23 at 06:23
24

I blitzed all my 32bit packages like this:

sudo apt-get remove `dpkg --get-selections | grep i386 | awk '{print $1}'`
Mathnode
  • 476
  • 1
    how to make these kind of commands, i know apt-get and grep but whats awk'{print $1}', just want to know. – Sukupa91 Nov 27 '13 at 02:07
  • awesome, and I was able to remove the i386 architecture now, but when I do dpkg -l | grep i386 to check the packages are still there any ideas, also +1 for the previouse comment and my guess it's related to shell scripting techniques – Ismail Marmoush Jan 10 '14 at 12:07
  • 1
    No responses probably because comments aren't the place for an awk tutorial. That bit of awk is printing only the first field of each line being piped in. Awk's default field separator is a space, " ". – rthbound Jan 15 '16 at 17:45
  • 1
    Finish it off with sudo dpkg --remove-architecture i386 – Serge Stroobandt Apr 11 '19 at 10:05
19

If they are not in your way, I would leave them where they are.

If you insist on deletion, use dpkg -l | grep i386 to create a list of i386-packages. You can delete these after careful checking with something like sudo apt-get purge <package-name>.

Pablo Bianchi
  • 15,657
Henk
  • 388
16

The debian's multiarch guide mentions this command: apt-get purge ".*:<arch>", which would look like this for i386:

sudo apt-get purge ".*:i386"

You can then remove the architecture from dpkg:

sudo dpkg --remove-architecture i386
Francisco
  • 263
  • 2
  • 6
10

In case anyone is wondering, there's a much more sane and graceful way to do this. The last previous answer hopes to do the same thing, but that search fails since architectures are not actually part of package names, except in special cases.

as root (or with sudo) run:

aptitude remove ~i~ri386

If you don't use aptitude over apt-get already, do. It's really excellent. You can find a list of aptitude's search terms here.

Patrick
  • 101
6

There is another way of lower risk:

sudo apt-get remove "^.*:i386$"

This will specifically match only packages ending with ":i386", which is the standard naming convention for all i386 architecture Debian packages.

Pablo Bianchi
  • 15,657
kevinarpe
  • 171