Changes between Version 9 and Version 10 of Ticket #17189, comment 13
- Timestamp:
- Feb 11, 2018 7:37:44 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17189, comment 13
v9 v10 1 START UPDATE 2: 2 OK, so I ended up figuring this out. Turns out Ubuntu 17.10 does have vboxvideo and vboxguest installed, altho not via a package. So that line in the installer (lsmod | grep -q vboxguest) was failing. 3 My fix: 4 {{{ 5 echo "blacklist vboxvideo" >> /etc/modprobe.d/blacklist.conf 6 }}} 7 8 On reboot: 9 {{{ 10 modprobe -r vboxguest 11 sed -i '$ d' /etc/modprobe.d/blacklist.conf 12 }}} 13 14 That addressed my issue. Also, just noticed that the 5.2.7 Guest Additions file is recommended. 15 16 END UPDATE 2 17 1 18 START UPDATE: 2 19