Skip to content

Instantly share code, notes, and snippets.

@tboztuna
Forked from metaskills/command.sh
Created March 27, 2017 12:37
Show Gist options
  • Save tboztuna/f57101ff1862df57fa63c087f8fc9a74 to your computer and use it in GitHub Desktop.
Save tboztuna/f57101ff1862df57fa63c087f8fc9a74 to your computer and use it in GitHub Desktop.
Ubuntu 16.04 Install Latest FreeTDS
$ 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.27.tar.gz
$ tar -xzf freetds-1.00.27.tar.gz
$ cd freetds-1.00.27
$ ./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