Linux System Admins Blog

System admins of Promet – an e-commerce, high availability Open Source web shop – share their findings

Linux System Admins Blog header image 4

Entries from July 2010

Drupal Performance talk video from Drupal Con 2010

July 29th, 2010 · No Comments

I have already mentioned that google will start penalizing your site in search if it is not fast enough. I have recently given a presentation at Drupal Con about Drupal performance and page speed. Below is a video of our session – its currently the fifth most watched session from the conference according to archive.org. [...]

[Read more →]

Tags: Performance · drupal

Debian FTP archive for Etch – archive.debian.org

July 9th, 2010 · 10 Comments

Debian Etch has been discontinued for a while now, and in an ideal world everyone has upgraded to lenny a long time ago. Still, this is not always possible and there are some systems out there that are still running etch, some for a good reason, some just because their admins are lazy . Recently [...]

[Read more →]

Tags: Debian

HowTo remove a list of files

July 9th, 2010 · No Comments

Here is a quick tip on how to remove a list of files. Let’s say you have the list of files inside a file called files_to_remove. Usually I would do something like this: LIST=`cat files_to_remove` and then ls -al $LIST just to check what is in the list and if it looks good. And finally: [...]

[Read more →]

Tags: CLI · HowTo · Tips and Tricks · sysadmin