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 August 2009

Beyond 4GB ram on 32bit Linux

August 25th, 2009 · No Comments

Thinking of upgrading your 32 bit Linux machine beyond 4GB of memory?  Consider the following:
Does your CPU support Physical Address Extension to address beyond 4GB? Here is how to check:
grep pae /proc/cpuinfo
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 [...]

[Read more →]

Tags: Installation

Using wildcards in nginx valid_referers

August 25th, 2009 · 1 Comment

This quick post will show how we can easily allow only certain http referrers see some location using nginx. This might be useful for example if you are using nginx as a static content provider and want to not allow everyone hot-linking your images and only your own sites. Doing something like this in nginx [...]

[Read more →]

Tags: HowTo · Tips and Tricks · sysadmin

Using svn+ssh with a non-standard ssh port

August 17th, 2009 · No Comments

Many people use subversion over ssh for a simple and secure way to work on remotely hosted svn repositories. This is normally as simple as running:
svn co svn+ssh://user@server/repo .
If the remote ssh server is not running on the default ssh port (tcp 22) then this needs a little tweaking to get it working. Normally I [...]

[Read more →]

Tags: CLI · HowTo · Tips and Tricks · sysadmin