I am developing an offline installer for all versions of Ubuntu, and I need Ubuntu's default installed packages list. Is there a way to get this information from any server (web server)? Any script to fetch any Ubuntu version's default installed packages list.
I will give the Ubuntu version, and the script will fetch the packages list.
Note: I need at least a server address. I can write a script for this.
.manifest
files are available for any supported releases at http://releases.ubuntu.com/ and other flavours continue to have the files at the cdimage server. – Apr 22 '16 at 03:42/capsper/filesystem.manifest-remove
from Ubuntu 17.10) – rubo77 Oct 20 '17 at 19:17wget http://releases.ubuntu.com/$RELEASE/ubuntu-$VERSION-desktop-amd64.manifest -q -O - | cut -f 1 | xargs
– rubo77 Dec 06 '21 at 01:48