In this question is described how to remove an application with apt-get
using the options remove
and purge
.
Is there a way to list which files are going to be removed with those before effectively doing it?
I saw there is a -s --simulate
option, but that does not show with files will be removed after performing the command.
-s
option shows what packages will be removed. Why do you need more detail? – Zeiss Ikon Nov 16 '17 at 14:15dpkg -L <package-name>
and the will list the files associated with that package. I suspect that those ones are the files that will be removed byapt-get remove
andapt-get purge
. Though not sure if there more details. – nephewtom Nov 16 '17 at 14:24