Quantcast
Channel: How to remove all i386 packages from Ubuntu 64bit? - Ask Ubuntu
Browsing all 7 articles
Browse latest View live

Answer by Francisco for How to remove all i386 packages from Ubuntu 64bit?

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...

View Article



Answer by Patrick for How to remove all i386 packages from Ubuntu 64bit?

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...

View Article

Answer by PythoNic for How to remove all i386 packages from Ubuntu 64bit?

The other automated solutions are dangerous and not always working (1), so here another waysudo aptitude purge `dpkg --get-selections | grep ":i386" | awk '{print $1}'`orsudo apt-get purge `dpkg...

View Article

Answer by kevinarpe for How to remove all i386 packages from Ubuntu 64bit?

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...

View Article

Answer by Mathnode for How to remove all i386 packages from Ubuntu 64bit?

I blitzed all my 32bit packages like this:sudo apt-get remove `dpkg --get-selections | grep i386 | awk '{print $1}'`

View Article


Answer by Henk for How to remove all i386 packages from Ubuntu 64bit?

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...

View Article

How to remove all i386 packages from Ubuntu 64bit?

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?

View Article
Browsing all 7 articles
Browse latest View live




Latest Images