Balling’s Bits

Setting Up NEMID on Hardware on Ubuntu 14.04 LTS

In Denmark we have a public single-sign-on solution, NEMID. To set up NEMID on Hardware (if you have the Gemalto USB token) on Ubuntu 14.04 you have to install the proper token driver and a build environment for building the NEMID driver. These are the required commands (inspired by this post):

1
2
sudo apt-get install pcsc-tools libccid opensc libpcsclite-dev libboost1.55-dev libboost-system1.55-dev libboost-thread1.55-dev libboost-filesystem1.55-dev pkg-config zlib1g-dev
sudo apt-get install build-essential

Then download the driver from NEMID, extract and configure:

1
2
3
4
wget https://www.nemid.nu/dk-da/support/aktiver_nemid/aktiver_nemid_paa_hardware/installer_driver/drivers/libgtop11dotnet_2.2.0.12.tar.gz
tar xpzf libgtop11dotnet_2.2.0.12.tar.gz
cd libgtop11dotnet-2.2.0.12
./configure

Next, make and make install:

1
2
make
sudo make install

You will also need the icedtea-plugin (for web-browsers).

Comments