4

I would like to know the software that is pre-installed in Ubuntu.

I know this website: https://packages.ubuntu.com/, but in the website all the packages of Ubuntu are mentioned.

I want to know all software that comes pre-installed (from a website like https://packages.ubuntu.com/) without installing Ubuntu Desktop OS in my device.

Please let me know if this is possible.


My question is not a duplicate of How to get a list of preinstalled packages? and Which pre-installed apps ship with the Ubuntu 20.04 desktop installation? because of the following reasons:

  • .manifest file shows the packages that are included in a live image, not the packages that are present in a fresh installation (explained in this comment: https://askubuntu.com/posts/comments/2308852).

  • Running the following command is not possible as I want to know the list of software without installing Ubuntu.

    dpkg -S desktop | grep "\.desktop$" | awk '{print $1}' | sed 's/://' | sort -u
    

2 Answers2

6

You can read the *.manifest file to determine list of pre-installed packages.

Example links are below:

Also it is useful to check ISO contents (*.list file), it may have Nvidia drivers included, see below:

N0rbert
  • 99,918
  • 4
    This is a nice answer, though it's not 100% correct. The .manifest file shows the packages that are included in a Live image, not the packages that are present in a fresh installation. For example, GParted is present in the Live image, but you have to manually install it in an actual installation. Furthermore, if you select the minimal installation option, even less packages get installed. – BeastOfCaerbannog Jul 07 '21 at 15:34
3

These lists seem to have what you want:

Zanna
  • 70,465
R1PTIDE
  • 85
  • I am not sure how accurate your answer is because firefox package is not mentioned in https://people.canonical.com/%7Eubuntu-archive/seeds/ubuntu.focal/desktop. – Random Person Jul 10 '21 at 18:02
  • 1
    It is mentioned in the minimal list. You see the desktop list only mentions packages not in the minimal. It has task seeds as desktop-minimal and desktop-common which means software included in those tasks is also included. – R1PTIDE Jul 10 '21 at 18:04