Mar 27

Following my email to How-To Channel I received the following response:

 

Hi Matt,

Thanks for your feedback. We recently ended our agreement to show the Lab with Leo Laporte and will be unable to show the last few episodes. While we are pleased to be a niche channel, providing shows that you won’t find anywhere else, programs need to sustain a level interest in order to justify being broadcast. Ongoing audience measurement indicated the Lab with Leo was not in line with viewing preferences of our channel. As you know producers of the program in Canada have also made the decision to end production of The Lab.

Cheers

The HOW TO Team

You can read my original post: Lab with Leo off TV in Australia - Let us See the Remaining Episodes!

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 27

The Lab with Leo has officially been canceled, how ever Canadian viewers will be able to see the remaining episodes, yet Australian viewers wont due to the How-To Channel immediately canceling it.

Heres the response I got from the Lab Crew when asking about the show in Australia:

Thank you for writing us.

Production of ‘The Lab with Leo’ has ceased.

New episodes will be airing in Canada until the end of May. However
the HOW-TO Channel has chosen to stop airing the show immediately.

If you have any questions or concerns as to why, please contact them: saygday@howtochannel.com.au

We will continue to put up videos of segments on our website until the
new episodes have finished airing.

Thank you so much for watching and being a part of ‘The Lab’.
We couldn’t have done it without you, the viewers.

Sincerely,

The Lab Team

I urge viewers in Australia to contact the How-To Channel at the email address supplied and request the remaining episodes.

UPDATE: Read the response from the How-To Channel

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 27

Australians have a unique opportunity, right now, to influence what is happening in Tibet. Sign the petition below before Kevin Rudd heads to Beijing to meet the Chinese President and Premier. Let’s let our PM know he has a strong mandate to stand up for the rights of Tibetans.

http://www.getup.org.au/campaign/StandUpForTibet

Stand Up For Tibet

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 18

I love this, from Laugh Break:

Dear Hiring Manager,

Thank you for your letter of March 1. After careful consideration, I regret to inform you that I am unable to accept your refusal to offer me a position in your department.

This year I have been particularly fortunate in receiving an unusually large number of rejection letters. With such a varied and promising field of candidates, it is impossible for me to accept all refusals.

Despite your companies outstanding qualifications and previous experience in rejecting applicants, I find that your rejection does not meet my needs at this time. Therefore, I will assume the position in your department this August.

I look forward to seeing you then.

Best of luck in rejecting future applicants.

Sincerely,
Interviewee

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 18

Holy Crap!

http://forums.overclockers.com.au/showthread.php?t=602130

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 17

People wishing to apply for Computer Assistance from CLiCK can now fill out an application form online through our Apply Online section.

This will make it easier and quicker for potential clients to get computer assistance as well as also aiding partner organisations in applying for computers on behalf of their clients.

Printable application forms are still available on our Apply for a Computer page.

Visit CLiCK’s official announcement here.

This blog is brought to you by CLiCK Computer Recycling

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 15

Have you ever needed to find that unique Ubuntu Tip or How-to but couldn’t find it anywhere? Or you wanted to just search for things Ubuntu related?

Try Ubuntu Search -  Find everything about Ubuntu Linux

Ubuntu Search

This blog is brought to you by CLiCK Computer Recycling

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 14

Today’s tip from Steenbe.nl

The first step is to make sure that your internal network functions. You should setup your second Ethernet wired or wireless card and set its IP address to something like “192.168.10.1? via “ifconfig” utility as follows:
$ ifconfig eth1 192.168.10.1 netmask 255.255.255.0
This setup will be forgotten after a reboot, its better to add these lines to /etc/network/interfaces (replacing any previous declarations of eth1):

# The extended interfaces
auto eth1
iface eth1 inet static
address 192.168.10.1
netmask 255.255.255.0

Check if the previous command worked by typing the following:
$ ifconfig

The result will look like this

ifconfig
eth0 Link encap:Ethernet HWaddr 00:0C:6E:8A:BD:ED
inet addr:192.168.1.64 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::20c:6eff:fe8a:bded/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:80071 errors:0 dropped:0 overruns:0 frame:0
TX packets:44847 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:119404142 (113.8 MB) TX bytes:3332468 (3.1 MB)
Interrupt:20
eth1 Link encap:Ethernet HWaddr 00:20:18:3A:4E:AE
inet addr:192.168.10.1 Bcast:192.168.10.255 Mask:255.255.255.0
inet6 addr: fe80::220:18ff:fe3a:4eae/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2092 errors:0 dropped:0 overruns:0 frame:17
TX packets:1998 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:158939 (155.2 KB) TX bytes:348453 (340.2 KB)
Interrupt:16 Base address:0xa800

Next edit the following file to add the DHCP support on eth1:
$ nano /etc/dhcp3/dhcpd.conf
To save & close the file press Ctrl+X and then Y

Edit these values (add if missing)

# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages (’none’, since DHCP v2 didn’t
# have support for DDNS.)
ddns-update-style ad-hoc;

# option definitions common to all supported networks…
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.10.255;
option routers 192.168.10.1;
option domain-name “SOMENAME”;
option domain-name-servers 192.168.10.1;

default-lease-time 600;
max-lease-time 7200;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

subnet 192.168.10.0 netmask 255.255.255.0 {
range 192.168.10.10 192.168.10.100;
}

Explanation:
eth1 has the IP address 192.168.10.1 and the dhcp server now uses it as its home ip address.

One more thing needs to be configured before we can run the DHCP server
Open the file /etc/default/dhcp3-server
$ nano /etc/default/dhcp3-server

# Defaults for dhcp initscript
# sourced by /etc/init.d/dhcp
# installed at /etc/default/dhcp3-server by the maintainer scripts
#
# This is a POSIX shell fragment
#
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. “eth0 eth1?.
INTERFACES=”eth1?

Explanation:
Like the comment it the file says we are specifying the network card which must be used to handle dhcp requests

Finally the setup is done!
So lets run the DHCP server with:
$ /etc/init.d/dhcp3-server start

/etc/init.d/dhcp3-server start
* Starting DHCP server dhcpd3
…done.

If it report fails then look at the error log file ($ less /var/log/syslog and press END to view the last events)

Now you can test the connection to the server from any client connected to the server by:
$ ping 192.168.10.1 (to check if you can see the server)
$sudo dhclient eth0 (where eth0 is the ethernet port used by the client)

The last command is to get DHCP information from the server to the client, which will be reported in the following manner:

$ dhclient eth0
Internet Systems Consortium DHCP Client V3.0.5
Copyright 2004-2006 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/
Listening on LPF/eth0/00:0c:6e:8a:bd:ed
Sending on LPF/eth0/00:0c:6e:8a:bd:ed
Sending on Socket/fallback
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
DHCPOFFER from 192.168.10.1
DHCPREQUEST on eth0 to 255.255.255.255 port 67
DHCPACK from 192.168.10.1
bound to 192.168.10.64 — renewal in 41658 seconds.

Now that we have a connection to the server we want to have internet on the client pc. The internet connection of the server needs to be shared with the clients. The actual sharing component in Linux is done via the firewall (iptables or ipchains depending on the Kernel version)

First enable forwarding of the ipv4 layer
$ nano /etc/sysctl.conf

#
# /etc/sysctl.conf - Configuration file for setting system variables
# See sysctl.conf (5) for information.
#
#kernel.domainname = example.com
#net/ipv4/icmp_echo_ignore_broadcasts=1
# the following stops low-level messages on console
kernel.printk = 4 4 1 7
# enable /proc/$pid/maps privacy so that memory relocations are not
# visible to other users.
kernel.maps_protect = 1
##############################################################3
# Functions previously found in netbase
#
# Uncomment the next line to enable Spoof protection (reverse-path filter)
#net.ipv4.conf.default.rp_filter=1
# Uncomment the next line to enable TCP/IP SYN cookies
#net.ipv4.tcp_syncookies=1
# Uncomment the next line to enable packet forwarding for IPv4
net.ipv4.conf.default.forwarding=1

# Uncomment the next line to enable packet forwarding for IPv6
#net.ipv6.conf.default.forwarding=1

Now that we can do forwarding lets do it:
$ iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE (the forwarding)
$ echo 1 > /proc/sys/net/ipv4/ip_forward (the code to enable forwarding without reboot)

But like all programs the live configuration will be forgotten on reboot, so lets save it:
$ iptables-save > /etc/iptables.rules
Now that it’s saved we need to load the iptables.rules on starting the network:
$ nano /etc/network/interfaces (replacing any previous declarations of eth0):

# The extended interfaces
auto eth0
iface eth0 inet dhcp
pre-up iptables-restore < /etc/iptables.rules
post-down iptables-restore < /etc/iptables.rules

The complete file /etc/network/interfaces should look like this after all the modifications we applied:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp
pre-up iptables-restore < /etc/iptables.rules
post-down iptables-save > /etc/iptables.rules

# The extended interfaces
auto eth1
iface eth1 inet static
address 192.168.10.1
netmask 255.255.255.0

This blog is brought to you by CLiCK Computer Recycling

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 13

I have just came across this great website which displays images on a world map as they are uploaded to Flickr.

http://flickrvision.com/

This blog is brought to you by CLiCK Computer Recycling

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Mar 13

embedded by WP Embedded Video

YouTube Direkt

 

This blog is brought to you by CLiCK Computer Recycling

Would you like to buy me a beer?

If you enjoyed this post, make sure you subscribe to my RSS feed!

Donate to CLiCK Computer Recycling

Matt Vapor
Close
E-mail It