 |
DL.TV Read My Letter!
June 21, 2008
|
I was excited today to see that my letter was chosen to be read on DL.TV #237. In the previous episode Robert asked for people to write in and share their experiences with DSL. Below was my reply.

I imagine with the increased use of cable and fibre in the US, that DSL is seen as an older technology to be left behind. Australia's low population covering such a large area means that replacing the traditional phone network is an expensive proposition. So whilst the rest of the world marches on with cable and fibre networks, Australia is left to hack what we have with DSL. The once vigorous rollout of cable some 10 years ago slowed to a crawl when the telcos realised that there was still life left in the national copper network. And now thanks to ADSL2+, it looks as if we'll be using those two tiny strands of copper that run from our houses for a little while longer. When Telstra unveiled their ADSL2+ network a few months ago, the number of Australian's who have access to the service was increased many times over. Yes, I know, it's Telstra—but having fought off being regulated to wholesale the new network, it now appears as if they are going to do exactly that, and wholesale the service to smaller ISPs. It would seem that Telstra was just opposed to being regulated on the matter, and not against wholesaling ADSL2+ at all. This leaves Australia in good stead with DSL, which in a global climate of fibre and cable, must appear a little weird to the rest of the world.
|
 |
Unneeded Packages in Ubuntu
May 29, 2008
|
I'm new to this whole Debian thing and its package management—oh how I miss yum. Space is tight on one of my Ubuntu installs, so in an effort to regain some disk space, I Googled up an article titled "Removing package cruft...". What follows are the steps I borrowed from that article. This, as well as removing old kernel material, form part of my space regaining ritual.
Start by using the autoremove feature of apt-get.
sudo apt-get autoremove --purge
It may be possible to find additional uneeded packages using:
dpkg -l | grep ^rc
...and transitional "placeholding" packages using:
dpkg -l | grep transitional
Finally to remove packages found with the above two commands:
sudo dpkg --purge packagename
|