[Wiki] VirtualBox를 Ubuntu16.04에 CLI로 설치하는 방법
VirtualBox를 설치할 때, GUI 우분투를 이용한다면 쉽게 설치가 가능하다. 그러나 Server 버전을 사용하는 경우에는 CLI로 설치하여야 한다. (X11 Forwarding을 하지 않은 경우)
CLI로 설치하는 방법을 검색해보고 그 방법을 정리하였다. [1]
1. 저장소 추가
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # sudo vi /etc/apt/source.list # 자신의 distribution에 맞는 줄을 찾아 추가한다. 16.04 버전은 Xenial을 추가하면 된다. # For Ubuntu 17.10 ("Artful") deb http://download.virtualbox.org/virtualbox/debian zesty contrib # For Ubuntu 16.04 ("Xenial") deb http://download.virtualbox.org/virtualbox/debian xenial contrib # For Ubuntu 14.04 ("Trusty") deb http://download.virtualbox.org/virtualbox/debian trusty contrib # For Debian 9 ("Stretch") deb http://download.virtualbox.org/virtualbox/debian stretch contrib # For Debian 8 ("Jessie") deb http://download.virtualbox.org/virtualbox/debian jessie contrib | cs |
2. VirtualBox 패키지 Sign Key 불러오기
1 2 3 | wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - | cs |
3. VirtualBox 설치
1 2 | sudo apt-get update sudo apt-get install virtualbox-5.2 | cs |
위 과정이 모두 끝나면 설치가 완료된다.
[1] How to Install Oracle VirtualBox 5.2 on Ubuntu 17.10 / 16.04, Debian 9 / 8
반응형
'IT > IT WIKI' 카테고리의 다른 글
[Wiki] ruby(루비) 실행 시(irb), Ignoring .... 경고가 잔뜩 발생하는 경우 해결 방법 (0) | 2018.01.08 |
---|---|
[Wiki] 마크다운이나 HTML에서 pre 태그 내 글이 자동 줄바꿈이 되지 않는 경우 해결법 (0) | 2018.01.05 |
[Wiki] tar 여러 파일 한 번에 압축 풀기 (0) | 2017.12.28 |
[Wiki] 애플 매직 키보드 2를 윈도우 10에서 사용하기 (Home, End 키 등등) (0) | 2017.12.27 |
[Wiki] SSH 접속 시, Key(키) 기반의 인증 방식으로 접속하기 (비밀번호 입력 없이 접속하기) (0) | 2017.12.21 |