0% found this document useful (0 votes)
58 views

Uninstall Software in Linux

The document provides instructions for uninstalling software using the command line in Linux. It explains that the dpkg command can be used to view installed packages and apt-get remove can be used to uninstall packages by name. Using apt-get purge removes packages and configuration files, while apt-get autoremove removes unused dependencies.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views

Uninstall Software in Linux

The document provides instructions for uninstalling software using the command line in Linux. It explains that the dpkg command can be used to view installed packages and apt-get remove can be used to uninstall packages by name. Using apt-get purge removes packages and configuration files, while apt-get autoremove removes unused dependencies.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

How to Uninstall Software Using the Command Line in

Linux
howtogeek.com/229699/how-to-uninstall-software-using-the-command-line-in-linux

Lori Kaufman

Linux provides different methods for installing software. You can install software from
the standard Ubuntu software repositories using the Ubuntu Software Center, from
outside of the standard Ubuntu software repositories, or by compiling source code.
However, what if you need to uninstall a program?

If you’ve installed software from the Ubuntu software repositories using the Ubuntu
Software Center, you can use the Ubuntu Software Center to uninstall that software as
well. However, if you’re more comfortable using the command line, we’ll show you an
easy way to see what’s installed on your system and uninstall programs.

If you have an idea of what you want to uninstall, but you don’t know the exact name, see
our article about finding out exact package names in Linux. You can also use the “dpkg”
command to see a list of all installed packages on your computer, press “Ctrl + Alt + T” to
open a Terminal window. Type the following command at the prompt and press “Enter”.

dpkg -- list

NOTE: There are two dashes before “list”.

1/5
Scroll through the list of installed packages in the Terminal window to find the one you
want to uninstall. Note the full name of the package.

To uninstall a program, use the “apt-get” command, which is the general command for
installing programs and manipulating installed programs. For example, the following
command uninstalls gimp and deletes all the configuration files, using the “ -- purge”
(there are two dashes before “purge”) command.

2/5
sudo apt-get -- purge remove gimp

Enter your password when prompted and press “Enter”.

NOTE: The password does not display as you type it. However, you can choose to display
asterisks as you type the password.

The uninstallation process begins and a summary of the actions to be taken displays.
When asked if you want to continue, type a “y” and press “Enter”.

The installation process continues. When it’s done, type “exit” at the prompt and press
“Enter” to close the Terminal window, or click the “X” button in the upper-left corner of
the window.

3/5
If you don’t want to remove the configuration files, simply leave out the “ -- purge”
command, as shown in the following command.

sudo apt-get remove gimp

As discussed in this article, programs installed in Linux depend on other packages to


function. When you uninstall a program, there may be packages that the uninstalled
program depended upon that are no longer used. To remove any unused packages, use the
“autoremove” command, as shown in the following command.

sudo apt-get autoremove

You can combine the two commands for removing a program and removing dependencies
that are no longer being used into one, as shown below (again, two dashes before “auto-
remove”).

4/5
sudo apt-get purge -- auto-remove gimp

If you’re short on space, you can use the “clean” command to remove downloaded archive
files, as shown below.

sudo apt-get clean

This command removes the aptitude cache in “/var/cache/apt/archives”. When you


install a program, the package file is downloaded and stored in that directory. You don’t
need to keep the files in that directory. However, the only drawback of deleting them, is
that if you decide to install any of those programs again, the packages would have to be
downloaded again.

The “apt-get” is a handy tool that makes downloading, installing, and uninstalling
programs quick and easy. For more information about using the “apt-get” command, type
“apt-get” at the prompt and press “Enter”.

Linux Commands

Files tar · pv · cat · tac · chmod · grep · diff · sed · ar · man · pushd · popd ·
fsck · testdisk · seq · fd · pandoc · cd · $PATH · awk · join · jq · fold ·
uniq · journalctl · tail · stat · ls · fstab · echo · less · chgrp · chown · rev ·
look · strings · type · rename · zip · unzip · mount · umount · install ·
fdisk · mkfs · rm · rmdir · rsync · df · gpg · vi · nano · mkdir · du · ln ·
patch · convert · rclone · shred · srm

Processes alias · screen · top · nice · renice · progress · strace · systemd · tmux ·
chsh · history · at · batch · free · which · dmesg · chfn · usermod · ps
· chroot · xargs · tty · pinky · lsof · vmstat · timeout · wall · yes · kill ·
sleep · sudo · su · time · groupadd · usermod · groups · lshw ·
shutdown · reboot · halt · poweroff · passwd · lscpu · crontab · date ·
bg · fg

Networking netstat · ping · traceroute · ip · ss · whois · fail2ban · bmon · dig · finger


· nmap · ftp · curl · wget · who · whoami · w · iptables · ssh-keygen · ufw

5/5

You might also like