有人在 Solaris 10x86 上安装了 Rails 3

发布于 2024-10-19 18:05:36 字数 187 浏览 6 评论 0原文

我想要一种在未连接到互联网的 Solaris 10 x86 服务器上安装 Rails 3 的简单方法。我可以下载文件并刻录到 DVD 或记忆棒并以这种方式安装。有些软件包是最好的,因为并不真正期待从源代码编译。

有没有人做过这个或看过任何有关如何做到这一点的指南?我看过一篇旧帖子(2009),但这并没有真正帮助我。

问候 安迪

I would like an easy way of installing Rails 3 on Solaris 10 x86 server that is not attached to the internet. I can download files and burn to DVD or mem stick and install that way. Some Packages would be best as not really looking forward to compiling from source.

Has anyone done this or seen any guides releating on how to do this ? I have seen an old post (2009) but that doesn't really help me.

Regards
Andy

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

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

发布评论

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

评论(1

如歌彻婉言 2024-10-26 18:05:36

假设您需要安装运行 Ruby 和 RoR 3.0 的所有要求。

最简单的方法是从 Sun 免费软件 获取所有内容。

依赖项

您需要首先为 RoR 安装这些依赖项。

Ruby 软件包的某些部分可能需要依赖于以下软件包,其中一些软件包默认情况下应该已经安装在 Solaris 10 上(例如 zlib、libiconv 和 libintl),但我已经有一段时间没有接触过基本的 Solaris 机器了,所以您可能需要下载所有内容以确保:


安装软件包

Sun Freeware 的软件包可以在 Solaris 10 中使用 pkgadd 工具安装:http://www.sunfreeware.com/download.html

示例:

要安装已下载的文件,请按照此处的示例进行操作:例如,如果您要将 gzip 压缩包 foo-1.00-sol8-sparc-local.gz 下载到目录 /tmp 中,要安装此包,您将使用以下命令:

cd /tmp
gunzip foo-1.00-sol8-sparc-local.gz
pkgadd -d foo-1.00-sol8-sparc-local

安装 RoR 3

这就是让 Ruby 运行的一切。现在你必须下载 RoR 源并构建它


可能会更容易(?)

你也许能够简化这个过程通过尝试使用来自 Bolthole 的 pkg-get 脚本获取依赖项: http://www.bolthole .com/solaris/pkg-get.html

该脚本允许您运行仅下载模式来获取软件包。如果您使用仅下载模式,我认为它不需要您在Solaris计算机上运行它,但否则您可能可以稍微修改一下它只是为了下载而不关心已安装的软件包等。

Assuming you need to install all the requirements for running Ruby and RoR 3.0.

It's easiest to get everything from Sun Freeware

Dependencies

You'll need to install these dependencies for RoR first.

Portions of the Ruby package might need to depend on the following packages, some of which should already be installed by default on Solaris 10 (like zlib, libiconv, and libintl), but I haven't touched a base Solaris machine in a while so you might need to download everything to be sure:


Installing the packages

The packages from Sun Freeware can be installed with the pkgadd tool in Solaris 10: http://www.sunfreeware.com/download.html

Example:

To install a file you have downloaded, follow the example here: For example, if you were to download a gzipped package foo-1.00-sol8-sparc-local.gz into directory /tmp, to install this package, you would use the following commands:

cd /tmp
gunzip foo-1.00-sol8-sparc-local.gz
pkgadd -d foo-1.00-sol8-sparc-local

Install RoR 3

That's just everything to get Ruby running. Now you have to download RoR source and build it


Might be easier (?)

You might be able to ease this process of dependency getting by attempting to use the pkg-get script from bolthole: http://www.bolthole.com/solaris/pkg-get.html

The script allows you to run a Download-only mode to get packages. I don't think it requires you to run it on a solaris machine if you use download-only mode, but otherwise you might be able to hack it up a little just to download and not care about installed packages and such.

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