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.
所以我们正在迁移服务器。啊。一台机器上有很多 Perl 东西,我们需要在另一台机器上进行设置。
有没有办法导出/导入所有已安装软件包的列表,以便我可以将它们安装在新服务器上,而不是一个一个地查找?(使用 ActivePerl)
如果您正在使用ppm,则可以使用ppm profile命令。您可以通过以下方式存储已安装软件包的列表
ppm
ppm profile
ppm profile save my_modules.xml
并在另一台机器上恢复
ppm profile restore my_modules.xml
cpan -a
将创建Bundle所有已安装的软件包,可以将其移动到其他系统上的 CPAN 目录并安装在那里。
Bundle
几年前我做过一次,当时它似乎奏效了。