<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>Weblog</title>
	<link>http://famvdploeg.com/blog</link>
	<description>A simple look on things</description>
	<lastBuildDate>Wed, 20 Jan 2010 16:28:06 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Basic iptables configuration</title>
		<description><![CDATA[Here is a small basic example allowing you to setup your iptables.
First we reset everything. See the man page for exact details on the parameters we use.

iptables -F
iptables -Z
iptables -X

Create some chains that will provide us with some logging.

iptables -N logdrop
iptables -N logreject
iptables -N logaccept

Add some rules to these chains.

iptables -A logdrop -j LOG --log-prefix [...]]]></description>
		<link>http://famvdploeg.com/blog/2010/01/basic-iptables-configuration/</link>
			</item>
	<item>
		<title>Some bash stuff</title>
		<description><![CDATA[I just need a cheat sheet because I keep forgetting all these bash things.



Number of parameters:
$#


All parameters:
$@


String length:
${#foo}


Remove trailing slash:
${foo%/}


Check return value from last command:
$?



]]></description>
		<link>http://famvdploeg.com/blog/2009/08/some-bash-stuff/</link>
			</item>
	<item>
		<title>lm-sensors on the VIA EPIA SN10000EG and SN18000g</title>
		<description><![CDATA[1. Edit /etc/modprobe.d/options.conf
2. Add the following line:

options dme1737 probe_all_addr=1

3. Save and exit
4. Load the module

modprobe dme1737

5. Check that it loaded succesfully:

lsmod

6. Edit the /etc/sysconfig/lm_sensors file

HWMON_MODULES=&#34;dme1737&#34;
MODULE_0=dme1737

7. Run sensors to check the output

sensors

8. I also compiled the c7temp module because the in0 didn&#8217;t show and loaded it.

mkdir -p /usr/src/c7temp
&#40;I extracted the c7temp.c file from the patch which [...]]]></description>
		<link>http://famvdploeg.com/blog/2009/07/lm-sensors-on-the-via-epia-sn10000eg-and-sn18000g/</link>
			</item>
	<item>
		<title>Samba basic config</title>
		<description><![CDATA[Step one: You will need samba
apt-get install samba
Step two: Check if you have a group for your samba users.

cat /etc/group &#124; grep samba

On my system this resulted in &#8220;sambashare:x:107:&#8221; which means we have a group called sambashare with gid 107.
If you don&#8217;t have a group you can create it. I recommend specifying an own gid [...]]]></description>
		<link>http://famvdploeg.com/blog/2009/05/samba-basic-config/</link>
			</item>
	<item>
		<title>Update-alternatives</title>
		<description><![CDATA[Having multiple jvm&#8217;s on your linux machine can be a pain in the ass. To select which jvm to use you can use the update-alternatives command. A small example of how to add a jvm to the alternatives here:

update-alternatives --install /usr/bin/java java /usr/java/jdk1.6.0_11/bin/java 16011

This will add an entry for your jdk into the alternatives. The [...]]]></description>
		<link>http://famvdploeg.com/blog/2009/03/update-alternatives/</link>
			</item>
	<item>
		<title>Time synchronization on your debian machine</title>
		<description><![CDATA[In order to synchronize the time on your debian machine you can use ntp. (apt-get install ntp) This will install ntp and the ntp daemon. Edit your configuration found in /etc/ntp.conf and add some ntp servers close to your current location.
I added some ntp servers for the Netherlands.

# pool.ntp.org maps to more than 300 low-stratum [...]]]></description>
		<link>http://famvdploeg.com/blog/2008/08/time-synchronization-on-your-debian-machine/</link>
			</item>
	<item>
		<title>Tomcat remote debugging</title>
		<description><![CDATA[I was going to write a whole lot of howto here. But why do that when you can just link to the Tomcat Wiki?  
The wiki that shows you how to enable remote debugging is found here.
]]></description>
		<link>http://famvdploeg.com/blog/2008/08/tomcat-remote-debugging/</link>
			</item>
	<item>
		<title>Building EJB3 applications with Maven 2</title>
		<description><![CDATA[Here is a guide to building ejb3 applications with maven2 (from scratch). We will not be using any maven archetypes/templates but do it by hand to get a project that is as clean as possible.
First create a directory that will contain all the modules the ear file consists of. It will contain all the basic [...]]]></description>
		<link>http://famvdploeg.com/blog/2008/08/building-ejb3-applications-with-maven-2/</link>
			</item>
	<item>
		<title>Installing Trac with MySQL database</title>
		<description><![CDATA[1. Follow the basic guide posted here.
2. Be sure to install python-mysqldb package.
3. Create MySQL database and user for trac.

CREATE DATABASE trac;
CREATE user trac IDENTIFIED BY 'trac';
GRANT ALL privileges ON trac.* TO 'trac'@'%';

4. Run the following command:

trac-admin &#60;Your project dir&#62; initenv

5. When asked for the MySQL connection url enter something like the following:

#form: db-type://username:password@mysql-host:mysql-port/databasename
mysql://trac:trac@localhost:3306/trac

6. Configuring [...]]]></description>
		<link>http://famvdploeg.com/blog/2008/08/installing-trac-with-mysql-database/</link>
			</item>
	<item>
		<title>The paperless office</title>
		<description><![CDATA[Well here we are once again. This time to conquer the pile of paper laying besides, on and under your desk. My girlfriend went nuts by the sheer load of paper laying around everywhere. I&#8217;m kind of messy but when I start to organize things I&#8217;m kind of a perfectionist. So here I went and [...]]]></description>
		<link>http://famvdploeg.com/blog/2008/08/the-paperless-office/</link>
			</item>
</channel>
</rss>
