Category Archives: Howto

Auto start Teamspeak 3 Ubuntu

Before I start I am asuming you have already downloaded your copy of teamspeak 3 and unpacked it. For reference I will assume the path to where you unpacked TS3 is: /home/ts3/teamspeak3-server_linux-amd64 Now to make an autostart script you can actually just reuse the one that comes with TS3: ts3server_startscript.sh The only thing I did [...]

Howto: Zend Framework Cron

This was verified to work under Zend Framework 1.9.5 and 1.9.6. First we want to make a new file for the cron somewhere outside the public folder, I chose a folder called scripts. My project thus looks like this: domain.com application library logs public index.php scripts cronjob.php tests The trick with cronjobs is that you [...]

Howto: Fan control in Ubuntu Jaunty

This tutorial will explain how to get fan control working on Ubuntu Jaunty. Start with installing lm-sensors and detecting your sensors & fans: sudo aptitude install lm-sensors sudo sensors-detect Pay attention to end part of running sensors-detect, it is the only option that defaults to NO but you want to select YES! If you do [...]

Howto: VNC to home over SSH with Ubuntu

Something small I just figured out which might be useful for others again. The various tutorials I found online missed something crucial in the explanation, so it took me a while to figure it out. Server Side Go to System->Preferences->Remote Desktop Copy the following settings: Client Side: # Install SSH server on your client sudo [...]

Howto: Install HLDS / SRCDS (TF2) in Ubuntu 64bit

This took me a little while to figure out, but it was actually really easy. So, once again, a post to store it on the interwebz and help others # Make a new dir and move into it mkdir srcds && cd srcds # Download hldsupdatetool wget http://www.steampowered.com/download/hldsupdatetool.bin # Make it executable sudo chmod +x [...]

Howto: Install Webmin on Ubuntu

Another very short howto on how to install Webmin on Ubuntu/Debian! wget http://downloads.sourceforge.net/sourceforge/webadmin/webmin_1.480_all.deb?use_mirror=kent sudo dpkg -i webmin_1.480_all.deb sudo apt-get -f install That’s all there is to it, you can now login to webmin at https://localhost:10000/ if you are connecting to it locally. Mind you Webmin is not secure!! I only recommend this if you know [...]

Howto: Move Software RAID1 to Other Machine or New Installation (Ubuntu/Debian)

Short howto on recovering a software RAID1 array using Debian / Ubuntu (after moving it to another server/reinstalling OS) sudo mdadm –scan –assemble /dev/md2 /dev/sdc1 /dev/sdd1 sudo mkdir mount sudo mount /dev/md2 mount/ /dev/md2 is the new name of the raid array /dev/sdc1 is the name of the first drive which was part of the [...]

Howto: WordPress on SliceHost or VPS with SFTP and SSH

Let me start off by explaining why I wrote this tutorial. I have been hosting with SliceHost for quite some time now, and decided to mess around with Wordpress a bit instead of building something from scratch. After downloading and installing Wordpress I noticed it wanted FTP login details to install plugins etc from the Admin interface. That was a problem as I only have SSH / SFTP acces. (I never setup an FTP server because it would just take up more memory, I have a 256MB slice/vps.) Anyways, I was in a bit of a pickle, I didn’t want to have to upload each plugin by hand and then manually install through the admin section. Then I found some tutorials on how to set up SSH support in Wordpress, but they were a bit unclear. Hence my reason for writing this.