Linux: Mount second encrypted HDD automatically without entering a password

Posted About 12 years ago by Kim Klotz.

This is one possibility to do this. There are other and maybe even better ways to do this.

TeamViewer 7 finally works with multiple screens under Linux

Posted About 12 years ago by Henning Koch.

TeamViewer 6 and lower had an issue where they would see a multi-monitor Linux setup as a single wall...

Ubuntu: Reload Gnome panel while keeping user session

Posted About 12 years ago by Arne Hartherz.

Sometimes you need to restart the Gnome panel, e.g. when you installed a new Gnome panel widget but the widget...

Skype For Linux With Tabs Support Using SkypeTab NG

Posted Over 12 years ago by Henning Koch.
webupd8.org

SkypeTab-NG (NG stands for Next Generation) is a tool that adds tabs to Skype for Linux. Besides providing a...

How to fix: "500 Internal Server Error" after adding Rack::Bug

Posted Over 12 years ago by Arne Hartherz.
github.com

When Rack::Bug has been added to your project and your Apache2/Passenger only replies with an Error 500 (Internal Server...

Improve web font rendering in Windows by autohinting fonts

Posted Over 12 years ago by Henning Koch.

Web fonts are awesome. After being restricted to Arial for two decades there is finally a cross-browser way to...

Make Type 1 fonts (.pfb/.pfm) appear in OpenOffice on Ubuntu Linux

Posted Over 12 years ago by Henning Koch.
sgruendel.blogspot.com

When you install Type 1 fonts (like makandra's corporate typeface), they won't show up in OpenOffice. OpenOffice requires...

Solve screen error "Cannot open your terminal '/dev/pts/0' - please check"

Posted Over 12 years ago by Arne Hartherz.

When using the screen tool you may be unable to start a screen session but instead encounter an error:

Removing ANSI color codes from Rails logs

Posted Over 12 years ago by Arne Hartherz.
commandlinefu.com

The colors in Rails log files are helpful when watching them but, since they are ANSI color codes like ^[[4...

Truncate files to zero length

Posted Over 12 years ago by Arne Hartherz.

This will reduce the filesize of foo and bar to 0 bytes: truncate -s0 foo bar If the files do...

Line wrap text from a Ubuntu Linux terminal

Posted Over 12 years ago by Henning Koch.

You can use fold: fold -sw 60 You can now paste your texts. fold will echo them back, word-wrapped...

Dragging a file into your terminal pastes the file path

Posted Over 12 years ago by Henning Koch.

When you drag a file from a Nautilus window into a terminal window, the file's path will be pasted...

How to install a frozen version of Firefox for your Selenium tests

Posted Over 12 years ago by Henning Koch.

Whenever Firefox updates, all your Cucumber features that use Selenium break. This is annoying. In order to remedy this, version...

xdissent/ievms - GitHub

Posted Over 12 years ago by Lexy.
github.com

Microsoft provides virtual machine disk images to facilitate website testing in multiple versions of IE, regardless of the host operating...

Web Upd8: Ubuntu / Linux blog

Posted Over 12 years ago by Lexy.
webupd8.org

Great blog with daily news and HOWTOs for Ubuntu, Linux and Gnome.

Install the DeaDBeeF music player under Ubuntu Linux

Posted Over 12 years ago by Henning Koch.

DeaDBeeF is one of the better music players for Linux. You can find installation instructions here.

Convert the colorspace of a PDF from RGB to CMYK under Ubuntu Linux

Posted Over 12 years ago by Henning Koch.

Note that converting from RGB to CMYK will usually degrade your colors because no exact mapping is possible. Anyway, this...

Rotate a PDF under Ubuntu Linux

Posted Over 12 years ago by Henning Koch.

Use the PDF toolkit: sudo apt-get install pdftk To rotate page 1 by 90 degrees clockwise: pdftk in.pdf cat...

Fix: Tail says "no space left on device"

Posted Over 12 years ago by Tobias Kraze.

Linux provides a fix number of filesystem watches. If you have some greedy daemon (like dropbox) running, chances are it...

Grep the number of occurences in a file, counting multiple hits per line

Posted Over 12 years ago by Arne Hartherz.

Grep prints one line per match. To return the number if matches, use the -c switch: grep -c "something" filename...

Hide your Selenium browser window with a VNC server

Posted Almost 13 years ago by Tobias Kraze.

This is now part of geordi. Please don't follow the instructions below, if you use geordi. Inspired by the...

How to look at hidden X screens

Posted Almost 13 years ago by Arne Hartherz.

When you have a program running in a hidden X screen (like with Xvfb for Selenium tests) you may want...

How to type accented characters on keyboard layouts without dead keys

Posted Almost 13 years ago by Henning Koch.

Ubuntu comes with keyboard layouts like "Germany Eliminate Dead Keys", which are practical for programming. If you need to type...

Linux: Create file of a given size

Posted Almost 13 years ago by Arne Hartherz.

Sometimes you need a file of some size (possibly for testing purposes). On Linux, you can use dd to create...