2020-03-09 19:56:48 +00:00
|
|
|
---
|
|
|
|
title: How to get a list of all packages included in the ISO
|
|
|
|
description:
|
|
|
|
published: true
|
2020-04-10 22:31:48 +01:00
|
|
|
date: 2020-04-10T19:38:53.480Z
|
2020-04-10 20:27:49 +01:00
|
|
|
tags:
|
2020-03-09 19:56:48 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# How to get a list of all packages included in the ISO
|
|
|
|
|
|
|
|
|
|
|
|
In live mode, open console and type:
|
|
|
|
|
|
|
|
```
|
|
|
|
rpm -qa|sort > pkglist-sort.txt
|
|
|
|
```
|
|
|
|
which will create a plain text document in your user `/home` directory named `pkglist-sort.txt`
|
|
|
|
|
|
|
|
The packages list is sorted A-Z
|
|
|
|
|
|
|
|
![pkglist.jpg](/images/pkglist.jpg)
|
|
|
|
|
|
|
|
> The simple trick applies not only for ISO/Live mode but also for installed systems.
|
|
|
|
> You can run the command any time you need to.
|
|
|
|
{.is-info}
|
|
|
|
|
|
|
|
|
|
|
|
If you wish a list of all the packages sorted by date, type:
|
|
|
|
|
|
|
|
```
|
|
|
|
rpm -qa --last > pkglist-last.txt
|
|
|
|
```
|
|
|
|
|
2020-03-09 20:01:19 +00:00
|
|
|
\-
|
|
|
|
See also
|
|
|
|
[How to get a list of the latest updates](/doc/guides/howto-latest-updates)
|