是否可以将 Perl 安装包的列表传输到另一台计算机并在 ActiveState 的 ActivePerl 中标记安装?

发布于 2025-01-02 15:51:08 字数 130 浏览 1 评论 0原文

所以我们正在迁移服务器。啊啊。一台机器上有很多 Perl 东西,我们需要在另一台机器上设置。

有没有一种方法可以导出/导入已安装的所有软件包的列表,以便我可以将它们安装在新服务器上,而不是逐一查找? (使用 ActivePerl)

So we are migrating servers. Arghh. There is a lot of Perl stuff on one machine that we need to set up on another one.

Is there a way to export / import a list of all packages that are installed so that I can install them on the new server instead of looking up one by one?
(using ActivePerl)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情域 2025-01-09 15:51:08

如果您使用 ppm,则可以使用 ppm profile 命令。您可以通过存储已安装软件包的列表

ppm profile save my_modules.xml

并在另一台计算机上恢复

ppm profile restore my_modules.xml

If you are using ppm, you can use ppm profile commands. You can store a list of installed packages via

ppm profile save my_modules.xml

and restore on another machine with

ppm profile restore my_modules.xml
乱了心跳 2025-01-09 15:51:08
cpan -a

将创建所有已安装软件包的Bundle,可以将其移动到其他系统上的 CPAN 目录并安装在那里。

几年前,我曾经这样做过一次,当时似乎很有效。

cpan -a

will create a Bundle of all your installed packages, which can be moved to your CPAN directory on the other system and installed there.

I did this once, a few years ago, and it seemed to work then.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文