Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

Sunday, January 30, 2011

3 weeks on the new machine.

Over the New Years weekend I put together a new machine and loaded Ubuntu 10.10 on it.

What I learnt.
  • Power connectors have changed. In addition to the 24 pin EATXPWR socket, there was a 4 pin ATX12V that I'ld not seen before. It's halfway across the board too.

  • The current graphics card standards has changed. Installed my first PCI Express 2.0 x16 card.

  • My mother board came with 2 Serial ATA 6.0Gb/s cables and 2 Serial ATA 6.0Gb/s cables. This was the only place I had fun & games with. No marking of cables to say which is which.


The third point was the only one that caused a problem. Initial I built the machine with one SATA DVD drive & one SATA hard disk drive. Worked fine. I then added the drive that contained part of the /home directory from my old machine. After that the boot sequence hung. I then swapped the cable connecting the DVD with the cable on the second hard drive and it all worded fine. So speed was important to the hard drive working, but not for the DVD drive. Go figure.

Friday, December 31, 2010

Jigsaw puzzle for the New Years long weekend.

Just brought assorted pieces for a new computer.

Bits purchased:

  • AMD Phenom II x4 965 CPU (3.4 GHz),

  • ASUS M4A87TD EVO motherboard,

  • 4GB DDR3 memory (2 sticks of 2GB, shop didn't stock 4G sticks, I asked),

  • Antec case (Noted on the way out that it didn't have a power supply. First time I've ever borough a case that didn't come with a power supply in situ!)

  • 500W power supply.


Hope I got a video card new enough to be backward compatible with the motherboard. That's the only potential issue I can see.

Have a 1TB SATA hard disk on the shelf already.

Going to load Ubuntu 10.10 on it.

I love this jigsaw stuff, should do it often enough.

Tuesday, November 30, 2010

this month in the machine...

Had three events this months.

First was the regard ActionHack. I great hacking afternoon at the iLab incubator's boardroom in Toowong.

Second was a big weekend at #railscamp in Perth.

Andrew Grimm (A sysadmin at UNSW) gave in interesting presentation of using an evolutionary like randomly generated programs (mutations) to test Rubinius. He used other ruby implementations (as a group) to validate Rubinius' returns. The other implementations effectively becoming the environment appling natural selection on Rubinius, to determine its fitness.

Andrew's slides

Thirdly, Last week I went to a Linux Users Group meeting. HUMBUG's fortnightly meeting at UQ. Was just a chat & hack session. I had one problem, but solved it that morning.

I had a mial server issue on my first attempt to set up a mail server. I found that courier (I think?), when reading the authpgsqlrc file, is failing to recognize comments and thus getting the auth requests against the database wrong. The fix was to move the comments to the next line, instead on the end of the line they apply to.

Next weekend is a new month, off to ActionHack.

Saturday, January 31, 2009

Don't default the disk

Playing with Mythbuntu this weekend.

First lesson, don't let it default to one partition. I had problems finding /boot (I think). After some googling, the most likely cause is partitioning?

About to repartition. Lets see how it goes.


Gnoll110

Friday, October 31, 2008

Ruby scripts (book)

Found out about Basement Books in the Railway Square arcades near Central Station in Sydney.

One on the books I picked up was 'Practical Ruby for Systems Administration' by Andre Ben Hamou (Apress). ISBN-13 978-1-59059-821-4 ISBN-10 1-59059-821-0.

Chapter 2 has a cool beginners script. The first bit on work script in the text.

It's a script to build an empty script and open it in an editor.


#!/usr/bin/env ruby

path = ARGV[0]
fail "specify filename to create" unless path

File.open(path, "w") { |f| f.puts "#!/usr/bin/env ruby" }
File.chmod(0755, path)
system "pico", path


pico is the text editor I use. The example code used "open".

Currently I'm up to chapter 5 and have learn a few thing about Ruby and its what and how.


Gnoll110

Thursday, March 08, 2007

CLUG Programmers' Special Interest Group Meeting

CLUG Programmers' Special Interest Group Meeting was last night.

Tridge (Andrew Tridgell) gave a talk about hacking a binary package for one distro so that it would run on other distro. He used stuff like chroot & LD_LIBRARY_PATH. Lots of tricks and smoke & mirrors :)

Learnt a few new command options too.

A good night.


Gnoll110

Sunday, December 31, 2006

Linux's next chance

Is Linux's next chance for world domination the move to 64 bits?

What do you think?

Got this link from the Canberra LUG's mailing list.


Gnoll110