Google Voice on a telephone without a server

Posted by & filed under Hardware, VoIP.

I already discussed how one can make use of Google Voice with Asterisk – the possibilities are limitless. However, all this requires a server running Asterisk. I recently explored how one can explore other options of Google Voice (or other VoIP services) without the use of a server. Since I own routers running tomato and… Read more »

Latest Asterisk on Ubuntu

Posted by & filed under Linux, VoIP.

I recently changed my web server, and had to re-install Asterisk. I wanted to compile from source but I had an “input/output” error, which means either my drive is bad or I’m having issues with the kernel. SMART tells me my drive is OK, so I assume it’s the kernel. I found this that has… Read more »

Automatically start Asterisk at boot time

Posted by & filed under Networking, VoIP.

Learned how to do so from this thread. cd ~/Downloads/asterisk/1.8/contrib/init.d ## contrib folder is in source directory sudo cp rc.debian.asterisk /etc/init.d/asterisk sudo chmod 755 /etc/init.d/asterisk # to set the script as boot update-rc.d asterisk defaults # to remove the script from boot update-rc.d -f asterisk remove Modify the /etc/init.d/asterisk: # Full path to asterisk binary… Read more »