Category: Computers

Howto and other interesting information on computers systems and programming.

Configure Cisco 7960 phones with Asterisk PBX

This article describe the process to configure a Cisco 7960 SIP phone with an Asterisk PBX system. Requirements Asterisk PBX or similar TFTP Server Cicso 7960G or similar IP phone   Asterisk Server Config Create new SIP extension Under “Applications / Extensions” choose Add Extension Choose “CHAN SIP Device” Enter User Extension: 702 (or whatever …

Continue reading

Install Raspbian using Linux

Raspbian Installation Raspbian is a stripped down linux distribution that you can load on a raspberry PI. I have been using Raspberry PI’s for a number of systems in my house. The latest Raspberry PI 3 is Quad Core Broadcom BCM2837 64-bit ARMv8 processor (phew) which means it’s pretty fast. It also has WiFi built …

Continue reading

Linksys SPA-3102 and Incredible PBX 12.0.70

First of all you need to install Incredible PBX. Simple instructions are here. I am using a VM built on Xenserver but any PC or VM should be able to work for you. Next you need to have a compatible Voice Gateway devices. I am using an old Linksys SPA-3102 which enables Voice over IP. …

Continue reading

Drupal on Docker in 30 seconds

Install Docker yum install docker-engine After that you just need to pull a drupal container from docker hub docker run -d -p 8080:80 -p 8022:22 -v `pwd`/modules:/var/www/sites/all/modules/custom -v `pwd`/themes:/var/www/sites/all/themes wadmiraal/drupal Access new docker environment on http://yourdockerserver:8080 account login is admin / admin Grab a beer

Docker install on OpenSuse Tumbleweed

sudo zypper in docker sudo systemctl start docker sudo systemctl enable docker sudo /usr/sbin/usermod -a -G docker dmalpass sudo docker run –rm -i -t opensuse /bin/bash