Ubuntu 64 位上的 Rails?
我正在尝试为 Rails 应用程序设置一台开发机器。我正在考虑 Ubuntu 64 位。我有使用 Ubuntu 32 位的经验,但没有使用 64 位的经验。
有人体验过使用 Rails 的 Ubuntu 64 位吗?你能分享一下你的经验吗?
I am trying to set up a dev machine for rails apps. I am thinking of Ubuntu 64bit. I have experience with Ubuntu 32bit but not 64bit.
Has anyone experienced Ubuntu 64bit with rails? Can you share your experience?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我在 Ubuntu 10.04 64 位上运行 Rails 没有任何问题。
I have no problems running Rails on Ubuntu 10.04 64 bits.
32x 和 64x 系统之间的主要区别在于内存寻址。
32x 系统的内存不能超过 3.7GB。
对于任何运行超过 4GB 的服务器,都需要 64x。
我们已经在 DigitalOcean 上运行带有 RAIL 的 64x Ubuntu,没有任何问题,因此您应该不会遇到任何问题。
The major difference between 32x and 64x systems is memory addressing.
A 32x system can't have more than 3.7(ish)GB of memory.
For any server that runs over 4GB 64x is required.
We've been running 64x Ubuntu with RAILs no problem at DigitalOcean so you shouldn't run into any issues.
我们在 Ubuntu Server 8.04 LTS(64 位)上内部运行 Rails 应用程序。没有遇到任何陷阱或意想不到的陷阱。不过还没有尝试过任何新版本。
We run rails apps internally on Ubuntu Server 8.04 LTS (64-bit). No traps or unexpected pitfalls encountered. Haven't tried any newer versions though.
与 32 位 ubuntu 相比,64 位 ubuntu 的内存使用率非常高
Very high memory usage was seen on 64bit ubuntu vs. 32. bit
我目前正在运行并使用 Ubuntu 11.10 64 位作为我的主要操作系统,并使用 Ruby 1.9.2 和 Rails 3.2.2 进行编程。
安装完所有必要的 gem(例如 Ruby、Rails 和 JavaScript 引擎(例如 Node.js 和/或 Therubyracer))后,您只需要您个人使用的各个 gem。
我从来没有遇到过任何问题,所以彻底建议它。
如果您遇到任何问题,有一个博客解释了如何使用虚拟盒进行设置,但完整安装的步骤是相同的。
I am currently running and using Ubuntu 11.10 64bit as my main OS and am programming with Ruby 1.9.2 and Rails 3.2.2.
After installing all the necessary gems such as Ruby, Rails and a javascript engine such as Node.js and/or Therubyracer, you just need the individual gems that you personally use.
I have had no problems what so ever, so thoroughly advise it.
If your having any trouble, There is a blog that explains setting up using a Virtual box but the steps are the same for a full installation.
我们正在 ubuntu 10.04 64 位的生产模式下使用 ruby on Rails 服务器。流量高,稳定性好。
我们使用最后的 apache2、ruby 1.9.2、rails 3.0.1
我们使用像 rmagick、feedzira 等需要特殊 ubuntu 库的 gem。
我们从 32 位迁移没有任何问题。
我不想做任何宣传,但在这种情况下,一个真实的案例就是最好的答案。我包含链接 http://www.cosasderegalo.com
此外,我们还有一台 ubuntu 10.04 64 位的开发机器,我们还使用 RVM 来更好地管理不同的宝石集。
希望这有帮助
We are working with ruby on rails servers on ubuntu 10.04 64 bits in production mode. High traffic ad great stability.
We use last apache2, ruby 1.9.2, rails 3.0.1
We are using gems like rmagick, feedzira,etc.. that need special ubuntu libraries.
We migrated from 32 bits without any problem.
I don't want to do any promotion, but in this case a real case is the best answer your question. I include the link http://www.cosasderegalo.com
Also we have a development machine with ubuntu 10.04 64 bits, also we use RVM to manage better different gem sets.
Hope this helps