I have installed linux mint 18.1 cinnamon 64bits.
After that I have added some new packages that I want to remove now but I don't remember them.
How can I get a list containing only the packages installed by default in linux mint?
I hope my request is sufficiently clear since English is not my natural language.
packages installed by default in linux mint 18.1 cinnamon <SOLVED>
Forum rules
Before you post please read how to get help
Before you post please read how to get help
packages installed by default in linux mint 18.1 cinnamon <SOLVED>
Last edited by hafid on Tue Jun 20, 2017 6:30 am, edited 1 time in total.
Re: packages installed by default in linux mint 18.1 cinnamon
If you look in the Live Session ISO casper folder there's a file filesystem.manifest which lists all the packages used to build the distribution. A few of these, like ubiquity and gparted, are removed at the end of an installation.
In a running system you can get a list of all the installed packages with...
In a running system you can get a list of all the installed packages with...
apt-mark showmanual && apt-mark showauto
...but the default collection is gone, once you install extra software.While you're waiting, read the free novel we sent you. It's a Spanish story about a guy named "manual".
Re: packages installed by default in linux mint 18.1 cinnamon
You could probably also look in Synaptic > File > History and see what you've installed, I'm assuming that since you only just joined the forum that Mint is fairly fresh so there should be too much in the history.
Re: packages installed by default in linux mint 18.1 cinnamon
I think that the solution can be summarized in the following steps:
- Get the file filesystem.manifest which can be found in the casper folder in the Live Session ISO. This file lists all the packages used to build the distribution.
- Use in a terminal the command to list in the file installedPackages , all the packages currently installed in the system.
Code: Select all
dpkg-query -W > installedPackages
- Use the command to list only the packages added by the system administrator.
Code: Select all
grep -Fxvf filesystem.manifest installedPackages > addedPackages
We can also use the command:to compare the two filesCode: Select all
diff -y --suppress-common-lines filesystem.manifest installedPackages >comparePackages