Virtualbox에 TrueOS를 설치했습니다. 모든 것이 잘 작동합니다. 하지만 virtualbox 게스트 추가 기능을 연결한 후에는 설치할 방법을 찾을 수 없습니다. 어떻게 해야 하나요?
저는 우분투 호스팅을 사용하고 있습니다.
답변1
TrueOS 터미널에 들어가세요
sudo su
cd /var/db/portsnap
portsnap fetch
cd /usr/ports
portsnap extract
portsnap fetch update
git clone https://github.com/freebsd/freebsd.git /usr/src //This will take about 30 minutes - 1 hour depending upon your internet speed
cd /usr/src; make clean //This will take about 1 hour
cd /usr/ports/emulators/virtualbox-ose-additions && make install clean //This will take about 5-6 hours
reboot
다시 시작한 후 TrueOS 화면 해상도를 권장 값으로 조정하십시오.
답변2
pkg install virtualbox-ose-additions
AppCafe 또는 터미널을 통해 virtualbox-ose-additions 패키지를 설치하십시오. 로드해야 하는 커널 모듈 및/또는 활성화해야 하는 서비스를 설치한 다음 VM을 다시 시작하고 로그인 화면에서 오른쪽 하단에 있는 버튼을 클릭하여 비디오 드라이버를 변경하고 스위치를 확인했습니다. "vboxvideo"로.
답변3
터미널에서 다음 명령을 실행합니다.
sudo -i
pkg install virtualbox_ose_additions
Add the following lines to /etc/rc.conf
vboxguest_enable="YES"
vboxservice_enable="YES"
reboot