Skip to content

Instantly share code, notes, and snippets.

@AGhost-7
Last active May 8, 2016 21:47
Show Gist options
  • Select an option

  • Save AGhost-7/ea18352c55bb57d07257d18a745398c6 to your computer and use it in GitHub Desktop.

Select an option

Save AGhost-7/ea18352c55bb57d07257d18a745398c6 to your computer and use it in GitHub Desktop.
Installing Vivofit on Ubuntu: Trusty Tahr WIP
# Install wine latest.
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine -y
# TODO: doesnt work????
# Install winetricks latest.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
chmod +x winetricks
sudo mv winetricks /usr/local/bin
# Now you need to make wine use 32 bit instead of 64 bit
echo '
export WINEPREFIX="$HOME/.wineprefix32"
' >> .bashrc
. .bashrc
WINEARCH=win32 wine wineboot
winetricks dotnet40
winetricks settings win7
curl http://download.garmin.com/omt/express/B/GarminExpressInstaller.exe -o /tmp/vivofit2.exe
wine /tmp/vivofit2.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment