VirtualBox에서 Fedora10 guest에 VBoxAddition 설치하기 본문

Programming

VirtualBox에서 Fedora10 guest에 VBoxAddition 설치하기

halatha 2009. 1. 12. 23:34
Fedora10을 설치한 후
1. System update 실행후 reboot
2. terminal에서 root 권한으로 들어온 후 dkms, gcc, make 설치
$ su - root
$ yum install dkms
$ yum install gcc
$ yum install make
3. 메뉴의 '장치'에서 VBoxGuestAddtion.iso를 마운트하고 directory를 directory를 바꾸고 하드웨어에 맞는 script를 실행
cd /media/VBOXADDITIONS_2.1.0_41146
$ sh ./VBoxLinuxAddition-x86.run
4. terminal에서 root 권한으로 들어온 후 /etc/X11/xorg.conf 추가
Section "Screen"
        Identifier      "Default Screen"
        Device  "VirtualBox graphics card"
        Monitor "Generic Monitor"
        DefaultDepth    24
        SubSection      "Display"
                Depth   24
                Mode    "1280x800" # 이 부분에 알맞는 해상도 입력
        EndSubSection
EndSection
5. X 재시작(Ctrl + Alt + Backspace)
Comments