Reputation:
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.
Upvotes: 0
Views: 1230
Reputation: 554
Use RVM and it will be a matter of copy pasting a command and you are done.
To install both Ruby and Rails: \curl -L https://get.rvm.io | bash -s stable --rails
Upvotes: 2