I moved my Wordpress Blog to Drupal. Not that Wordpress is bad, but I've to create some websites and I'm planning on using Drupal for them.
So this is a good way to get the hang of it.
My blog is running on Drupal
Submitted by vincent on Thu, 02/11/2010 - 13:21
Event advertisement
Submitted by vincent on Sun, 01/24/2010 - 10:25
Dust cleaning on Thinkpad
Submitted by vincent on Fri, 01/15/2010 - 04:58
Routed Xen setup
Submitted by vincent on Wed, 01/13/2010 - 06:30
Yesterday i needed to setup a Xen machine where only the MAC address of the host (dom0) was allowed by the firewall. Because of this, a bridged setup could not be used since all domU's will be using their own MAC address.
So i needed a routed setup instead. That way the host (dom0) will be used as a "router" for the domU's and the firewall would only see the MAC of the dom0 host when communicating.
Configuration is quite easy. Edit /etc/xen/xend-config.sxp and comment out the bridge related stuff.
LOAD logo
Submitted by vincent on Wed, 12/23/2009 - 22:49
I created a logo for the LOAD event. This is what i have for now, but I'll probably make some other designs to.
If you've comments or suggestions, please don't hesitate to put them here.
F13 : I voted
Submitted by vincent on Mon, 11/30/2009 - 13:58
Fedora 12 release party
Submitted by vincent on Sun, 11/29/2009 - 13:13
Yesterday was the Fedora 12 release party in Antwerp (Belgium).
It was held at the Don Bosco school which had a good infrastructure for this event. A nice room, drinks, food, network, ... So, thanks to them for providing this in their spare time !
I came a little earlier because I needed to setup a pxe server so people could get Fedora 12 installed on their machines if they wanted.
Fedora 12 Release Party
Submitted by vincent on Wed, 11/18/2009 - 21:41
Fedora 12 has been released, and for this there's a release party being held (probably the first Fedora release party in Belgium).
This will be a relative small event where the focus lies on getting together.
You'll also have the opportunity to install Fedora 12 on your machine.
More info on the Fedora Wiki.
RHEL SSL certificate error
Submitted by vincent on Fri, 10/30/2009 - 09:12
Yesterday i had a machine that wouldn't register with the red Hat network. It gave me the following error : "The SSL certificate failed verification".
After some searching i noticed that the machine was still living in 2001, so all i had to do was set the time right.
Auto create home dirs with Samba
Submitted by vincent on Tue, 10/20/2009 - 12:04
If you're using Samba to provide network shares to your users, it might be usefull to autmatically create the their homedir when they access it the first time.
This can be done by adding this line to the [homes] directive :
root preexec = /usr/local/sbin/mkhomedir.sh %U
This is the mkhomedir.sh script itself :
#!/bin/bash
if [ ! -e /storage_users/DOMAIN/$1 ]; then
mkdir /storage_users/DOMAIN/$1
chown $1:"DOMAIN+Domain Admins" /storage_users/DOMAIN/$1
fi
exit 0



