We took the Derry Road out of Dublin, soon renamed to the Londonderry Road when we left Monanghan and entered the North. Some towns en-route had helpfully corrected the signs back to 'Derry' using spray paint. Other towns were flying big massive Union Jacks - this was July, the marching season... best head straight through
320km from Dublin, a 4 hour casual ride to possibly the most scenic area in the wildest county of Ireland. We're staying one kilometre to the east of Annascaul, in the Dingle Gate Hostel. Comfortable enough, we have a private en-suite room, there's a fire in the lounge and parking hidden from the road.
With some bash scripts it can be useful to have them exit as soon as a command fails. To accomplish this have the following just after the “#!/bin/bash” line:
set -o errexit
This will cause the script to…
On my previous laptop I suffered with repeated over-heating problems whenever CPU load went high for a prolonged period. After several emergency shutdowns (performed by ACPI) I discovered the problem: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor returned the result: “performance” Inserting the following line before the ‘exit’ line in /etc/rc.local: echo "conservative" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor resolved the problem. For all
When reading/writing a disk image using Linux tool ‘dd’ launch as follows:
dd if=/dev/sdb of=filename.img & pid=$!
this will run ‘dd’ in the background.
To see the progress:…
Search and replace in vi is both quick and simple:X,Ys/search/replace/g (where x – start line number, y – end line number. optional) One very useful feature is the ability to use parts of the search regular expression within the replace string. For example, where the selected lines contain values between 2000-2999 and all these values
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.