Posts

Showing posts from July, 2010

How to configure and maintain Additional Domain Controller step by step

Image
You can install additional domain controller, if you already have one main domain controller. Using additional domain controller, you can perform the proper load balancing as well as improve the reliability and availability of network resources. Perform the following steps to add additional domain controller to your windows 2003 server domain controller. There are some pre-requirement for install Additional Domain Controller. Operating system must be MS-Server 2003. One partition must be a NTFS partition with enough free space. Domain Controller must be configured DNS and TCP/IP settings must be configured. Computer must be connected properly (physically and logically) to other computers. Server end Configurations for Additional Domain Controller First click on start button to open Run option and type here "dcpromo" then press Ok button. Now windows active directory welcome page will appear, click Next button. ...

Ubuntu and HP LaserJet 1020 step-by-step

First get necessary tools: sudo apt-get install build-essential then download foo2zjs drivers wget -O foo2zjs.tar.gz http://foo2zjs.rkkda.com/foo2zjs.tar.gz untar tar -zxvf foo2zjs.tar.gz cd foo2zjs uninstall previous isntallations: sudo make uninstall build: make get HP LJ1020 firmware file: ./getweb 1020 install printers linux support: sudo make install install-hotplug cups

How to install OpenOffice.org 3 on Ubuntu 8.10

Ubuntu is coming by default with OpenOffice 2.4, so, I decided to upgrade to version 3. To do this, there are two methods, either install it from “http://ppa.launchpad.net/openoffice-pkgs/ubuntu intrepid main deb” repository or manually from files directly downloaded on the OpenOffice web site. I started by trying the installation from the repository because it’s much simpler. Here is how: First method : First, we need to remove OpenOffice 2.4 from our computer: sudo apt-get --purge remove openoffice.org-core After, we must add the repository “deb http://ppa.launchpad.net/openoffice-pkgs/ubuntu intrepid main” without the quotes to the file “/etc/apt/sources.list”. You can use gedit, kate or your favorite text editor like this: gksudo gedit /etc/apt/sources.list or kdesudo kate /etc/apt/sources.list We now need to add the public key of the repository : sudo wget http://monespaceperso.org/blog-en/files_blog/key_ppa_office sudo apt-key add key_ppa_office Once done, we must upda...

How To : Install Webmin In Ubuntu

Tired of using texts to administrate your ubuntu server ?. This How To will help you to Install Webmin in your Ubuntu box and make smooth administration. What is Webmin ? Webmin is a web-based interface for system administration in Unix or Unix like (i mean linux) systems. By using webmin in any modern web browser you can setup following things: User accounts Apache DNS File sharing etc., How To Install Webmin in Ubuntu ? To run webmin you need some perl libraries. Use the below code to install those libraries: sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl Now download the webmin Debian package: wget http://www.webmin.com/download/deb/webmin-current.deb Install it using the command: sudo dpkg -i How To Install Webmin in Ubuntu ? To run webmin you need some perl libraries. Use the below code to install those libraries: sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl...