프로젝트상 불가피하게 아래 버전인 루비를 설치해야 해서, 도커 + 우분투 + 루비 설치를 진행 함.
*openssl 설치가 매우 느린거 같다.(5번..)
sudo docker run -it --device=/dev/kfd --device=/dev/dri --cap-add=SYS_RAWIO --device=/dev/mem --group-add video --network host --env DISPLAY=unix$DISPLAY --privileged --volume $XAUTH:/root/.Xauthority --volume /tmp/.X11-unix/:/tmp/.X11-unix kiritigowda/ubuntu-18.04:latest
1.
apt-get update
apt-get install -y \
sudo \
curl \
git \
vim \
net-tools \
nmap \
rbenv
2.
sudo apt-get install ruby -y
2-1 ruby -v
3.git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bashrc
4.
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
5.
rbenv install 2.2.10
6.
rbenv global 2.2.10
기타 명령어:
https://linkhub.tistory.com/12
- rbenv install --list
- rbenv versions
댓글