Linux Stromverbrauch optimieren

Und wieder mal ein Post der im Zuge des Homeserver 2.0 Projekts entstanden ist. Die Stromverbrauchsmessung nach dem Zusammmenbau des Servers waren bei weitem nicht dort wo ich eigentlich hinwollte, also habe ich mich mal schlau gemacht und folgendes ist dabei rausgekommen: Festplatten nach einer gewissen Zeit in den Ruhezustand setzen: for i in /dev/sd?;…

Performance Tuning for Linux Software Raid

After finishing my Homeserver project I wanted to get the maximum of performance. At the end of my research in the web i have created following script: # Get Arrays and physical Disks for active Raid5 Volumes ARRAYS=”” DISKS=”” for field in `cat /proc/mdstat | grep “active raid5″` do if [[ “x${field:0:2}x” == “xmdx” ]]…

Performance Tuning für Linux Software Raid

Für meinen Homeserver habe ich mich ein bisschen mit den möglichen und sinnvollen Tuning Optionen für Software Raid unter Linux beschäftigt. Dabei ist bei mir folgendes Skript rausgekommen, dass ich nach dem Boot ausführe: # Get Arrays and physical Disks for active Raid5 Volumes ARRAYS=”” DISKS=”” for field in `cat /proc/mdstat | grep “active raid5″`…

Howto tunnel TCP connections over SSH

Network Layout: There is one server which is only connectable via SSH. This server hosts two additional services: git and http. We have no access to the firewall and can’t forward the ports. The server is a linux system, as clients windows and linux are a option. We can use the comon git port on…

TCP Ports über SSH Tunneln

Ausgangssituation: Es gibt einen Server der nur über SSH erreichbar ist, der aber zusätzliche Dienste anbietet die man gerne nutzen würde. Zusätzliche Portweiterleitungen sind nicht gewünscht. Server ist hier ein Linux System. Bei den Clients wird Linux mit OpenSSH und Windows mit Putty betrachtet. Wir möchten auf den git Server und zusätzlich den Webserver zugreifen….