Skip to main content

Command Palette

Search for a command to run...

Remove All Default Installed games in Ubuntu by Single Command

Published
1 min read
Remove All Default Installed games in Ubuntu by Single Command

The default installation of popular Ubuntu operating systems include many games. For developers and diskspace conscious users these games are unessary. To remove all the games using a command line one-liner use the following. It will Work for Ubuntu 18, 20 & 22 versions.

sudo apt purge thunderbird* -y && sudo apt-get remove rhythmbox -y && sudo apt purge aisleriot gnome-mahjongg gnome-mines gnome-sudoku -y && sudo apt-get remove remmina -y && sudo apt-get remove transmission-gtk -y && sudo apt-get autoremove -y && exit

Thank you.

Remove All Default Installed games in Ubuntu by Single Command