I have asked numerous questions about apt and package management in the past. Not breaking with the tradition here's one more. After doing
$ sudo apt-get update Or/and
$ sudo apt update Is there a way to get listing of packages (descending) from when they entered in the Debian archive ?
Something similar to the new added packages sorted by age, but on the desktop . Let's say all packages which entered Debian archive and are in the /var/lib/apt/lists/ database.
Btw, I do regularly do $ sudo aptitude forget-new otherwise listing of new packages becomes too large to be useful in any way.
Looking forward to know.
Update :- I use zsh and here's my /etc/apt/sources.list
[$] cat /etc/apt/sources.list 1 #### Debian stretch ######### 2 deb http://httpredir.debian.org/debian/ stretch main contrib non-free 3 deb-src http://httpredir.debian.org/debian stretch main contrib non-free 4 5 #### Debian unstable ######### 6 deb http://httpredir.debian.org/debian unstable main contrib non-free 7 deb-src http://httpredir.debian.org/debian unstable main contrib 8 9 #### Debian experimental ######### 10 deb http://httpredir.debian.org/debian experimental main contrib 11 deb-src http://httpredir.debian.org/debian experimental main contrib 12 13 ##### Debian Debug packages ####### 14 deb http://debug.mirrors.debian.org/debian-debug/ stretch-debug main 15 deb http://debug.mirrors.debian.org/debian-debug/ unstable-debug main 16 deb http://debug.mirrors.debian.org/debian-debug/ experimental-debug main 17 18 ######## Third party repos ####### 19 deb https://riot.im/packages/debian/ stretch main 20 21 ########## Non-free ######## 22 #deb http://www.deb-multimedia.org stretch main non-free I am looking for package listing of all 'NEW' amd64 packages from last 3 months, not just packages installed on my system.