CentOS 6 최소 설치 VirtualBox 게스트 확장 설치

Crystal Clear action info.png 작성 중인 문서입니다.
VirtualBox 리눅스 게스트 확장 설치
리눅스 VirtualBox Guest Additions 설치

1 인터넷 연결 확인

명령어
ping google.com
실행예시 (실패)
[root@localhost ~]# ping google.com
ping: unknown host google.com
→ 인터넷에 연결이 안됨. VirtualBox 리눅스 인터넷 연결을 참고하여 조치.
실행예시 (성공)
[root@localhost ~]# ping google.com
PING google.com (74.125.142.100) 56(84) bytes of data.
64 bytes from ie-in-f100.1e100.net (74.125.142.100) : icmp_seq=15 ttl=43 time=270 ms
64 bytes from ie-in-f100.1e100.net (74.125.142.100) : icmp_seq=16 ttl=43 time=270 ms
^C
... (생략)

2 필요 패키지 설치

명령어
yum install -y make
yum install -y kernel-devel
yum install -y gcc
yum install -y perl

3 게스트 확장 마운트

  • Oracle VM VirtualBox
  • CentOS 6 VM 창 --- 장치(D) --- [게스트 확장 설치(I)...]

GUI 상태라면 자동으로 마운트되지만, 최소설치에서는 GUI가 아니므로 자동마운트되지 않는다. 수동으로 해줘야 한다.

[root@localhost ~]# ll /dev/cd*
lrwxrwxrwx. 1 root root 3 Sep 16 16:25 /dev/cdrom -> sr0
[root@localhost ~]# mount -r /dev/cdrom /media
[root@localhost ~]# ll /media
dr-xr-xr-x. 3 root root     2048 Mar 15 02:58 32Bit
dr-xr-xr-x. 2 root root     2048 Mar 15 02:58 64Bit
-r-xr-xr-x. 1 root root      647 Aug 17  2011 AUTORUN.INF
-r-xr-xr-x. 1 root root     6966 Mar 15 02:49 autorun.sh
-r-xr-xr-x. 1 root root     5523 Mar 15 02:49 runasroot.sh
-r-xr-xr-x. 1 root root  7669197 Mar 15 02:53 VBoxLinuxAdditions.run
-r-xr-xr-x. 1 root root 19233280 Mar 15 02:53 VBoxSolarisAdditions.pkg
-r-xr-xr-x. 1 root root 13605384 Mar 15 02:42 VBoxWindowsAdditions-amd64.exe
-r-xr-xr-x. 1 root root   282928 Mar 15 02:34 VBoxWindowsAdditions.exe
-r-xr-xr-x. 1 root root  7417016 Mar 15 02:36 VBoxWindowsAdditions-x86.exe

4 게스트 확장 설치

[root@localhost ~]# /media/VBoxLinuxAdditions.run --nox11
Verifying archive integrity... All good. 
Uncompressing VirtualBox 4.1.10 Guest Additions for Linux......... 
VirtualBox Guest Additions installer
... (생략)
Building the VirtualBox Guest Additions kernel modules
Building the main Guest Additions module
... (생략)

5 같이 보기

6 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}