<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Archive.pfb.no</title>
	<link>http://archive.pfb.no</link>
	<description></description>
	<lastBuildDate>Fri, 20 Jan 2012 16:39:55 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Resetting Thomson Speedtouch routers</title>
		<description><![CDATA[Hard Resetting a Thomson router if password is not obtainable: Telenor/NGT modems.
(Or upgrade your existing Speedtouch router to support bridging.)
Works for:
Thomson SpeedTouch 516i v6
Thomson SpeedTouch 546i v6
From a terminal window in Ubuntu (10.10):

:~$ sudo aptitude install bootp tftpd-hpa


:~$ sudo pico /etc/default/tftpd-hpa



RUN_DAEMON="yes"
OPTIONS="-l -s /var/lib/tftpboot"
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/var/lib/tftpboot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--secure"


sudo pico /etc/bootptab


thomson:ip=192.168.1.254:ha=00147F285465:td=/var/lib/tftpboot:hd=/:bf=ZZQ2AA7.417.bli:

Check what ip you can access the router on, mine is [...]]]></description>
		<link>http://archive.pfb.no/2011/02/16/resetting-thomson-speedtouch/</link>
			</item>
	<item>
		<title>SparkleShare with gitosis on ubuntu 10.10</title>
		<description><![CDATA[Installing gitosis
Install gitosis on a server where you would like to backup/store documents.
On my debian 5.08 (lenny) server, gitosis may simply be installed via aptitude.

my-git-server:~$ sudo aptitude install gitosis

Now, standard &#8220;home-dir&#8221; for gitosis is /srv/gitosis.  I would like to store my git-repositories on a raid location called /storage/. To change home-directory for gitosis, run this [...]]]></description>
		<link>http://archive.pfb.no/2011/02/15/sparkleshare-with-gitosis-on-ubuntu-10-10/</link>
			</item>
	<item>
		<title>Fully working remote control (HVR-4000) on kernel 2.6.35</title>
		<description><![CDATA[Remote control support (input device events) is now handled by the kernel (>=2.6.17). However, not all remote buttons may work out of the box. The driver that handles input device events, xf86-input-evdev, needs to be patched in order to remap higher keycodes than the xserver may handle. x server (Xorg/x11) is built with 255 keycodes [...]]]></description>
		<link>http://archive.pfb.no/2010/12/14/fully-working-remote-control/</link>
			</item>
	<item>
		<title>Authenticating Debian servers</title>
		<description><![CDATA[Problem updating software depository with aptitude, a signature / public key changed.
W: GPG error: http://debian.samfundet.no etch Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9AA38DCD55BE302B

:~$ sudo gpg --keyserver pgpkeys.mit.edu --recv-key 9AA38DCD55BE302B
:~$ sudo gpg -a --export 9AA38DCD55BE302B &#124; sudo apt-key add -

]]></description>
		<link>http://archive.pfb.no/2010/10/18/authenticating-debian-servers/</link>
			</item>
	<item>
		<title>Grails on Debian Lenny</title>
		<description><![CDATA[
Grails is an open source web application framework which uses the Groovy programming language (which is in turn based on the Java platform). It is intended to be a high-productivity framework by following the &#8220;coding by convention&#8221; paradigm, providing a stand-alone development environment and hiding much of the configuration detail from the developer. 
Wikipedia

Install java-sdk/jdk:

:~$ [...]]]></description>
		<link>http://archive.pfb.no/2010/10/18/grails-on-debian-lenny/</link>
			</item>
	<item>
		<title>Hauppauge remote control issue (HVR-4000)</title>
		<description><![CDATA[Ubuntu 10.10 (Maverick)
OUTDATED: go to http://archive.pfb.no/2010/12/14/fully-working-remote-control/
I have been quite frustrated over the lack of being able to navigate in media center menus for a long time since the back/exit button has failed to do the desired response, namely navigate back / go up one level / go to parent dir / go to parent menu. [...]]]></description>
		<link>http://archive.pfb.no/2010/10/18/hauppauge-remote-hvr-4000/</link>
			</item>
	<item>
		<title>Install SystemC on Ubuntu 10.10</title>
		<description><![CDATA[SystemC is a set of C++ classes and macros which provide an event-driven simulation kernel in C++ (see also discrete event simulation). These facilities enable a designer to simulate concurrent processes, each described using plain C++ syntax. SystemC processes can communicate in a simulated real-time environment, using signals of all the datatypes  offered by [...]]]></description>
		<link>http://archive.pfb.no/2010/10/13/systemc-ubuntu-1010/</link>
			</item>
	<item>
		<title>Redirect hostname.com/stuff to www.hostname.com/stuff</title>
		<description><![CDATA[Okay,
The lazy days are over and I figured out it was time to create a more useful redirection of a hostname in my apache2 configuration files. The past few years I have been using this redirection method, but not been happy with it:

RedirectMatch ^/$ http://www.hostname.com

This is ok, but if the user is trying to reach [...]]]></description>
		<link>http://archive.pfb.no/2010/06/12/redirect-hostname-com-to-www-hostname-com/</link>
			</item>
	<item>
		<title>Charging Acid batteries</title>
		<description><![CDATA[Garden/Lawn Tractor batteries can be recharged by using a 12V automotive charger.
A typical 12V Tractor battery has a capacity of about 10Ah.
Be sure to set the charging time accordingly to the Ah output of the charger.
It is a good practice to charge the battery before storing the Tractor for the winter.
Store the battery in a [...]]]></description>
		<link>http://archive.pfb.no/2010/05/25/charging-acid-batteries/</link>
			</item>
	<item>
		<title>extract pages from a pdf file</title>
		<description><![CDATA[I came across a nice little command to extract pages from a pdf file.

:~$ gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER \
       -dFirstPage=3 -dLastPage=4 \
       -sOutputFile=OUTFILE_p3-p4.pdf SOURCEFILE.pdf

Putting (splicing) multiple pdfs together:

:~$ gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER -sOutputFile=OUTFILE.pdf SOURCE_FILE_1.pdf SOURCE_FILE_2.pdf

Source: http://www.linuxjournal.com/content/tech-tip-extract-pages-pdf
]]></description>
		<link>http://archive.pfb.no/2010/04/09/extract-pages-from-pdf/</link>
			</item>
</channel>
</rss>

