Posts Tagged ‘server’

Script to list free disk space on a computer?

Script to list free disk space on a computer?
If you are running a Microsoft OS, then you can use this script from the Microsoft site to list the FreeSpace.
CODE:
Const HARD_DISK = 3
strComputer = “.”
Set objWMIService = GetObject(”winmgmts:” _
& “{impersonationLevel=impersonate}!\\” & strComputer & “\root\cimv2″)
Set colDisks = objWMIService.ExecQuery _
(”Select [...]

Leave a Comment

Linux Server for ISPs and Hosters, What should be in it?

Linux Server for ISPs and Hosters, What should be in it?
Here’s a list of software that should be installed on your linux server.
1 – Linux ( Any version of Linux )
2 – Web Server : Apache 2.2
3 – Database : MySQL 5.0
4 – PHP5
5 – DNS Server : Bind9
6 – Mail Server : Postfix
7 – [...]

Leave a Comment

How to install VMware on Ubuntu Server?

How to install VMware on Ubuntu Server?
libraries for vmware
Code:
sudo apt-get install libx11-6 libx11-dev libxtst6 libxrender1 libxt6 zlib1g
Once, you have all the necessary libraries installed. You can just do a normal installation to vmware and the installation will go through.
VN:F [1.0.8_357]please wait…Rating: 0.0/10 (0 votes cast)

Leave a Comment