VoIP client for Ubuntu

June 26, 2010 by leogaggl · 2 Comments
Filed under: documentation, mobile, telework / digital nomads, work 

Having used IP Telephony for a number of years I need a workable SIP client for all of the devices I use. I have found a very capable client for my Android phones (SipDroid) and on Windows/MacOSX I generally use X-Lite (as well as it’s paid version EyePhone) from Counterpath.

Having tried several different Linux SIP clients (Ekiga, Twinkle, …) but all discarded them because of weird UI’s and/or problems with stability I noticed that there is a Linux version of XLite available. Unfortunately on current versions of Ubuntu (10.04) it needs a deprecated version of a library.

Download XLite Linux: http://www.counterpath.com/x-lite-3.0-for-linux-download.html

Dowload libstdc++.so.5: http://packages.debian.org/lenny/i386/libstdc++5/download

[you will need root permissions for all of the below]

dpkg -i libstdc++5_3.3.6-18_i386.deb
tar -xzf X-Lite_Install.tar.gz
cd xten-xlite
cp xtensoftphone /usr/sbin
chmod +x /usr/sbin/xtensoftphone
Now you should be able to run:
xtensoftphone

Enjoy calling from your Ubuntu machine !

Huawei K3765 on Ubuntu 10.04 (Lucid)

Since I have switched my 3G data network from Hutchinson Three to Vodafone AU recently I also upgraded the USB modem from a Huwaei E220 (which used to work fine on recent Ubuntu NBR releases on my trusty old ASUS EEE 900)

Unfortunately the new Huawei K3765 would not be recognised as a valid modem by the network manager. After a fair bit of searching it turns out that you only need to install one additional package (usb-modeswitch) to make this modem work (be recognised) on the current stable 10.04 release:

sudo apt-get install usb-modeswitch

For the command-line challenged here is a quick screenshot on how to do it using Synaptic Package Manager:

Synaptic usb-modswitch - screenshot

Hope this might save some time for people trying to make this modem work on Lucid.

Happy roaming !

iPad Alternatives

April 14, 2010 by leogaggl · 4 Comments
Filed under: education, mobile, telework / digital nomads, work 

Due to the hype generated by the recent launch and my reservations on using the Apple Inc. iTunes I was doing some research into alternatives to the proprietary and completely locked  iPad device (and the associated lock-down to Apple’s iTunes Store). Hopefully this list can be of use for other people as well.

I can see the form factor and the tablet style with a cut down (mainly web-browser based) Operating System as useful in a number of settings not least in educational institutions and libraries.

Here is the findings so far:

EDIT: I have re-published the list as a Google Spreadsheet to enable submission of new items. Please ENTER YOUR OWN if you found an item not on the list.

If you are purely looking for a tablet as an electronic reading device there is a good Wikipedia comparison chart to look at.

I will add further devices as I discover them. Please leave a comment if you find other tablets / devices that have similar features, but are more open and do not require iTunes lock-down.

iPad – Trojan Horse ?

April 10, 2010 by leogaggl · Leave a Comment
Filed under: education, mobile 

Trojan Horse

The media hype generated by the launch of the Apple Inc. iPad has been seriously irritating me over the last weeks. Apart from the fact that I can not see anything revolutionary about either the hardware nor the software, I can see a number of highly problematic developments with the way Apple is trying to create a total vendor lock-in.

The evil is in the Store

However – the single biggest issue is not actually the device (iPad) itself, it is actually it’s lock to Apple’s iTunes Store. There will be no (at least for the ‘normal’ end-user) way to install software or load content onto the device other than going through iTunes. The device seems to have been deliberately crippled (not even a USB connection) of any way to get content on or off it other than Apple’s mandated iTunes. The resulting vendor lock-in from both the hardware (Apple only devices), Software (all Software that will install on the device will have to go through iTunes) as well as increasingly Content (purchased via iTunes Store) is a very worrying trend from my point of view.

Return of the dinosaurs ?

One possible reason for the hype generated for the iPad seems a vested interest on behalf of the media industry in the ability to lock down content and create a paid digital market for their content. It’s about creating a walled garden where previously was a free and open Internet. It seems that the old media conglomerates are looking towards iTunes as a possible extension (saviour) of their failing business models.

Television 2.0 – the new rise of new media consumerism ?

From initial reviews it seems that the iPad is primarily a media ‘consumption’ device rather than a focus of the creation (or at least co-creation) of content. It seems geared to create a new generation of ‘viewer’ beyond television. A good further explanation on why I consider this a step backwards can be found at this entry on the SpeEdChange Blog

No iTunes – no education ?

One of the most problematic areas for me is the use of the iPad as the primary computing device used in Education. There seem to be a number of  educational institutions planning to replace printed lecture materials with iPads even before the release of the device. While I don’t see any issues with the replacement of printed material, the replacement with one single proprietary & closed system seems an extremely bad choice on a number of fronts.
  1. Requires an AppleID for each student (a very problematic privacy issue)
  2. Content only accessible to Apple Devices
  3. Proprietary (non-standard) formats
There are plenty of approaches already in the public domain (from the use of Open eBook standards to complete Open Education Resources in a variety of formats) that can be accessed from an iPad as well as any other (tablet or other) device with a decent web-browser or similar retrieval mechanism (RSS, …).
As stated on the beginning of this blog entry I don’t have an issue with the iPad as a hardware device (and I haven’t actually used one yet – due to the fact they will not be available in Australia for a while). But from all the technical details available the combination of a locked device with a locked store and locked content seems a bad idea all around from my perspective.

orange

January 31, 2010 by leogaggl · Leave a Comment
Filed under: miscellaneus 

horseshoe bay

January 24, 2010 by leogaggl · 1 Comment
Filed under: miscellaneus 

Ubuntu – Google Mail (GoogleApps) as default mail client

December 15, 2009 by leogaggl · Leave a Comment
Filed under: documentation, telework / digital nomads 

Since Ubuntu 9.10 NetbookRemix has been released I am again finding myself using my trusty old ASUS EEE when on the road.  And  finally it seems I have found a vanilla Linux distribution that is reasonably responsive and works ‘out of the box’.

One thing I don’t need on the road (as a matter of fact on none of my equipment) is having to install & maintain some client/server mail client. Here is a workable solution to have your browser default ‘mailto:’ links to Google Apps.

Howto

System –> Preferences –> Preferred Applications

Ubuntu Preferences Screenshot

Chrome:

perl -MURI::Escape -e '$to = shift;$to =~ s/^mailto://i;exec("chromium-browser", "https://mail.google.com/a/yourdomain.tld/?view=cm&fs=1&tf=1&cmid=22&to=".URI::Escape::uri_escape($to) );' '%s'

Firefox:

perl -MURI::Escape -e '$to = shift;$to =~ s/^mailto://i;exec("firefox", "https://mail.google.com/a/yourdomain.tld/?view=cm&fs=1&tf=1&cmid=22&to=".URI::Escape::uri_escape($to) );' '%s'

Note: do not forget to replace ‘yourdomain.tld’ with your actual Google Apps domain

Here is the link to the original blog entry by David Davis (xantus77): http://xantus.vox.com/library/post/howto-use-gmail-for-mailto-links-linuxubuntu.html (Kudos !)

Useful software for practical mobile learning

April 26, 2009 by leogaggl · 1 Comment
Filed under: education, mobile 

Since a fair bit of my time is spent working and researching in the field of Mobile Learning and there is not a lot of recent  listings of Software useful in practical m-Learning implementations I have compiled the following list from my bookmarks and Software I commonly use for these purposes. This list tries to represent currently usable applications not applications in the development stage.

Rather than writing this in the form of  a blog entry I decided to keep this as a live document within Google Apps that people can contribute to.

Please consider adding to this list if you find some useful mobile learning software missing. You can also subscribe to the changes to this list via RSS. You can also download this list as a PDF document.

Need for digital (media) literacy

March 14, 2009 by leogaggl · 1 Comment
Filed under: education 

I just recently stumbled across this link to the ‘Heartland Institute‘ via a reference in an American Newspaper site citing their sources for an article about the US Economic Stimulus package. I initially was hoping this might be a satiric site such as CNNN, but after taking a closer look and checking out some references it appears these people are actually serious (and worse still seem to have a lot of funds at their disposal to spread their dubious view). Reading this rubbish got me thinking about how many kids would actually think this could be an authoritative source for information.

Digital literacy

Image by: Dr. Joolz (http://www.flickr.com/photos/drjoolz/)

I often see readers commenting on websites that are an obvious parody, taking the written word on these sites absolutely serious and literally. But the mentioned site above is written with the obvious intent to present the information as fact (no matter how ridiculous the claims are).  I don’t actually want to get into the (mis-) information presented on this site, but more the danger posed by such sites if we don’t teach digital literacy to our kids at school from a young age. Skills such as checking the sources and motivations behind certain ‘news and information’ sites.

While some of these sites (such as the example above) are very secretive about their donors and sources of revenue it should be fairly obvious by trying to do a quick online check what their particular objective is. In the particular example used above the published donations from the Tobacco industry and obvious links to the Oil industry both in the people employed by the organisation as well as direct contributions should give a very clear indication.

Sources to check the facts:

Sources to check the background

Now I am certainly not advocating to take the information from the sites above as automatically correct. Sites such as these might have their own motivations and can also skew their information to suit their own objectives. My point is more making the next generation aware of the need to check and balance their information sources and in the end use their own brain to weigh up the different sources in terms of their validity.

However seeing the browsing habits of my own children and their friends I fear that this particular skill-set has not been given a lot of attention in schools so far. I very much hope this is going to change with age and I will try my best to make them aware of the need to check.

Ubuntu – the ‘old man’ experiment

March 11, 2009 by leogaggl · Leave a Comment
Filed under: miscellaneus 

Recently my father, who has so far not wanted to have anything to do with computers, decided to change all of this with age 67. While initially surprised (and remembering the comments I got when sitting in front of computers as a teenager instead of working on the family farm), I quite liked the idea. It’s a great to see him still wanting to explore and learn new things.

Unfortunately since there is approximately 17.000km between us, there was a limited amount I could do to help him get set up. So my eldest sister (as she always has to do) ended up having to help out instead. Finding hardware was the easy part and very cheap these days (and since it was bought online I could help with the technical aspects). However the machines in that particular shop came as white-boxes without an Operating System (which is a good thing in my book).

So rather than forking out another 90 or so Euro for Windows Vista, which I personally dislike with a passion, I suggested her to download Ubuntu and give it a try. If things did not work out you could always get it later. While I personally have a very pragmatic approach to OS selection and no particular ‘religious’ views when it comes to Linux, I do generally choose an Open Source alternative over a Proprietary system all other things being equal. I was a bit worried about people not being familiar with it, but in the case of my father he has never had any experience with computers so did not have any Windows ‘baggage’. And his usage would mainly be for Internet access, e-mail and maybe some comms (Skype and similar).

But the ease of setting up the whole system surprised even myself. My sister only had one problem with the whole install. She burned the downloaded ISO file to CD (as .iso) rather than using some burning software to convert the ISO to a CD image. The rest was smooth sailing and did not even involve any intercontinental phone calls to myself. When it came to connecting the machine to the Internet I got a call asking me what she needed to do to access the net. When I replied if she had already tried to open the browser I was told ‘no’. When she opened Firefox everything was already working.

As a result of this she is now converting her old computer (which she has unsuccessfully tried to re-install WindowsXP for months because of driver problems) to Ubuntu

The 90 Euros saved on the Operating System will go to a webcam and some peripherals so the grandkids in Australia can hopefully see Opa more often.

Next Page »