I install the rails according to the standard plan and at the very first step an error occurred I attach the screen:

enter image description here

how to fix it?

  • Welcome to Stack Overflow in Russian ! text information is better not to lay out as an image, but as text. in fact, the question is: it looks like it crashes either on github.com or somewhere along the way to your computer. - aleksandr barakin
  • Put in front of the team sudo - LEQADA
  • @LEQADA, in the event of a write error to the disk, it is most logical to first check if there is free disk space. - aleksandr barakin
  • @MR_dONE, please attach the output of the df program to the question. You can change the question by clicking the edit below question text. - aleksandr barakin
  • @alexanderbarakin, that would be logical 10 years ago. Today it is most logical to check the rights to the record) - LEQADA

2 answers 2

By your link is a script file, which is something muddies. As can be seen from what is displayed on the screen, the script tries to download the file, but throws out curl status 23 .

Go to the curl the man page and read what this status means. And he means

Write error. Curl couldn't write data files to local filesystem or similar.

Write error Curl cannot write data to the file system or to something like that.

So something does not allow us to write data. We give rights

 \curl -L https://get.rvm.io | sudo bash -s stable 

    Add sudo use the installer from the official site \ curl -L https://get.rvm.io | sudo bash -s stable

    • This is exactly the screenshot, but without sudo , just like on the official website :) - D-side