dpkg
Install a .deb file
$ sudo dpkg -i <file>.debView a list of installed packages
$ sudo dpkg --list
# list specific package by the name
$ sudo dpkg --list | grep <installation_name>Remove an installation (from a .deb file)
$ sudo dpkg -r <installation_name>Last updated