Skip to content

Instantly share code, notes, and snippets.

@ernestoe
Forked from metaskills/command.sh
Last active May 1, 2018 14:19
Show Gist options
  • Save ernestoe/e3c24b4bd6da201155d8349478236092 to your computer and use it in GitHub Desktop.
Save ernestoe/e3c24b4bd6da201155d8349478236092 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.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
@ernestoe
Copy link
Author

ernestoe commented May 1, 2018

I updated version to 1.00.91 which is the latest stable at the date (1/May/18)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment