user1899082
user1899082

Reputation:

Installing RubyOnRails on a RedHat linux box

Through VMWare cloud services all I am given is a RedHat machine with a login that I can only ssh to it with a command like ssh [email protected] And my goal is to install Ruby,Rails on it. Some Googling gave me this link: https://github.com/joshfng/railsready

so I copy-paste the command he has but this is the message I get: "The script must be run as a normal user with sudo prigs

What should I do at this point? Or if you have better ways on doing this even better.

enter image description here

Upvotes: 0

Views: 1230

Answers (1)

Bobak_KS
Bobak_KS

Reputation: 554

Use RVM and it will be a matter of copy pasting a command and you are done.

https://rvm.io/rvm/install

To install both Ruby and Rails: \curl -L https://get.rvm.io | bash -s stable --rails

Upvotes: 2

Related Questions