-
-
Save ernestoe/e3c24b4bd6da201155d8349478236092 to your computer and use it in GitHub Desktop.
Ubuntu 16.04 Install Latest FreeTDS
This file contains 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
$ sudo apt-get install wget | |
$ sudo apt-get install build-essential | |
$ sudo apt-get install libc6-dev | |
$ wget ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.00.91.tar.gz | |
$ tar -xzf freetds-1.00.91.tar.gz | |
$ cd freetds-1.00.91 | |
$ ./configure --prefix=/usr/local --with-tdsver=7.3 | |
$ make | |
$ make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I updated version to 1.00.91 which is the latest stable at the date (1/May/18)