comoke
Thursday, 8 January 2015
you may need to install the Net DBus module
fix this with:
sudo apt-get install --reinstall perl perl-base perl-modules system-tools-backends
Wednesday, 24 December 2014
ffmpeg makefile:2: config.mak: No such file or directory
to fix this I did:
sudo apt-get install yasm
./configure
make
sudo make install
sudo apt-get install yasm
./configure
make
sudo make install
Thursday, 16 October 2014
nano syntax highlighting
git clone https://github.com/nanorc/nanorc.git
cd nanorc
make install
echo 'include ~/.nano/syntax/ALL.nanorc' >> ~/.nanorc
Thursday, 26 June 2014
how I resolved nrpe configure: error: C preprocessor /lib/cpp fails sanity check
rpm -qa | grep glibc
see all glibc installations
for example, on a problem machine I found:
glibc-2.12-1.80.el6_3.5.i686
glibc-2.12-1.80.el6_3.5.x86_64
glibc-common-2.12-1.132.el6_5.2.x86_64
glibc-devel-2.12-1.132.el6_5.2.x86_64
glibc-common-2.12-1.80.el6_3.5.x86_64
glibc-2.12-1.132.el6_5.2.x86_64
see all glibc installations
for example, on a problem machine I found:
glibc-2.12-1.80.el6_3.5.i686
glibc-2.12-1.80.el6_3.5.x86_64
glibc-common-2.12-1.132.el6_5.2.x86_64
glibc-devel-2.12-1.132.el6_5.2.x86_64
glibc-common-2.12-1.80.el6_3.5.x86_64
glibc-2.12-1.132.el6_5.2.x86_64
yum erase glibc\*
install headers
yum install glibc-headers.x86_64 0:2.12-1.132.el6_5.2
fixed
yum install glibc-headers.x86_64 0:2.12-1.132.el6_5.2
fixed
Wednesday, 18 June 2014
Where can I download Sql Server Management Studio 2012
Microsoft didn't make it easy to find..
read the whole post before clicking the link and deciding this is the wrong download :)
read the whole post before clicking the link and deciding this is the wrong download :)
when finished reading, go to link at bottom of this post:
is will say sql server 2012 express, ignore that, click download, a new window will pop up, tick the box
ENU\x64\SQLManagementStudio_x64_ENU.exe
is will say sql server 2012 express, ignore that, click download, a new window will pop up, tick the box
ENU\x64\SQLManagementStudio_x64_ENU.exe
click next, download will start
http://www.microsoft.com/en-us/download/details.aspx?id=29062
http://www.microsoft.com/en-us/download/details.aspx?id=29062
Tuesday, 17 June 2014
using sqlserver jdbc driver with maven
Download the driver JAR from the link provided by Olaf and add it to your local Maven repository with;
mvn install:install-file -Dfile=sqljdbc4.jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=3.0 -Dpackaging=jar
Then add it to your project with;
mvn install:install-file -Dfile=sqljdbc4.jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=3.0 -Dpackaging=jar
Then add it to your project with;
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>3.0</version>
</dependency>
Monday, 9 June 2014
install cassandra 2+ as service from package
the documentation on datastax website is out of date, to install the latest version of cassandra as a deb package and have it run as a service, enter the following in to terminal:
gpg --keyserver keyserver.ubuntu.com --recv 4BD736A82B5C1B00
gpg --export --armor 4BD736A82B5C1B00 | sudo apt-key add - && sudo apt-get update
gpg --keyserver keyserver.ubuntu.com --recv 4BD736A82B5C1B00
gpg --export --armor 4BD736A82B5C1B00 | sudo apt-key add - && sudo apt-get update
sudo apt-get install cassandra
Subscribe to:
Posts (Atom)