Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将办公室 PC 上的所有软件包安装到家里的 PC 中。
有没有办法使用终端来做到这一点?
要获取所有已安装软件包的名称列表(无版本),请使用:
rpm -q -a --qf '%{NAME} ' > pkglist.txt
比将该列表提供给另一个系统上的 zypper:
zypper in `cat pkglist.txt`