Wednesday, May 15, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 439  / 3 Years ago, thu, september 9, 2021, 8:56:53

I've been using and upgrading Ubuntu since the version 9. Of course, I have 13.04 now and after installing a clean 13.04 to another computer, I've noticed quite a few differences (plymouth, lightdm, some software behaves differently, etc.). I've done quite a few customizations during the period so it's probably due to that.



So I wonder if there is a way to see what's different between my and the clean version. Not the complete file list diff, but perhaps software package differences (synaptic?) or something that will be easier to read and compare. Is there a way?


More From » 13.04

 Answers
7

You could compare the list of installed package with the ".manifest" file of your distribution,



For instance the manifest of 13.04/i386 can be found here :



http://mirrors.mit.edu/ubuntu-releases/13.04/ubuntu-13.04-desktop-i386.manifest



To get your installed packages :



#aptitude search ~i !~M


Regarding the customization you could have made there is a tool that can helps you to compare the modified configuration files against the package checksum informations : debsums



#debsums -ce 


(-e to check only the configuration files, -c only the changed files)



Edit :



the packages installed during the year are logged in /var/log/apt. Older history logs are deleted by logrotate. I made that script to get the installed package (take care not to modify the awk patterns when copying).



# cd /var/opt/log
#(zcat $(ls -rt history*gz); cat history.log ) | awk '
/^Commandline: (apt-get install|synaptic|aptitude)/{
cmdl=$0
getline
if(/^Install|^Remove/) {
print cmdl
print
}
}' | less

[#30581] Saturday, September 11, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
fotres

Total Points: 35
Total Questions: 124
Total Answers: 112

Location: Federated States of Micronesia
Member since Sat, Jun 4, 2022
2 Years ago
fotres questions
Sat, Feb 26, 22, 09:01, 2 Years ago
Sat, Aug 21, 21, 18:51, 3 Years ago
Sun, Oct 3, 21, 22:08, 3 Years ago
;