답변:
루비가 다음과 같은 방식으로 설치된 경우 :
./configure --prefix=/usr/local
make
sudo make install
다음과 같은 방법으로 제거 할 수 있습니다.
설치된 루비 버전을 확인하십시오. 2.1.2를 가정하자
wget http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.bz2
bunzip ...
tar xfv ...
cd ruby-2.1.2
./configure --prefix=/usr/local
make
sudo checkinstall
# will build deb or rpm package and try to install it
설치 후 이제 패키지를 제거하면 디렉토리 / 파일 / 등이 제거됩니다.
sudo rpm -e ruby
몇 가지 유물이 남아있을 수 있습니다.
Removing ruby ...
warning: while removing ruby, directory '/usr/local/lib/ruby/gems/2.1.0/gems' not empty so not removed.
...
수동으로 제거하십시오.