Contribute  :  Advanced Search  :  Site Statistics  :  Directory  :  Calendar  :  My Downloads  :  Links  :  Polls  :  Contact details  
robinbowes.com If a man speaks in a forest and his wife is not there, is he still wrong?
Welcome to robinbowes.com
Friday, May 16 2008 @ 04:15 PM BST
  View Printable Version 

root access to zfs datasets shared over NFS

One of the great things about zfs on Solaris is how it integrates with NFS, thus making it very easy to manage NFS shares.

By default, the root user on a client machine has restricted access to an NFS-mounted share.

Here's how to grant full access to local root users to NFS mounts:

zfs set sharenfs=rw=@192.168.1.0/24,root=@192.168.1.0/24 space

This gives full access for root users on any machine in the 192.168.1.0/24 subnet to the zfs dataset "space".
  View Printable Version 

flac 1.1.4 on FC6 - fix SELinux errors

I wanted to install flac v1.1.4 on my FC6 box but there is no RPM for FC6.

I installed from source but got this error when running flac:

flac: error while loading shared libraries: /usr/lib/libFLAC.so.8: cannot restore segment prot after reloc: Permission denied

This is an SELinux problem. I fixed it using:

chcon -t textrel_shlib_t /usr/lib/libFLAC.so.8*
  View Printable Version 

Using eth1 with xen (instead of eth0)

I have a xen box running FC6 with a couple of guest machines (also running FC6). The hardware has two network interfaces, eth0 (10/100MB/s) and eth1 (1GB/s). I was using eth0 as the primary interface but I've just got a gigabit switch and want to move the machine onto it. So I've reconfigured the host to use eth1 as the primary interface.

Here's what I needed to change to get xen to use the new interface.
  View Printable Version 

java on CentOS 5

I recently needed to install Java onto a CentOS 5 machine.
Instructions are available at http://wiki.centos.org/HowTos/JavaOnCentOS but I found that they didn't work with the latest JDK from Sun.
Here's what I did:
  View Printable Version 

Blog moves to new server.

After battling for several months with various root kits on the server hosting this site I've finally admitted defeat and taken it offline.

I've moved this blog plus my projects and downloads onto another machine so it *should* be business as usual.

Please drop me an email and let me know if you find anything that's broken.
  View Printable Version 

Back online - for now

After getting root-kitted due to a vulerability in the rich text editor used by geeklog, I took the server hosting this site offline.

I'm in the process of moving the whole lot to a new server, but in the meantime, I've brought the server back online.

Sorry for any inconvenience.

R.

Link for proxy testing: joe@example.com
  View Printable Version 

Creating a 1:25,000 map

Notes on how to download 1:25,000 mapping from multimap.com and tile them together into one image.
  View Printable Version 

My first barbel!

As a child, I used to spend many an happy hour fishing on the local "beck". I used to read books about barbel and dream of catching one. Tonight, I caught my first.
  View Printable Version 

Site vulnerabilities fixed

Apologies for any problems you may have experienced with this site in the past week or so, but I've been attacked by "script kiddies".

A security exploit has been published which affects geeklog (it affects the mcpuk filemanager component of the FCKeditor - more details here) and they've been hammering my site.

I managed to upgrade last night so things should settle down a little now. However, there may be certain elements of the site that still do not work correctly.

Please drop me an email and let me know if you find anything that's broken.
  View Printable Version 

Building kaffeine from svn source on FC5

Here's how to build kaffeine from the latest svn source on FC5.