If you want to make a list of all installed rpms, you could use this command:
rpm -qa | sort > list.txt
A more detailed list comes from this command:
Code:
rpm -qa --qf 'Installed on %{installtime:date} %{vendor} %{name} %{version}-%{release}\n' | sort > list.txt