Failed installing RVM - ruby-on-rails

I am new using ruby. I am installing ruby on subsystem Linux.I follow the instruction in https://www.howtoforge.com/tutorial/ubuntu-ruby-on-rails/. And get error in download the RVM installer script and install the RVM. I got message
"mktemp: failed to create file via template ‘/usr/share/rvm/rvm-exec-test.XXXXXX’: Permission denied".
I change the command to
curl -sSL https://get.rvm.io | sudo bash -s stable --ruby
then I get error in the following step. It says "-bash: /usr/local/rvm/scripts/rvm: No such file or directory"
What can I do to fix this ?
Thank You :)

check /etc/profile.d/rvm.sh if this file was not removed by implode
Also make sure there is no simple
source /usr/local/rvm/scripts/rvm
in any of your shell initialization files?
grep -rn rvm ~/.bash*

Related

How to unset GEM_HOME

Hi my understanding of the terminal is small. I'm trying to install rvm can someone tell me how to unset GEM_HOME? I have a feeling I need to edit some file, but I don't know if its a command line or a file I need to open and comment out. I'm running Mac OSX 10.14.6 Mojave?
Thank you
Joshuas-iMac:~ compy$ \curl -sSL https://get.rvm.io | bash -s stable
Downloading https://github.com/rvm/rvm/archive/1.29.9.tar.gz
Downloading https://github.com/rvm/rvm/releases/download/1.29.9/1.29.9.tar.gz.asc
Found PGP signature at: 'https://github.com/rvm/rvm/releases/download/1.29.9/1.29.9.tar.gz.asc',
but no GPG software exists to validate it, skipping.
Upgrading the RVM installation in /Users/compy/.rvm/
RVM PATH line found in /Users/compy/.mkshrc /Users/compy/.profile /Users/compy/.bashrc /Users/compy/.zshrc.
RVM sourcing line found in /Users/compy/.profile /Users/compy/.bash_profile /Users/compy/.zlogin.
Upgrade of RVM in /Users/compy/.rvm/ is complete.
* WARNING: you have set GEM_HOME="/Users/compy/.gem/ruby/2.5.1"
This is conflicting with RVM. Make sure to call:
unset GEM_HOME
Thanks for installing RVM 🙏
The answer is on the error logs:
unset GEM_HOME
On comman line do:
unset GEM_HOME ; \curl -sSL https://get.rvm.io | bash -s stable

Error installing ruby on rails

I am trying to install ruby on rails with this link
But getting error. When I ran this rvm install 2.3.1
I get this error
mkdir: cannot create directory ‘/usr/local/rvm/log/1467720951_ruby-2.3.1’: Permission denied
tee: /usr/local/rvm/log/1467720951_ruby-2.3.1/update_system.log: No such file or directory
Error running 'requirements_debian_update_system ruby-2.3.1',
showing last 15 lines of /usr/local/rvm/log/1467720651_ruby-2.3.1/update_system.log
tail: cannot open ‘/usr/local/rvm/log/1467720651_ruby-2.3.1/update_system.log’ for reading: No such file or directory
Requirements installation failed with status: 1.<br/>
When i ran curl -sSL https://get.rvm.io | bash -s stable <br/>
so it was install on /usr/local/rvm
When I ran ls when i was inside /usr/local/rvm getting this error
aniket#aniket.shivam-L740-X4010:/usr/local/rvm$ ls
archives config docs examples gems help installed.at LICENSE man patchsets RELEASE scripts tmp VERSION
bin contrib environments gem-cache gemsets hooks lib log patches README rubies src user wrappers
Please try with below command,
sudo chmod -R 777 /usr/local
then retry with
rvm install 2.3.1
Hope this will solve your problem.

RVM installation issue on Ubuntu " No such file or directory"

I'm actually a newbie to Ubuntu (14.04) and RoR (development). So I want to get some help to resolve my error.
I was following a video tutorial and stuck in a command i.e.
rvm get head and rvm reload
that resulted me as
No command 'rvm' found, but there are 20 similar ones
rvm: command not found
I interpreted it as RVM is not installed on Ubuntu. So I tried for it from many sources like https://stackoverflow.com/a/22096382/3251831 and https://gorails.com/setup/ubuntu/14.04#ruby but when I run the command
source ~/.rvm/scripts/rvm
It gives a message like
bash: /home/root2/.rvm/scripts/rvm: No such file or directory
I'm stuck here.
sounds like you need to install rvm
follow the instructions on rvm.io
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
\curl -sSL https://get.rvm.io | bash -s stable
try and reload your entire shell or
source ~/.bash_profile

bash: /home/XXX/.rvm/scripts/rvm: No such file or directory

I just walk-through with the installation of Ruby on Rails on Ubuntu using RVM.
First I have logged in as the root user.
Then I started with the following commands.
\curl -sSL https://get.rvm.io | bash -s stable --rails
It has been installed without any error.
source ~/.rvm/scripts/rvm
When I run this command. It showing the error as bash: /home/XXX/.rvm/scripts/rvm: No such file or directory
I added the [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" command in my .bashr file.
Install RVM:
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
Now you will get a success message. Then, run this command:
\curl -sSL https://get.rvm.io | bash -s stable
See http://rvm.io/ for more info.
I think they may have moved some files around fixed with:
source /usr/share/rvm/scripts/rvm
After installing rvm, try:
source ~/.rvm/scripts/rvm
If the above command throws some issue, try this command:
source /usr/local/rvm/scripts/rvm
Firstly no need to go for sudo access while installing rvm, just follow the very basic commands below
$\curl -sSL https://get.rvm.io | bash -s stable
This will install rvm.
$ rvm list known
# MRI Rubies
[ruby-]1.8.6[-p420]
[ruby-]1.8.7[-p374]
[ruby-]1.9.1[-p431]
[ruby-]1.9.2[-p320]
[ruby-]1.9.3[-p545]
[ruby-]2.0.0-p353
Install a version of ruby as required.
$ rvm install 2.0.0-p353
Now you can use the version of ruby for which you need to install rails as a gem.
$ rvm use 2.0.0
Also you can make it default if you want so
$ rvm use 2.0 --default
Next you can install rails as a gem.
$ gem install rails
gems should never be installed with sudo access as they change from project to project. rvm helps in managing the different versions of ruby in one m/c. You can also use gemsets to isolate gems and specific versions from one application to another.
just create ~/.rvm/scripts/rvm directories, then try to install rvm but make sure you are not logged in as root.
This source /usr/share/rvm/scripts/rvm works for me on ubuntu 20.04.
I changed the local in /usr/local/rvm/scripts/rvm to share
I assume that you have installed the rvm.
Is generally not recommend to install RVM as a root user because of umask security risk. Try running these commands as a user.
Downloading RVM (Do not sudo this command)
\curl -sSL https://get.rvm.io | bash -s stable --rails
Then you'll need to add the location to sources(You'll probably need to reload your bash for rvm to work)
source ~/.rvm/scripts/rvm
You can install your desired version like so(replace ruby_version with one you would like to install, eg 2.1.4)
rvm install ruby_version
To list the available version on your machine
rvm list
To use a version of ruby run
rvm use ruby_version
If you have any trouble refere to the RVM website
As root, you traditionally don't have a /home folder. Root's home is different than a normal user.
You very likely don't want to install RVM as root.
Please do read the information at http://rvm.io specifically the installation notes.
Can you use sudo find to locate the correct path of the rvm directory? If you find the path, you should be able to rerun the source ~/.rvm/scripts/rvm command with the correct path.
Also, I fully agree with the previous answers about not creating it as root. DigitalOcean was a pretty good tutorial on adding users https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04
Alright so when you get a failure message "No such file or directory",
type
\curl -L https://get.rvm.io | bash -s stable
in your terminal.
There will be a GPG signature verification failure.
Bellow that failure there would be a link for github and a key something like this
gpg2 --recv-keys 409B6B...
So download a tar file from the github link and run this code to install GPG:
sudo apt install gnupg2
and run that key :
gpg2 --recv-keys 409B6B...
next run the code:
\curl -L https://get.rvm.io | bash -s stable
it will show you installing the rvm
and then you can run:
source ~/.rvm/scripts/rvm
thats it you are good to go
If you install rvm via apt-get you can add the following line into ~/.zshrc or ~/.bashrc
source /etc/profile.d/rvm.sh
For me all the above methods didn't workout.
After the installation and updates, still the terminal shows this "error bash: /root/.rvm/scripts/rvm: No such file or directory"
The simple method which helps me to solve this error is :
Show Hidden Files
Go to the Home (where the bash scripts are stored)
Edit the .bashrc
At the bottom you can find some lines about rvm
just clear the rvm lines and save the file.
Open terminal and check it.
Your surest bet is to use home brew. Funny part is if you try brew upgrade ruby, you will have an error if brew wasn't used to install ruby in the first instance so use:
$ brew install ruby
Then afterwards use
$ brew upgrade ruby
You may need to close and reopen your terminal to see the effect of the upgrade by typing
$ ruby -v

Error Installing rvm. scripts directory is missing from .rvm

I found a few posts regarding installing rvm, but none of them apply here. On a fresh VM installation on Koding, I've followed the instruction to install rvm
\curl -sSL https://get.rvm.io | bash -s stable
This seems to work fine, there are no errors downloading the 2 .tar.gz and .tar.gz.asc files
Then when i activate rvm using :
source ~/.rvm/scripts/rvm
that's when i get the error message "bash: /home/railspadawan/.rvm/scripts/rvm: No such file or directory".
I checked .rvm and the scripts directory is missing. I experienced the same problem on Nitrous.io, as well.
It wasn't working as the gpg signature verification had failed. I downloaded the signatures and voila! it works now.
rvm has started enforcing GPG signing and the problem surfaced some 3-4 days back (https://github.com/wayneeseguin/rvm/issues/3110). Looks like a necessary step from now for all new rvm installations.
1) gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3
This installs GPG signatures. rvm has started enforcing GPG signing and the problem surfaced some 3-4 days back (https://github.com/wayneeseguin/rvm/issues/3110).
Steps 2 & 3 are unique to Nitrous.io and are a result of error messages during the rvm install.
2) unset GEM_HOME
3) added source ~/.profile to .bash_profile
followed by the rvm install steps
1) $ \curl -L https://get.rvm.io | bash -s stable
2) source /home/action/.rvm/scripts/rvm
cheers,
shalini

Resources