Skip to content

Instantly share code, notes, and snippets.

@dvoiss
Created July 25, 2012 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvoiss/3177030 to your computer and use it in GitHub Desktop.
Save dvoiss/3177030 to your computer and use it in GitHub Desktop.
VirtualBox/Ubuntu stuff: shared-folder and mounting / installing wine for older IE test
# enable guest additions for virtualbox
# in settings > shared folders, add a shared-folder
# make folder to mount windows/mac shared-folder to
mkdir windows-share-folder
# where 'Shared' below matches the name from the settings dialog
sudo mount -t vboxsf Shared ~/windows-share-folder
# testing old IE in Ubuntu:
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
# install latest stable version of wine
sudo apt-get install wine1.4
# install ie8 (ie9 not installable via winetricks (as of right now))
winetricks ie8
# launch
wine 'C:\Program Files\Internet Explorer\iexplore'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment