Month: May 2015

Link: How to Watch Netflix On Linux

Ever wondered how superb it would be watching Netflix on Linux? Well then, here is the great news: Yes you can watch Netflix on Linux! Amazingly, all you will need is Chrome and Ubuntu 12.04 LTS or 14.04 LTS (the new versions of Network Security Services), then you would be on your way to watching your streaming movies via Netflix. Now before I get into the details on how to watch Netflix on Linux, I think it would be really cool that you know why you need what you need.

Full article here:
How to Watch Netflix On Linux (SecureKnow)

Link: How to Adjust Volume Settings for Individual Audio Devices and Sound Effects in OS X

If you’ve ever been showing a presentation or a video, you know how embarrassing it can be when system sounds such as alerts, errors, and notifications interrupt your audio, especially when you’re projecting to a PA system or loudspeakers.

In OS X, there’s a couple of cool little options that you can apply to your audio settings so that, if you are say, listening to your music while you clean, or showing a movie on your big TV, then you won’t be interrupted by Frog, Funk, Bottle, or any of the other system alerts.

Full article here:
How to Adjust Volume Settings for Individual Audio Devices and Sound Effects in OS X (How-To Geek)

Link: Hola VPN Sells Users’ Bandwidth, Founder Confirms

The operator of 8chan says the bandwidth of millions of Hola users is being sold for reuse, with some of it even being used to attack his site. Speaking with TorrentFreak, Hola founder Ofer Vilenski says that users’ idle resources are indeed utilized for commercial sale, but that has been the agreement all along.

I don’t endorse the use of this type of service in the first place, but since I know that many people use services such as this to bypass geographic restrictions on content, I think that you should know what you are getting into if you use this particular service.

Full article here:
Hola VPN Sells Users’ Bandwidth, Founder Confirms

Link: How to Kill Linux Processes/Unresponsive Applications Using ‘xkill’ Command

We have already covered a detailed guide on kill, pkill and killall commands.

For those who are running X server there is another tool called xkill which can kill a process from its X window without passing process name or its PID.

xkill utility forces X server to close communications to its client which results into killing of client by its X resource. xkill which is a part of X11 utilities is very handy in killing unnecessary windows.

Full article here:
How to Kill Linux Processes/Unresponsive Applications Using ‘xkill’ Command (Tecmint)

Link: Get started with Midnight Commander, a Linux file manager

In my previous article, 8 Linux file managers to try, I compared a number of file managers, but there was not enough space to go into detail about any of the several file managers that I mentioned briefly. This article will delve a bit further into Midnight Commander, and I plan to write more to cover some of the other file managers in more detail.

Midnight Commander (MC) is a text-based Command Line Interface (CLI) program. It is particularly useful when a GUI is not available but can also be used as a primary file manager in a terminal session even when you are using a GUI. I use Midnight Commander frequently because I often have need to interact with local and remote Linux computers using the CLI. It can be used with almost any of the common shells and remote terminals through SSH.

Full article here:
Get started with Midnight Commander, a Linux file manager (Opensource.com)

How to use a custom SIP header to pass the DID (or other data) between two Asterisk servers that jointly handle extensions

NOTE: This post has been edited to show a newer method that should work with both PJSIP and Chan_SIP trunks.

If you have multiple Asterisk or FreePBX servers at different locations that pass Intra-Company traffic between each other using SIP trunks, you may have wished for a way to pass the Calling DID number (or some other bit of data stored in an Asterisk variable) from one server to another. For example, let’s suppose that all extensions in your company are four digits in length, and that the extensions on server A are numbered 1000-1099, and on server B they are numbered 1100-1199, and when a call comes in on system A that goes to an extension on system B, you want to pass the original DID that the call arrived on to system B so that it will be included in the call detail for that call.  It’s easy to do this; I’ll first show what you’d need to do on a server A that is running FreePBX.

In /etc/asterisk/extensions_custom.conf, you should find a context named [macro-dialout-trunk-predial-hook], and if you’ve not previously modified it then you should only need to add these four lines to that context (the last two of which may already be present):

exten => s,1,Set(regx=^11[0-9]{2}$)
exten => s,n,ExecIf($[${REGEX("${regx}" ${OUTNUM})} = 1]?Set(HASH(__SIPHEADERS,X-DID)=${CDR(did)}))
exten => s,n,MacroExit()
exten => h,1,Macro(hangupcall,)

The above has been modified to show the new way to do this in more recent versions of FreePBX. It is the only way that will work (without adding a lot more dialplan) if you are using a PJSIP trunk. If you are curious as to why this works, it turns out that in recent FreePBX versions, at the time the Asterisk Dial statement is executed a context named func-apply-sipheaders is executed, and the purpose of the context is to create additional SIP headers that have been set using a statement similar to the one we have used here. So, that works out rather well for our intended usage.

The previous method was to use this line as the second line of the context, which may still work for Chan SIP trunks:

exten => s,n,ExecIf($[${REGEX("${regx}" ${OUTNUM})} = 1]?SIPAddHeader(X-DID: ${CDR(did)}))

Anyway, to explain the context above, the first line sets a regular expression to match the digits 11XX – if you also do this on server B you would of course change the 11 to 10. There is probably a way to do this without using a regular expression but I just wanted to show this method because if offers the most flexibility in matching numbers (although Asterisk has a somewhat unique way of implementing regular expressions; that’s why I have to use [0-9] rather than d to indicate “any digit” in the expression). In the second line, if the regular expression matches the called number (the destination extension), the statement Set(HASH(__SIPHEADERS,X-DID)=${CDR(did)}) (formerly SIPAddHeader(X-DID: ${CDR(did)}) ) is executed, which takes the contents of the CDR(did) variable and puts it into a custom SIP header named X-DID, which follows the standard convention of adding X- to the start of a user-created SIP header. This is then transmitted to server B as part of the first INVITE message in the channel. In raw Asterisk (no FreePBX), you just need to make sure that something similar to the statements in the first two lines come before whatever statement sends the call to the other system (usually a Dial statement of some kind).

Now when the call comes into server B, we need a way to do the opposite, which is to get the content of the X-DID SIP header and place it into the CDR(did) variable.  So in the trunk, instead of making the context=from-internal, we can make it something like context=custom-from-server-A, and then in /etc/asterisk/extensions_custom.conf we add that context, which simply contains this:

[custom-from-server-A]
exten => _X!,1,Set(CDR(did)=${SIP_HEADER(X-DID)})
exten => _X!,n,Goto(from-internal,${EXTEN},1)

On Server A, you’d use custom-from-server-B in place of custom-from-server-A.

You can transmit the contents of any Asterisk variable in this manner, but of course you’d probably want to change the custom SIP header name to something that more closely matches the original variable name.  I wouldn’t recommend going hog wild with adding custom SIP headers, but they are a valid technique for passing a few variables or other bits of data between your servers.

Link: Creating SD Card Images For Raspberry Pi in Mac

The Raspberry Pi is a new breed of cheap, single use computers that were just made for making projects. People routinely build them into standalone devices or use them to control other devices. They are almost like a disposable computer.

In fact, Pi is a small but capable Linux computer, making it an easy transition from the Mac’s UNIX from a programming and command line stance. Running software is mostly a simple matter of obtaining SD card images from around the web and burning them to SD cards.

The biggest problem you face is that the SD cards need to be in a specific format, a boot sector that is visible in FAT32 and the body of the disk which is in the Linux format. This is not something which is easy to do on the Mac without specific knowledge software to do the low level image burn that we need.

In this article, we show you what software to use for this job on the Mac and how to burn SD card images.

Full article here:
Creating SD Card Images For Raspberry Pi in Mac (Make Tech Easier)

Link: One Way Audio SIP Fix

The Problem

When making audio calls using SIP the phone rings but when it is answered there is only one way audio or no way audio.

What Cause One Way Audio

The cause of one way audio is a combination of NAT and STUN (which we’ll come onto later). Let’s talk about NAT first.

Full article here:
One Way Audio SIP Fix (Think Like A Computer)

Links: 14 Useful Examples of Linux ‘sort’ Command, 7 Interesting Linux ‘sort’ Command Examples

Sort is a Linux program used for printing lines of input text files and concatenation of all files in sorted order. Sort command takes blank space as field separator and entire Input file as sort key. It is important to notice that sort command don’t actually sort the files but only print the sorted output, until your redirect the output.

This article aims at deep insight of Linux ‘sort‘ command with 14 useful practical examples that will show you how to use sort command in Linux.

Full articles from Tecmint here:
14 Useful Examples of Linux ‘sort’ Command – Part 1
7 Interesting Linux ‘sort’ Command Examples – Part 2

Link: 42 of the Most Useful Raspberry Pi Commands

It can be difficult to keep track of all the useful Raspberry Pi commands we use often, so I created a list of some of the most common and important ones that will make using Linux on the Raspberry Pi a lot easier.

Full article here:
42 of the Most Useful Raspberry Pi Commands (Circuit Basics)

Recent Posts

Recent Comments

Archives

Categories

Meta

GiottoPress by Enrique Chavez