how can i list all packages which ere installed by me in centos without dependencies

user1994660

If i execute

yum list installed then i get all the pacakges including dependencies packagaes.

but i want to find those packages which were installed by me manually by typing command

yum install pkgname

is it possible in centos

6EQUJ5

Run this command to see your history with command lines:

yum history info '*'|grep 'Command Line'

Example:

$ yum history info '*'|grep 'Command Line'
Command Line   : install xterm
Command Line   : install xclock
...

Run without grep and using less to see the dates, etc...

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get the list of installed packages without dependencies?

From Dev

How to list all packages installed as dependencies in Terminal, and what installed them?

From Dev

How can I get a list of installed centos packages by only reading from the filesystem?

From Dev

How can I mark all packages with installed dependents as "Automatically Installed"?

From Dev

Uninstall all Python packages installed by me and their dependencies, without nuking my Mac

From Dev

How can I list all packages I've installed from a particular repository?

From Dev

How can I list all packages I've installed from a particular repository?

From Dev

How can I get a list of all packages available for a specific version of Ubuntu (not necessarily the one I have installed)?

From Dev

How can I keep track of all the packages / dependencies that are installed when I run apt-get for a specific package?

From Dev

RHEL/CentOS - How can I find all rpm packages which depends on a particular package?

From Dev

List all packages which are loaded/defined (not installed)

From Dev

How to list all installed packages

From Dev

How to list all installed packages

From Dev

How can I display the list of all packages installed on my Debian system?

From Dev

How can I list the all the packages installed and uninstall unwanted ones from that

From Dev

How can I determine which packages I have installed via homebrew and which were installed manually?

From Dev

How can I uninstall all the packages I've installed today?

From Dev

How do I list all packages installed for a specific architecture?

From Dev

How do I list all packages belonging to a group (installed and uninstalled)?

From Dev

How can I find which version of libmysqlclient is installed in Centos?

From Dev

How to get a list of which packages were installed with apt-get by a user and not by dependencies?

From Dev

How I can list all sbt dependencies?

From Dev

How can I list all files which have been installed by an ZYpp/Zypper package?

From Dev

How can I list all files which have been installed by an APT package?

From Dev

How can I get a list of the biggest packages currently installed in order?

From Dev

How to list dependent packages (reverse dependencies) for a system I don't have installed?

From Dev

How to list all installed packages with the .rpm extension. Fedora, Centos, RedHat

From Dev

How to list all the installed packages and their version with Cabal?

From Dev

How do I list the default installed packages?

Related Related

  1. 1

    How to get the list of installed packages without dependencies?

  2. 2

    How to list all packages installed as dependencies in Terminal, and what installed them?

  3. 3

    How can I get a list of installed centos packages by only reading from the filesystem?

  4. 4

    How can I mark all packages with installed dependents as "Automatically Installed"?

  5. 5

    Uninstall all Python packages installed by me and their dependencies, without nuking my Mac

  6. 6

    How can I list all packages I've installed from a particular repository?

  7. 7

    How can I list all packages I've installed from a particular repository?

  8. 8

    How can I get a list of all packages available for a specific version of Ubuntu (not necessarily the one I have installed)?

  9. 9

    How can I keep track of all the packages / dependencies that are installed when I run apt-get for a specific package?

  10. 10

    RHEL/CentOS - How can I find all rpm packages which depends on a particular package?

  11. 11

    List all packages which are loaded/defined (not installed)

  12. 12

    How to list all installed packages

  13. 13

    How to list all installed packages

  14. 14

    How can I display the list of all packages installed on my Debian system?

  15. 15

    How can I list the all the packages installed and uninstall unwanted ones from that

  16. 16

    How can I determine which packages I have installed via homebrew and which were installed manually?

  17. 17

    How can I uninstall all the packages I've installed today?

  18. 18

    How do I list all packages installed for a specific architecture?

  19. 19

    How do I list all packages belonging to a group (installed and uninstalled)?

  20. 20

    How can I find which version of libmysqlclient is installed in Centos?

  21. 21

    How to get a list of which packages were installed with apt-get by a user and not by dependencies?

  22. 22

    How I can list all sbt dependencies?

  23. 23

    How can I list all files which have been installed by an ZYpp/Zypper package?

  24. 24

    How can I list all files which have been installed by an APT package?

  25. 25

    How can I get a list of the biggest packages currently installed in order?

  26. 26

    How to list dependent packages (reverse dependencies) for a system I don't have installed?

  27. 27

    How to list all installed packages with the .rpm extension. Fedora, Centos, RedHat

  28. 28

    How to list all the installed packages and their version with Cabal?

  29. 29

    How do I list the default installed packages?

HotTag

Archive