<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
 "http://my.netscape.com/publish/formats/rss-0.91.dtd">

<rss version="0.91">

<channel>
<title>Lethbridge Linux User Group</title>
<link>http://llug.linux.ab.ca</link>
<description>Lethbridge Linux User Group</description>
<language>en-us</language>

<item>
<title>Cell phone text scammer used up all my Pay &amp;amp; Talk minutes, stole $6 from me</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=117</link>
<description>If you have a cell phone you will want to protect your self from scammers.&lt;br&gt;&lt;br&gt;My
wife and I were out of town on the weekend and normally turn off our
cell phones when we travel. When we got back all my wife's minutes on
her Pay &amp;amp; Talk Telus phone were all used up. She does not use the
phone much so I have it set to refill each month for $10 off my credit
card. I know she did not use her phone that much so I went on the Telus
web site to check the billing details.&lt;br&gt;
&lt;br&gt;Her phone had been billed for 3 text messages at a cost of $2 each.
Many LUG members have talked in the past about how the big cell phone
companies in Canada had changed to billing customers for receiving text
message but those fees where about $0.25 per message. It looks like the
sender of these messages is able to collect the rest of the fee and
they have a program that sends out these messages to cell phone users
without their permission. This is a great scam, they could be stealing
from millions of Canadian cell phone users.&lt;br&gt;
&lt;br&gt;Most people I talk to about the text message billing on cell phones
believe that the cell phone companies will not allow you to disable
text messages but they do. I was on the phone for about an hour before
I was able to get to a human working in technical support at Telus and
he was able to turn off all text messaging for my wife's Pay &amp;amp; Talk
phone.&lt;br&gt;
&lt;br&gt;I tried with no success to get the money back but because this is a
pay before you use service the money is gone. Telus does not keep
details on text messages on Pay &amp;amp; Talk phones, or so I was told. My
other phone is on a contract that I would be able to refuse payment on
if scam happens to that number.&lt;br&gt;
&lt;br&gt;If you don't use text messaging call your service provider and have
it disabled. If you do then watch your bill closely, this criminal will
strike again.</description>
</item>

<item>
<title>Cool commands to try on CLI</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=116</link>
<description>I was looking for a CLI (Command Line Interface) way to add of the space used on my hard drives and found this cool site.&lt;br&gt;&lt;a href=&quot;http://www.pixelbeat.org/cmdline.html&quot;&gt;
http://www.pixelbeat.org/cmdline.html&lt;/a&gt; with lots of fun commands to try on the CLI.&lt;br&gt;
&lt;br&gt;
The answer to what I was doing. The program df shows the size, used
space and free space of your hard drives. The program bc is a CLI math
program. The programs grep and gawk allow you to select only the parts
you want to use.&lt;br&gt;
&lt;br&gt;
royce@Hydra[~] #/bin/df -h | head -n 1; /bin/df -h |grep hda&lt;br&gt;
Filesystem            Size  Used Avail Use% Mounted on&lt;br&gt;
/dev/hda2              54G   43G  7.8G  85% /&lt;br&gt;
/dev/hda1              20G  2.2G   18G  12% /mnt/other&lt;br&gt;
royce@Hydra[~] #/bin/df | head -n 1; /bin/df |grep hda&lt;br&gt;
Filesystem           1K-blocks      Used Available Use% Mounted on&lt;br&gt;
/dev/hda2             55866816  44859624   8169312  85% /&lt;br&gt;
/dev/hda1             20482840   2298176  18184664  12% /mnt/other&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
So to see the total size in Bytes&lt;br&gt;
/bin/df | grep hda |gawk '{print $2}' | (tr 'n' +; echo 0) | bc&lt;br&gt;
&lt;br&gt;
So to see the total size in Giga Bytes&lt;br&gt;
expr $(expr $(/bin/df | grep hda |gawk '{print $2}' | (tr 'n' +; echo 0) | bc) / 1024) / 1024&lt;br&gt;
&lt;br&gt;
So to see the used space in Bytes&lt;br&gt;

/bin/df | grep hda |gawk '{print $3}' | (tr 'n' +; echo 0) | bc&lt;br&gt;

&lt;br&gt;

So to see the used space in Giga Bytes&lt;br&gt;

expr $(expr $(/bin/df | grep hda |gawk '{print $3}' | (tr 'n' +; echo 0) | bc) / 1024) / 1024&lt;br&gt;

&lt;br&gt;

So to see the free space in Bytes&lt;br&gt;

/bin/df | grep hda |gawk '{print $4}' | (tr 'n' +; echo 0) | bc&lt;br&gt;

&lt;br&gt;

So to see the free space in Giga Bytes&lt;br&gt;

expr $(expr $(/bin/df | grep hda |gawk '{print $4}' | (tr 'n' +; echo 0) | bc) / 1024) / 1024&lt;br&gt;

&lt;br&gt;
To format the output&lt;br&gt;
royce@Hydra[~]&lt;br&gt;
#echo $(expr $(expr $(/bin/df | grep hda |gawk '{print $4}' | (tr 'n'+; echo 0) | bc) / 1024) / 1024)GB free space&lt;br&gt;
25GB free space&lt;br&gt;
royce@Hydra[~] #&lt;br&gt;
&lt;br&gt;
Happy hacking :)</description>
</item>

<item>
<title>PerlQt Wiki is online</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=115</link>
<description>There is now a Wiki to help you get started with programming in PerlQt.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://perlqt.wikidot.com/&quot;&gt;PerlQt Wiki&lt;/a&gt;&lt;br&gt;</description>
</item>

<item>
<title>PerlQt fast programming gets even faster for beginners</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=114</link>
<description>PerlQt is a very easy to use programming tool that is powerful enough for advanced developers and now it super easy for beginners as well.&lt;br&gt;
&lt;br&gt;
Radados developers have created a PerlQt project manager that makes it very easy to learn the starting steps of computer programming by reducing the complex steps of project creation to a few simple buttons. This tool does not teach anyone how to program in Perl or C++ with Qt but it does enable users to explore their possibilities with out feeling intimidated by the complexities that PerlQt is handling for them automatically in the background.&lt;br&gt;

&lt;br&gt;
Radados users can install it using synaptic search for the package name &lt;strong&gt;radados-perlqt&lt;/strong&gt;. PerlQt can be made available for other Linux system and for Windows(cygwin) but the Radados install is the easiest way to get up and going in a mater of seconds. Radados users will have a new PerlQt icon on their ViceWM desktop or can start the project manager by running PerlQt.pl.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://radados.org/modules.php?name=News&amp;file=article&amp;sid=16&quot;&gt;More information here&lt;/a&gt;&lt;br&gt;
</description>
</item>

<item>
<title>Ubuntu 8 fixes and Samba authentication</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=113</link>
<description>&lt;a href=&quot;http://www.radados.org&quot;&gt;Radados&lt;/a&gt; packages ported to Gutsy for
fixing small issues with the command line and SMB clients are now
available for Ubuntu 8.04 and 8.10.&lt;br&gt;
&lt;br&gt;

Ubuntu Gutsy fixes  &lt;a href=&quot;http://www.radados.org/deb/installer_cd/dists/prospector/main/binary-i386/cli/&quot;&gt;(download here)&lt;/a&gt;

&lt;ul&gt;&lt;li&gt;Add vi syntax highlights
	&lt;/li&gt;&lt;li&gt;Make use of ssh-agent
	&lt;/li&gt;&lt;li&gt;Require PKI for SSH login
	&lt;/li&gt;&lt;li&gt;Fix Zenity focus bug
	&lt;/li&gt;&lt;li&gt;Set TTY getty's to readable font
	size
	&lt;/li&gt;&lt;li&gt;Add much needed CLI aliases
	&lt;/li&gt;&lt;li&gt;Set PS1 colors
&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;

Radados Samba Client  &lt;a href=&quot;http://www.radados.org/deb/installer_cd/dists/prospector/main/binary-i386/network/&quot;&gt;(download here)&lt;/a&gt;
&lt;ul&gt;&lt;li&gt;Configure your Linux system to
	authenticate to a SMB domain controller.
	&lt;/li&gt;&lt;li&gt;Added pam_mount.conf.xml changes
	needed for Ubuntu 8.04 and 8.10
&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;

&lt;br&gt;
</description>
</item>

<item>
<title>Building RAID1 for IPcop 1.4.20</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=112</link>
<description>IPcop does not ship with RAID1 support. I
like to use RAID1 for my firewalls because IPcop only needs about 5G to
work and you cannot buy new hard drives that small.&lt;br&gt;&lt;br&gt;It is a
waste to use a large hard drive when there are so many small older
drives that would work just fine so if you use older drives RAID1 is a
good idea.&lt;br&gt;&lt;br&gt;I used &lt;a href=&quot;http://radados.org&quot;&gt;Radados&lt;/a&gt; linux for this but another live CD may
work. The kernel must be recompiled and custom IPcop modules, like IP
filters for h323 are missing because I tried many times to follow the
IPcop directions to build the IPcop source files but it dies with
errors every time.&lt;br&gt;&lt;br&gt;Steps&lt;br&gt;1) Install two IDE hard drives as HDA and HDB to your new firewall&lt;br&gt;2) Install IPcop 1.4.20 to the HDA (other versions of IPcop may need to adjust this script)&lt;br&gt;3) Reboot with a live CD and run this script&lt;br&gt;&lt;br&gt;Download &lt;a href=&quot;http://www.silicontao.com/software/IPcop/Building_RAID1_IPcop.txt&quot;&gt;here&lt;/a&gt; </description>
</item>

<item>
<title>RADADOS = Rapid Application Development And Deployment Of Systems</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=111</link>
<description>Radados Linux now available! Radados is easy installs for workstations and servers.&lt;br&gt;&lt;br&gt;Web site &lt;a href=&quot;http://www.Radados.org&quot;&gt;http://www.Radados.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;BitTorrent download from &lt;a href=&quot;http://linuxtracker.org/index.php?page=torrent-details&amp;id=9dafe3e01fe46e364d686226dc266cd20505bc59&quot;&gt;linuxtracker.org&lt;/a&gt;&lt;br&gt;</description>
</item>

<item>
<title>VoIP * Workshop February 22</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=110</link>
<description>As Voice over Internet Protocol (VoIP) is revolutionizing the century old telephone industry, the free and open source software Asterisk is setting the pace for standardization of PBX equipment. This is a free workshop and all are welcome. This will be an introduction to VoIP and Asterisk where you can see a demonstration of equipment, try out the easy to use management software and discuss the challenges and opportunities of VoIP. Bring your laptop so you can explore the Asterisk management software with a web browser on your desktop.&lt;br&gt;&lt;br&gt;There will be door prize draw so bring your business cards.&lt;br&gt;&lt;br&gt;For computer nerds there will be a demonstration on Monday February 18 at the Lethbridge Linux User Group meeting at the same address.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;strong&gt;When&lt;/strong&gt;&lt;/u&gt;&lt;br&gt;VoIP * (Asterisk) workshop on Friday February 22 and 1:00PM.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;strong&gt;Where&lt;/strong&gt;&lt;/u&gt;&lt;br&gt;CJIL Television&lt;br&gt;450 - 31 Street North&lt;br&gt;Building with the big &amp;quot;M&amp;quot; on it on the corner of 5 Ave. and 31 St. N. Come in the main doors.</description>
</item>

<item>
<title>Installfest in Edmonton: September 15 and 16, 2006</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=109</link>
<description>&lt;a href=&quot;http://www.digital-liberation.ca/&quot;&gt;Liberating Students Digitally&lt;/a&gt;,
an open source software advocate and user group at the University of
Alberta, will be holding our third annual Fall Installfest on September
15 and 16, 2006. This year's 'fest will take place in the first-floor
common area of the Computing Science Centre, a space provided by our
partners for the installfest, the &lt;a href=&quot;http://www.uacs.ca/&quot;&gt;Undergraudate Association of Computing Science&lt;/a&gt;.&lt;br&gt;&lt;br&gt;Our &amp;quot;default&amp;quot; distro this time around will be Ubuntu 6.06 (Dapper
Drake), but as always we're open to special requests of all sorts.
We're also planning to have a couple of demo machines for people to
play with, and some informational displays to raise awareness of free
and open source software. As usual, we'll be providing monitors, mice,
keyboards, speakers, etc. for installs, so all you need to lug is your
laptop or tower.&lt;br&gt;&lt;br&gt;We're looking for volunteers, so if you're interested and will be in
Edmonton come September, we'd love to hear from you. The plan is to
have an online registration system up soon, but if you don't want to
wait for that, feel free to send us an email. Full details are on our
(frequently updated) website, &lt;a href=&quot;http://www.digital-liberation.ca/&quot;&gt;http://www.digital-liberation.ca&lt;/a&gt;.</description>
</item>

<item>
<title>Canada census now for Linux users.</title>
<link>http://llug.linux.ab.ca/modules.php?name=News&amp;file=article&amp;sid=108</link>
<description>This is great news. If you wanted to use the web site or not this is a landmark victory for Linux users everywhere. The Canadian government has officially recognized Linux users as valued members of society.

&lt;a href=&quot;http://www22.statcan.ca/ccr02/ccr02_003_e.htm&quot;&gt;Notice to Linux users&lt;/a&gt;</description>
</item>

</channel>
</rss>