468x15 text add

20 February 2012

Diablo 2 and Diablo 2 LOD cd - keys

Old good game. Diablo 2 and Diablo 2 Lord of Destruction expansion cd key. I hope does still working. If not - leave a comment and I fix the post.

Diablo 2 cd - keys

22WT-RT4G-VWC7-W27E
9GKE-6TJB-MEW7-VJ6P
FZDB-H6KK-D4MZ-M4BX
PWGZ-RT99-24V7-FBCC
VKDF-ZG62-6MVV-WRX9
N6XG-6T67-P9WP-ZC2G
CERM-F66W-7CXR-V6ZJ
BRBJ-7G8R-VMVP-ZPEP
NDM7-GJ7B-CFT7-WXZH
FZDB-H6KK-D4MZ-M4BX


Diablo Lord of Destruction (LOD) expansion cd - keys

DKKJ-4JD8-PVBR-KWJP
KEEJ-R9DD-BBM8-R829
PT2J-GGTB-KRCJ-NVPW
BT67-JFDB-T78G-G4FZ
8GP9-9GT2-N82K-6V46

Fake cd-keys
WVE6-RTNC-TFHG-EVXP
TBKJ-B79J-N6NJ-86MB
N64H-7J9X-JMCN-NG74


Have fun.
I'm waiting for Diablo 3 to show up in shops.

19 February 2012

Ubuntu/Debian apt-get install build-essential (How To)


If you got error massage in terminal like this

E: Couldn't find package build-essential

The solution is:

type in terminal to fix the problem

 apt-get update

now you can install GNU compilers like gcc, g++,  cpp, dpkg-dev and etc.

apt-get install build-essential


Have fun.

18 February 2012

How to install webmin on ubuntu server (dedicated or local)

Webmin is a web-based interface for system administration in Unix/Linux server. Using any web browser you can setup user accounts, Apache, DNS, MySQL, file sharing and a lost more. Webmin removes the need to manually edit Unix/Linux configuration files like /etc/passwd, and lets you manage a system from the console or remotely by using web browser. This post is to help you to find easy steps how to install webmin to ubuntu server.

Install webmin on ubuntu server

We have already installed ubuntu server, now we will install webmin for easy administartion.



Edit /etc/apt/sources.list file


sudo vi /etc/apt/sources.list


Add the following lines


deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib


Save and exit the file


Now you need to import GPG key


wget http://www.webmin.com/jcameron-key.asc


sudo apt-key add jcameron-key.asc


Update the source list


sudo apt-get update


Install webmin


sudo apt-get install webmin


When its done you should see something like this in you console:
Webmin install complete. You can now login to http://serverip:10000/
as root with your root password, or as any user who can use sudo
to run commands as root.

Now you can access webmin by using http://serverip:10000/ once it opens you should see login screen.


Have fun.