I couldn’t find any good tutorial on how to install Darwing Streaming Server on Ubuntu Hardy.
So let’s get started with a fresh install of 8.04.2 with all the updates.
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install build-essential
sudo addgroup –system qtss
sudo adduser –system –no-create-home –ingroup qtss qtss
cd /usr/local/src/
Download the latest version at http://github.com/lstoll/dss/tree/master
tar -xvf lstoll-dss-984a1365251f36ebf3f60f0d0175fa895a30b9a9.tar
cd [...]
Posted on September 26, 2008, 6:56 am, by Arstan, under
Linux.
If you happened to run Linux and have multiple linux servers, here’s a short how to access them password-less.
First we need to generate some keys:
ssh-keygen -t dsa
Then we copy them over to the remote server:
scp .ssh/id_dsa.pub user@someserver:/somepath
Then we copy the key to the authorized_keys file:
cat id_dsa.pub >> .ssh/authorized_keys
Then as a security measure we chmod it:
chmod [...]
Amazon has this services where you can use virtual servers, either your custom or prebuilt publicly shared server images. The key point here is that Amazon has a lot of servers that can be used at any time.
So let’s get started. The first thing to do is sign up at Amazon EC2. I’ll be using [...]
Posted on September 16, 2008, 8:17 pm, by Arstan, under
Linux.
UPDATE:
You can just enable ACPI and PAE/NX in the VirtualBox image General Settings and you are all set to install Ubuntu.
It’s been long time since I posted in my blog. It’s past midnight Wednesday (I love Selangor state for its public holidays!) and no office tomorrow.
I watched closely VirtualBox from its Sun acquisition and I [...]
Posted on July 23, 2008, 11:22 am, by Arstan, under
Linux.
Have you ever found out that your eth0 interface suddenly became eth1 or sth like that? I noticed that after some minor upgrades my eth0 became eth1. I hate this, because I am so used to eth0 as my LAN interface.
Also in latest versions of Ubuntu my WLAN is taken as wlan0. I’m so much [...]