Tag Archives: linux

Tips and tricks for the Nvidia Jetson Nano

I have just received my Nvidia Jetson Nano development kit, and over time this post should turn into a collection of tips and tricks for this very interesting almost single-board-computer. 1. Getting started There is a pretty good tutorial available … Continue reading

Posted in Technical | Tagged , | 1 Comment

Fast Track: ElasticSearch on CentOS 6.x on DigitalOcean VPS

yum install wget cd /opt wget –no-cookies –no-check-certificate –header “Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie” “http://download.oracle.com/otn-pub/java/jdk/7u67-b01/jdk-7u67-linux-x64.tar.gz” tar xzf jdk-7u67-linux-x64.tar.gz cd jdk1.7.0_67/ alternatives –install /usr/bin/java java /opt/jdk1.7.0_67/bin/java 2 alternatives –config java alternatives –install /usr/bin/jar jar /opt/jdk1.7.0_67/bin/jar 2 alternatives –install /usr/bin/javac javac /opt/jdk1.7.0_67/bin/javac 2 alternatives –set … Continue reading

Posted in CentOS, ElasticSearch, Technical | Tagged , , , | Leave a comment

Ubuntu 12.04 – Ruby on Rails Production

This looks to be a smooth guide for setting up a Ruby on Rails production environment on Ubuntu 12.04. http://excid3.com/blog/setting-up-ubuntu-12-04-with-ruby-1-9-3-nginx-passenger-and-postgresql-or-mysql/

Posted in Technical | Tagged , , , | Leave a comment