10+ Useful Commands for Linux Users
Jan 18, 2012, 14:00 (1 Talkback[s])
"1. Save man-page asPDF file For example, you want save the
manpage of APT to PDF file.
man -t apt | ps2pdf - apt.pdf
2. Duplicate installed packages from one machine to the other
(RPM-based systems)
ssh root@remote.host "rpm -qa" | xargs yum -y install
Complete Story