VBoxGuestAdditions를 직접 Vagrant에 설치합니다.

1238 단어 vagrant
문제 설명
오늘 vagrant 타임즈 시작 오류:
==> default: Mounting shared folders...
    default: /vagrant => E:/VmWork/ubuntu14.04
Failed to mount folders in Linux guest. This is usually because
the "vboxsf" file system is not available. Please verify that
the guest additions are properly installed in the guest and
can work properly. The command attempted was:

mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` vagrant /vagrant
mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g vagrant` vagrant /vagrant

The error output from the last command was:

stdin: is not a tty
mount: unknown filesystem type 'vboxsf'


다음 그림은 다음과 같습니다.
문제 해결
인터넷 조회를 통해 VBox Guest Additions가 설치되어 있지 않았는데, 다음은 VitrualBox의 이 강화 기능을 수동으로 설치합니다.
가상 머신 중지
명령vagrant halt을 사용하여 실행 중인 VM 중지
VirtualBox에서 VM 시작
가상 머신을 VirtualBox에서 직접 시작하여 다음과 같이 로그인합니다.
VBoxGuestAdditions 마운트 및 설치
마운트 방법은 다음과 같습니다. 장치 -> 강화 기능을 설치한 후 다음 명령을 사용하여 VBox Guest Additions를 설치합니다.
bashsudo mount /dev/cdrom /media/cdrom
cd /media/cdrom/
sudo ./VBoxLinuxAddtions.run

설치 절차는 다음과 같습니다.
그다음에 즐겁게 vagrant up할 수 있어요.

좋은 웹페이지 즐겨찾기