Last active
September 25, 2019 16:53
-
-
Save momoseijin/f4150f0e434ee92a9d38f6dd198de89d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Mastodonを止める | |
systemctl stop mastodon-{web,sidekiq,streaming}.service | |
#Mastodonユーザになる | |
sudo su - mastodon | |
#Rubyのアップデートをするためにrbenvのおいてあるディレクトリに移り最新版をダウンロード | |
cd ~/.rbenv | |
git pull | |
#同じようにプラグインのディレクトリに移り最新版をダウンロード | |
cd ~/.rbenv/plugins/ruby-build | |
git pull | |
#rbenvのディレクトリに戻りrbenvからRubyを2.5.0へ | |
cd ~/.rbenv | |
rbenv install 2.5.0 | |
rbenv global 2.5.0 | |
rbenv rehash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment