すみません。突然vagrant upでエラーが発生したので、原因究明の質問をさせてください。
https://www.notion.so/1a7027c505c44a4a8050a5dce950ac41
エラー文
jsx
1 2Copy iso file /Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso into the box /tmp/VBoxGuestAdditions.iso 3Unmounting Virtualbox Guest Additions ISO from: /mnt 4umount: /mnt: not mounted. 5The following SSH command responded with a non-zero exit status. 6Vagrant assumes that this means the command failed! 7umount /mnt 8Stdout from the command: 9Stderr from the command: 10umount: /mnt: not mounted. 11
やったこと
・最初は画像2のようなエラーが出たのでググってみたところ、vagrant plugin install vagrant-vbguest
すれば良いと出てきたので実行→上記のようなエラー文が表示されるようになった。
このエラー文でググったら以下の記事が該当
https://qiita.com/uralogical/items/231ba43c593432a3b470
とりあえずこの通りに進めいく
jsx
1canonnoMBP:ubuntu64_18 canon$ vagrant vbguest --status 2 3Got different reports about installed GuestAdditions version: 4Virtualbox on your host claims: 5.2.8 5VBoxService inside the vm claims: 5.2.34 6Going on, assuming VBoxService is correct... 7[default] A Virtualbox Guest Additions installation was found but no tools to rebuild or start them.
警告文は出ているが、多分大丈夫??
jsx
1canonnoMBP:ubuntu64_18 canon$ sudo /etc/rc.d/init.d/vboxadd setup 2Password: 3sudo: /etc/rc.d/init.d/vboxadd: command not found
jsx
1cd /tmp 2$ wget http://download.virtualbox.org/virtualbox/4.3.20/VBoxGuestAdditions_4.3.20.iso 3 42021-02-09 17:40:46 (10.0 MB/s) - `VBoxGuestAdditions_4.3.20.iso' へ保存完了 [58343424/58343424]
成功したようです
jsx
1$ sudo mount -t iso9660 /tmp/VBoxGuestAdditions_4.3.20.iso /mnt 2mount: realpath /mnt: No such file or directory
そんなものありませんと怒られます。
このエラー文でまたググる
https://qiita.com/192agur2/items/8497099557edc04db5a3
こんな感じの記事が出てきました。
とりあえずディレクトリを作ればいいっぽいので作ってみました。
jsx
1$ mkdir /mnt 2mkdir: /mnt: Read-only file system
/mntは読み込み専用のファイルだと言われてしまう。
ここで詰んでます。
jsx
1$ vagrant --version 2Vagrant 2.2.14
jsx
1$ df 2Filesystem 512-blocks Used Available Capacity iused ifree %iused Mounted on 3/dev/disk1s5s1 489620264 44358416 120418408 27% 567557 2447533763 0% / 4devfs 383 383 0 100% 664 0 100% /dev 5/dev/disk1s4 489620264 7157824 120418408 6% 4 2448101316 0% /System/Volumes/VM 6/dev/disk1s2 489620264 634720 120418408 1% 1120 2448100200 0% /System/Volumes/Preboot 7/dev/disk1s6 489620264 221048 120418408 1% 355 2448100965 0% /System/Volumes/Update 8/dev/disk1s1 489620264 315366568 120418408 73% 2674849 2445426471 0% /System/Volumes/Data 9map auto_home 0 0 0 100% 0 0 100% /System/Volumes/Data/home 10/dev/disk1s5 489620264 44358416 120418408 27% 568977 2447532343 0% /System/Volumes/Update/mnt1
あなたの回答
tips
プレビュー