2
votes
0answers
79 views

RVM installed ruby no such file or directory

I have installed RVM without any problems. But when I try to install ruby 1.9.3 it returns an error: ruby-1.9.3-p392 - #configure ruby-1.9.3-p392 - #download ruby-1.9.3-p392 - #validate archive ...
0
votes
1answer
110 views

Path to gem (e.g. /var/lib/gems/1.8/bin/) when Ruby is installed using RVM?

First-time Ruby user here, and Jekyll is the reason. First, I installed RVM (on Ubuntu Server 12.04 64-bit): \curl -L https://get.rvm.io | bash -s stable And followed the subsequent instructions ...
0
votes
1answer
106 views

Capistrano deployment can't find certain gems during deployment (Probably RVM related)

I've been trying to deploy to a VPS using Capistrano, and the following command is throwing me a lot of errors: * executing "cd -- /home/work/for_linode/releases/20130317174830 && rake ...
0
votes
1answer
60 views

Can't switch another ruby versions on RVM

I have Yakuake on Ubuntu 12.04 and I've faced this problem before, it's already solved. But now I can't switch from Ruby to JRuby on RVM. When I run rvm use jruby it throws this error: RVM is not a ...
0
votes
1answer
93 views

rails executable not working on yakuake app

I have Rails '-v 3.2.11' installed on Ruby '-v 1.9.3-p374' via RVM on Ubuntu Precise. I also installed Yakuake app '-v 2.9.8-1' which gets a drop-down terminal for me. Normally, on Gnome terminal, I ...
2
votes
1answer
196 views

Ubuntu 12.04 ruby bundle install error

I'm trying to deploy a rails app to my Ubuntu server. I already installed rvm and right now I'm trying to use bundler in order to deploy my app. However I'm getting this: ...
5
votes
2answers
1k views

Error during rails installation Ubuntu 12.04

I'm installing rails on Ubuntu machine, so far I got no problems reading the following tutorials: ...
0
votes
1answer
221 views

New Rails Project on Ubuntu

i am trying to run my firt rails project which "hello world!" but i think there is some problems.. I have installed ruby, rails, apache, mysql. by rvm. I use these command to start my project ...
3
votes
3answers
2k views

rvmsudo command not working properly

I am trying to get an updated version of a RoR environment. I am running Ubuntu 12.04, and I have this setup: $ groups user adm cdrom sudo dip plugdev lpadmin sambashare rvm $ rvm -v rvm 1.17.2 ...
0
votes
3answers
65 views

Rails failing when attempting to install from gem 1.9.2

I am attempting to install RoR on my Lubuntu box just setup today, I have installed all of the rvm requirements installed Ruby. When I go to install rails I keep getting this error. Running the ...
1
vote
1answer
343 views

Missing lib 'libruby.so.1.9' error while ruby installation in Ubuntu 12.4 using rvm

I am trying to install ruby using rvm on a remote server through terminal. I am following this link http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/ But at the install step I get the ...
0
votes
1answer
226 views

Not able to install rvm on ubuntu 12.04

I'm trying to install ruby on rails on ubuntu 12.04 through rvm I did apt-get update and installed curl. Then i entered below command in the terminal curl -L get.rvm.io | bash -s stable But ...
0
votes
0answers
375 views

rake aborted! invalid byte sequence in UTF-8, Rails 3, ruby 1.9.3, Ubuntu 12.04 LTS, updated recently

Here is the stack trace, $ bundle exec rake --trace rake aborted! invalid byte sequence in UTF-8 /home/gautam/.rvm/gems/ruby-1.9.3-p194@global/gems/rake-0.9.2.2/lib/rake/application.rb:183:in ...
1
vote
2answers
102 views

Trying to Get Started With Rails on Ubuntu

I am having some bumpy getting Rails running on my Ubuntu machine. I was hoping that this script would be a no-brainer install: https://github.com/rkjha/RailsOnUbuntu/blob/master/rails-installer.sh ...
0
votes
1answer
179 views

OpenSSL error with RVM rubies on Ubuntu 12.04

I'm having persistent issues with OpenSSL on my Ubuntu 12.04 machine. I'm using RVM, and I've tried the official solutions, to no avail. Requests made to some hosts fail (for instance, bitbucket.org) ...
0
votes
1answer
141 views

Issue in install rvm on ubuntu

Rvm One line installer is giving me issues ie: curl -L https://get.rvm.io | bash -s stable --rails Iam getting this error: ERROR: Loading command: install (LoadError) cannot load such file ...
0
votes
1answer
191 views

Segmentation fault creating project in Rails, Ubuntu 12.04

I did a fresh install of Ubuntu 12.04 Server to set up a Ruby on Rails development environment. I followed this guide to install it ...
0
votes
2answers
3k views

bash issue installing rvm on ubuntu 12.04 LTS

I am completely new to Linux and am having trouble installing rvm. From https://rvm.io/rvm/install/, I run $ curl -L get.rvm.io | bash -s stable --ruby in terminal. I receive the following error: ...
0
votes
2answers
490 views

Ubuntu 12.0.4 rails was working yesterday. Not today

I use rvm and installed it with this instructions https://rvm.io//rvm/install/. Yesterday when I was working everything was just fine. Today when I tried to start rails s it says The program ...
1
vote
2answers
2k views

How to install rvm on Vagrant (Ubuntu 12.04 LTS) using Puppet?

I have a Vagrant base box running Ubuntu 12.04 LTS (Precise Pangolin). I can bring up the box (vagrant up) and ssh (vagrant ssh) into it fine. Next step: I want to use Puppet to provision RVM and ...