Use the following command to create a text file with the packages installed.
rpm -qa > packagelist
Then you can copy the file packagelist to your new server. Run the following command to do a yum install of all the packages that are in the packagelist file
yum -y install $(cat /
That should get and install all the same packages to the other server.
0 comments:
Post a Comment