Linux
VirtualBox install Guest Additions for Ubuntu (버추얼박스 우분투 게스트확장 설치하기)
dosnipe
2015. 10. 29. 22:48
1. 먼저 '장치 탭 > 게스트 확장 CD 이미지 삽입'을 클릭합니다.
|
2. 우분투에 CD를 마운트 합니다.
1 | sudo mount /dev/cdrom /mnt | cs |
3. Guest Addition을 설치하기 위해서 사전에 필요한 패키지들이 있습니다. 이를 설치합니다.
1 | sudo apt-get update && sudo apt-get install build-essential dkms linux-headers-3.19.0-25-generic | cs |
위 노란색 글씨 부분(3.19.0-25-generic)은 해당 Ubuntu의 버전에 맞게 수정하셔야 합니다.
이는 # uname -r 을 통해 알 수 있습니다.
|
4. 마지막으로 Guest Addition을 설치합니다.
1 2 | cd /mnt sudo ./VBoxLinuxAdditions.run | cs |
5. 설치가 완료되면 마운트를 해제하고 재부팅 하시면 모두 완료된 것입니다.
1 2 | sudo umount /mnt sudo reboot | cs |