|
| |||||||||
| Tags: freeware, install packages, linux, list in ubuntu, ubuntu |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to find list of installed packages in Ubuntu |
|
#2
| ||||
| ||||
| Re: How to find list of installed packages in Ubuntu
The solution here is listed for Debian based system. It will work in Ubuntu systems. I will provide you a quick way to generate a list of packages that are installed in Ubuntu. Also you can quickly reinstall them if needed. To create a list use the following command in Terminal session : dpkg –get-selections | grep -v deinstall > ubuntu-files. After executing this you will get the list of installed debs. If you want to reinstall the application back in your home directory then do this : sudo apt-get update, sudo apt-get dist-upgrade and dpkg –set-selections < ubuntu-files.
|
|
#3
| ||||
| ||||
| Re: How to find list of installed packages in Ubuntu
Just by giving some simple commands you can get the information about the applications installed in your ubuntu computer. First to generate a list of use the code : dpkg --get-selections > installed-software. This will give a output of information from a home directory to file. Then to reinstall a some applications use : dpkg --set-selections < installed-software which must be followed by : dselect
|
|
#4
| ||||
| ||||
| Re: How to find list of installed packages in Ubuntu
Here to generate a list of installed software's just give the code in your terminal service. dpkg --get-selections | grep -v deinstall. If you get a big list here and you not able to locate your application then you can use grep to find the package you are looking for. For example you want to find abc package. Then give the below sample code : Code: $ dpkg --get-selections | grep -v deinstall| grep abc abc install abc-data install $ |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to find list of installed packages in Ubuntu" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Find all FTP packages | Kingfisher | Windows Software | 6 | 14-12-2009 10:47 AM |
| Downloaded packages of installation on ubuntu | KuBuntU | Operating Systems | 3 | 31-08-2009 11:01 PM |
| How to install Ubuntu when Vista is already installed? | Modifier | Guides & Tutorials | 5 | 04-08-2009 08:05 PM |
| How to Install .run packages in Ubuntu | Noverism | Operating Systems | 3 | 03-04-2009 05:53 PM |
| How to get location of software is installed in ubuntu ? | wasim | Operating Systems | 2 | 13-12-2008 02:08 PM |