Last active
May 8, 2016 21:47
-
-
Save AGhost-7/ea18352c55bb57d07257d18a745398c6 to your computer and use it in GitHub Desktop.
Installing Vivofit on Ubuntu: Trusty Tahr WIP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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