? ??????????????Take My Breath Away? ????? ?? ???Rating: 4.4 (13 Ratings)??71 Grabs Today. 12572 Total Gra
bs. ??????Preview?? | ??Get the Code?? ?? ?????Our Hearts on Thin Ice? ????? ?? ???Rating: 5.0 (1 Rating)??52 Grabs Today. 4978 Total Grabs. ??????Preview?? | ??Get the Code?? ?? ??? BLOGGER TEMPLATES AND TWITTER BACKGROUNDS ?

Thursday, September 17, 2009

INSTALLATION PROCESS OPEN SOURCE

Install Ubuntu

Start computer and boot from CD.

Select Install to hard drive.

Select your language, country, and keyboard layout (i.e. English, United States, American English)

Select manually configure and set an IP address (or autoconfig if you don't know).

Enter your servername (i.e. moodletest)

Select to manually edit the partition table. I’m doing my testing on a standard 40GB harddrive and will modify these sizes for production.

/boot ext3 200MB bootable (may need to be under cylinder 1024 on your harddrive to be bootable)
/ ext3 10GB (files are relatively static)
swap 4GB (4xRAM if you don't have much memory, down to 1xRAM if you have gobs of memory)
/var ext3 26GB (variable content – uses rest of the drive)

Select your timezone. (i.e. Central)

Set clock to Universal Time.

Enter Administrators full name. (i.e. Joe Smith)

Enter account name. (i.e. joesmith)

Enter a secure password. (‘abcde’ is not a good one!)

Let the computer restart.

Log in your account.

Edit the /etc/apt/sources.list file. Remove the # mark on lines 22 and 38 to enable access to the universe package source and universe security updates. You will need to re-enter your account password when sudo asks for it.

sudo nano /etc/apt/sources.list
Now to get all the security updates.

sudo apt-get update

sudo apt-get dselect-upgrade
Normally you would just use sudo apt-get upgrade.

And reboot to run on the new kernel!

sudo reboot
Install MySQL (skip Postgresql)
At this point we'll need to log in again to the server and type:

sudo apt-get install mysql-server php5-mysql
Press Y to continue the install.


Replace the following string NewRootDatabasePassword with a secure password of your own choosing.

There is no space between the -p and the password on the second command.

mysqladmin -u root password NewRootDatabasePassword

mysqladmin -u root -h localhost password NewRootDatabasePassword -pNewRootDatabasePassword
We now need to create the Moodle database and Moodle user in MySQL.

The mysql command will prompt for your NewRootDatabasePassword (from above). Replace NewMoodleDatabasePassword with a secure password of your own choosing.

mysql -u root -p
> CREATE DATABASE moodle DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
> GRANT ALL PRIVILEGES ON moodle.* TO moodleuser@localhost IDENTIFIED BY 'NewMoodleDatabasePassword';
> GRANT SELECT,LOCK TABLES on moodle.* TO moodlebackup@localhost IDENTIFIED BY 'MoodleBackupPassword';
> FLUSH PRIVILEGES;
> QUIT
The above also creates a backup user moodlebackup so that you can use mysqldump to make database backups without accident.

Install Postgresql (skip MySQL)
At this point we'll need to log in again to the server and type:

sudo apt-get install postgresql-8.1 php5-pgsql
Press Y to continue the install.

We now need to create the database user 'moodleuser'.

sudo -u postgres createuser -D -A -P moodleuser
Enter in a NewMoodleDatabasePassword here, then answer 'N' to the question.

We now need to create the database 'moodle' for the user 'moodleuser'. You'll need to enter the password that you just created.

sudo -u postgres createdb -E utf8 -O moodleuser moodle
Let's now secure the postgresql database with an admin password.

sudo -u postgres psql template1
# ALTER USER postgres WITH PASSWORD 'NewAdminDatabasePassword';
# \q
Edit the file '/etc/postgresql/8.1/main/pg_hba.conf' and on line 79 change the words ident sameuser to md5.

sudo nano /etc/postgresql/8.1/main/pg_hba.conf
Restart the database so everything is fine.

sudo /etc/init.d/postgresql-8.1 restart
Install Apache
The following mod-security, ldap, and odbc libraries are optional.

sudo apt-get install apache2 libapache2-mod-php5 php5-gd

sudo apt-get install libapache2-mod-security php5-ldap php5-odbc
Restart Apache

sudo /etc/init.d/apache2 restart
Note: To install Moodle 2.0 for the current ubuntu, you need to install PHP from an external repository --Olli Savolainen 19:28, 10 April 2009 (UTC)

Install other software
On the command line, type:

sudo apt-get install openssh-server unattended-upgrades

sudo apt-get install unzip zip aspell-en aspell-fr aspell-de aspell-es

sudo apt-get install curl php5-curl php5-xmlrpc

sudo apt-get install clamav-base clamav-freshclam clamav
Press Y to continue the install after each of these apt-get commands.

The clamav package will support virus checking on file uploads into Moodle. May have to run it again to configure properly.

Additional languages are available for aspell.

Install Moodle
On the command line, type:

cd /var/www

sudo wget http://download.moodle.org/stable19/moodle-latest-19.tgz

sudo tar -zxf moodle-latest-19.tgz


----
in ubuntu 8.04 it should be:
sudo tar zxf moodle-latest-19.tgz
----

sudo mkdir /var/moodledata

sudo chown -R www-data:www-data /var/moodledata
where www-data is whatever user/group was created automatically when apache was installed.
We now need to edit the location of the default web site. On lines five and ten, replace /var/www/ with /var/www/moodle/. Restart Apache. (See page comments for more details on this instruction.)

sudo nano /etc/apache2/sites-available/default

sudo /etc/init.d/apache2 restart
Configure Moodle website
ifconfig (look for your server’s ip address on the 2nd line).

On another computer open a web browser and put in your server address. Make sure your web browser is set to accept cookies.

Complete the Moodle install using a secure username and password.

Go to a bar for a few hours.

Come back and tell your boss that you FINALLY got the test server running.

INSTALLATION PROCESS OPEN SOURCE

LINUX


INSTALLATION

This is a step-by-step installation procedure for Linux, specifically Ubuntu 8.04. This is only for those who are doing this for the first time. And those who have installed any other OS before will feel this really useless. But for the “others” who have not installed any OS, I hope this will be useful. All those who have previous experience in installation please go through this and point out the mistakes. I am trying to explain the installation procedure by which your can use dual booting, i.e. you can use both windows and Linux in the same computer. For that the computer should already have windows installed in it. You can’t install windows after linux and then use linux because Windows doesn’t detect Linux. But there is a procedure to do that too. By using SuperGRUB, you can do that. But I have not used it and knows nothing about how to do it. So its better to leave it at that. I heard its not that difficult. Arrange for a CD/DVD of Ubuntu 8.04 or the latest version available. It is sent for free to home for personal use by Canonical.Search “Ubuntu ShipIt” in Google for more details. Or download the image of Ubuntu 8.04 from net. Again search in Google for image links. I would recommend using torrent for downloading. Write the image to a CD/DVD. Turn on the computer and start the BIOS edit. Usually its DEL,F1,F2,… key to start the BIOS. There change the BOOT device priority and set CD Drive as NO.1. In most computers it will be the default setting. Save and quit BIOS, insert the CD and restart. The black screen with a choice for language appears. Select English or use others only if you are very comfortable with that language. I recommend english.

The computer will now boot from the CD/DVD. Now the black screen below will come. Click on the Install Ubuntu button.

Wait for some time while the Linux Kernel loading box cruises to 100%. Then the real installation procedures.begin. Its a 7 step process.



STEP 1:- The first step is the language selection. As usual select the English option. The click on the forward button to proceed.

STEP 2:- In this step you see a world map with a lots of dot and a question “Where are you”. They are asking for the time zone of your location. You just got to click on the the red dot near your place or on the drop down menu select it. For Indians the only option is Kolkatta GMT+5:30. Proceed FORWARD.

STEP 3:- The third step is the keyboard layout. Just click on your keyboard layout. In India we use the USA layout. If yours is different, you just got to select it and type on the box given below and see whether the same key as you press is appearing on the screen. Its another of the silly steps. Again FORWARD.

STEP 4:-If you ask me, this is the only difficult step of the whole installation procedure. But its not that difficult. After you do this once, its a piece of cake. Its a bit dangerous step because one mistake and you can lose your complete data in the hard disk. You get an option Guided or Manual. In guided they help you do it, but I would recommend you to take Manual because you get more flexibility here. When you press forward they scan the disk and the partition table comes. This table has the Device partitions, its type, mount point, format option and size used. Linux’s file system is ext3 and windows use fat32 and NTFS. Linux detects all these file systems. But windows doesn’t detect ext3. So for dual use its always good to use ext3 for only one partition in which Linux is installed and to use fat32 for all other partitions. Leave the partition where Windows is installed as such if you wish to facilitate dual boot. You can remove the rest of partitions and create new partitions. Create one partition in ext3 format and set the mount point as ‘/’ backslash. Its better to give around 5 GB for this partition. A swap area is also needed. The size of this should be around double of the size of your RAM. For most computers 1GB swap area would be sufficient. Create that partition, set its type as Swap area. This should be enough. Now press the FORWARD.

STEP 5:- This is again another of the simple step. “Who are you”. Give here your name, the login name and password for your account in the computer and a computer name, which is the name of your computer as seen by other computers in your network. Now click on Forward.

STEP 6:- Step 6 unfortunately has no screenshots. But again, this too is a very simple step. They ask whether you want to migrate your user settings like user accounts from your existing OS which would be Windows in most cases. I never select this option. But if its needed you can do it.

STEP 7:- “Ready to Install”. The most beautiful step of them all. You see all the selections you have made in the first six method and see an install button. You can verify them, change them if needed by going back. When all changes have been made, press on INSTALL button.

This should be it. Now they start the installation procedures. They set up the partitions, format it. Copies the necessary OS files into the / directory or root directory. It should take some time, around 15 min in the computer in which I installed.

When it reaches 100% you see this screen given below. ITS NOW TIME FOR CELEBRATIONS

Hang on!! Just a moment before the celebrations. They ask you to restart the machine before that. So click on the Restart now option and wait for restarting. You can remove the CD/DVD this time before booting because CD/DVD drive is

given the first priority. The booting up procedures can be seen now. Unlike in windows where you see a loading windows screen, here you see all the steps that are being done. There is also an option of booting like windows too. The login screen comes now. Login using the username and password given during installation.

The linux screen appears. The mind blowing beauty is bound to leave you speechless for a little while. But don’t be so for long.

START ENJOYING THE WONDERFUL OS. AND REMEMBER INSTALLATION SHOULD NOT BE TAKEN AS A HARD JOB. ITS QUITE AN INTERESTING JOB. WHENEVER NEW VERSIONS GET RELEASED TRY IT. Debian, Ubuntu, Mandriva, Red Hat, Kubuntu, Mint etc. are some of the mostly used Linux versions. From my limited knowledge I have felt Ubuntu as the most user-friendly linux OS, especially for those who are new to Linux. For programmers and computer students I would recommend Debian. “WELCOME TO THE FREE WORLD”.

INSTALLATION PROCESS

WINDOWS VISTA INSTALLATION

The best way to install Windows Vista is to do a clean install. It is not difficult to perform a clean installation. Before you perform the installation I recommend that you check Windows Vista System Requirments list to ensure that your hardware is supported by Vista. If you dont have Windows Vista drivers for all your hardware, it is a good idea to download all the drivers from the hardware manufacturers website and save all the necessary drivers on a CD-R before you start the installation.



Windows Vista DVD is bootable. In order to boot from the DVD you need to set the boot sequence. Look for the boot sequence under your BIOS setup and make sure that the first boot device is set to CD-ROM/DVD-ROM.



Step 1 - Place Windows Vista DVD in your dvd-rom drive and start your PC. Windows Vista will start to boot up and you will get the following progress bar.

Step 2 - The next screen allows you to setup your language, time and currency format, keyboard or input method. Choose your required settings and click next to continue.

Step 3 - The next screen allows you to install or repair Windows Vista. Since we are doing a fresh install we will click on "install now".

Step 4 - You can now type the product key that came with your Windows vista.

Step 5 - If you do not enter the product key you can still proceed with the installation in which case Windows will ask you which version of Vista you have purchased. Windows Vista Home Basic, Home Premium, Ultimate, Business etc. Select the version you have purchased and click next.



Please note, although you can select any version of Windows and proceed to next stage. It is not good idea to select a different version to the one you have purchased becuase you will not be able to activate Windows at a later stage. Windows Vista can detect which version you have purchased once you enter your product key.

Step 6 - Tick "I accept the licence terms" and press next.

Step 7 - Choose the type of installation you want to perform. You will notice that upgrade option is disabled as we have booted from the DVD-R. Therefore we can only select Custom (advanced) option which basicly installs a clean copy of Windows from scratch.

Step 8 - Choose where you would like to install Windows Vista. If you have a new upartitioned hard drive you would get your hard drive listed as shown on the image below. If have have an old hard drive with data or other partitions it will show up as logical drives. You can select the drive options (advaced) to format, delete, or create new partions. Because I am using a single new hard drive i will select next to continue. Windows will create a partition and format it using NTFS files system.

Step 9 - Windows starts the installation process and starts copying all the necessary files to your hard drive as shown on the image below. It will go through various stages of the setup and will reboot your system few times. When your PC reboots it attempts to boot from CD as its the first boot device. Do not press any key during the boot prompt so Windows Vista will continue with the installation by booting from your hard drive.


Step 10 - After installation copy process is complete you are presented with the Setup Windows dialogue box as show below. At this stage you need to choose a user name, password and a picture for your user account. The account you create here is the Administrator account which is the main account for your Windows Vista that has all the privilages. Click next continue.

Step 11 - Now you need to choose your computer name and desktop background. Click next to continue.

Step 12 - Choose wether your want to Help protect Windows automatically. Select "Use recommened settings" to continue

Step 13 - Review your time and date settings. Select your time zone, correct the date and time and click next to continue.

Step 14 - Windows now runs a benchmark type of application which checks the performance of your system. You will see a status bar at bottom which shows the progress. Once the process is complete you will be presented with the logon screen.

Step 15 - Finally you have the logon screen. Just type your password and press enter or click on the arrow to logon to Windows Vista for the first time.

Step 16 - Soon as you logon you will be presented with welcome centre. You can use the welcome centre to configure, customise, and update Windows vista.

Step 17 - Finally you need to check if all your hardware has been detected correctly. You can do so by checking your device manager. To access device manager click Start menu -> Control panel -> System -> Device manager. You will see all your hardware listed as shown below. You need to check if you have any yellow exclamtion marks next to the name of the device similar to "USB 10/100 LAN" on image below. This indicates the driver has not been installed for this device.


At this stage you need to install Windows Vista drivers by double clicking on "USB 10/100 LAN" or your device. The properties dialog box will appear. Click on Reinstall Driver. Then you can choose wether you want to install the driver from the internet (if available) or install manually from a CD or other media


Once you have removed all the yellow exclamtion marks from the device manager your Windows Vista configuration would be fully complete.


INSTALLATION PROCESS

ASC Windows 2000 Installation Process
Prerequisites for installation:
CD and floppies:
To install Windows 2000, the installation CD is needed. The instructions below list how to boot directly from the CD. However, if desired or necessary, the four floppies can be created by opening :\bootdisk\makeboot from the install CD and following the on screen instructions.
Cards and Drivers
During the installation process, a number of machine dependant drivers will be needed. Given the relative newness of Windows 2000, native drivers for most hardware exists. Other hardware drivers or updates to native drivers are available through Windows Update. Before beginning, though, make sure to know what kind of cards and drivers are necessary for the computer's
Ethernet Card
Video Card
Sound Card
Hard Drive Controller Card
For most new computers, these drivers will be included on CD or floppy. For reconditioned machines, finding the type of card may involve calling Micron or opening up the machine and searching for the drivers on the internet.
Computer name
The install will request a name for the computer. The current ASC convention is to name computers AAS####, with the numbers running sequentially. Before installing, call Hannah or Blaine at the ASC help desk 660-3186 to get the next name on the list.
Nonstandard Issues
Most of the instructions for installations involve accepting the defaults. An attempt will be made to point out these non-standard or ASC specific instructions by displaying them in red.
----------------------------------------------------------------------------------------------
1.BIOS Settings

Plug and Play needs to be enabled in the BIOS for Windows 2000 to function correctly.
For most machines, Plug and Play will be enabled by default. However, machines being upgraded from Windows NT should have had Plug and Play disabled. All machines should be checked, but these machines in particular.
To do this, turn on the computer and enter Setup by pressing some key, usually Delete or F2. Some very old machines will not display a key to press to enter Setup. In these cases, boot to DOS and try CTRL-ALT-S or ALT-S.
Once in, from the CMOS Setup, find the toggle for Plug and Play OS. Most machines can enable Plug and Play or not. In this case, set it to Yes. On the newer Microns or laptops, this toggle will display a list of operating systems. Choose the one corresponding to Windows 2000.
The install will proceed from CD, so the boot order needs to include CDROM.
The boot order also can be found in the BIOS settings, usually the BIOS Features Setup.
Ideally, the order should be A, CDROM, C. In practice, as long as the floppy and CD come before the hard drive, this will be sufficient for installation.
Note: The newest Microns have an option for choosing the boot device by pressing Esc at the Micron splash screen. Otherwise, if a bootable CD is in the drive, and boot from CD comes before the hard drive in the order, the message "Press any key to boot from CD" will appear for a few seconds.
After setting Plug and Play and boot order, save the changes to the BIOS.

2.Booting from CD

After saving changes to BIOS, insert the Windows 2000 Professional Installation CD and boot the computer from the CD.
After a few seconds of inspecting hardware, a blue, text-based "Windows 2000 Setup" screen will appear.
At the bottom, the message Press F6 if you need to install a third party SCSI or RAID driver... will appear. Press F6 if necessary, and install the drivers.
Note: This F6 step is necessary to install the Ultra driver.
If the computer contains no SCSI devices, the message will disappear after a few seconds and setup will begin loading files.
After finishing loading, a "Welcome to Setup" screen will appear, listing three installation options. Hit Enter to begin setting up Windows 2000.
The "Licensing Agreement" will appear. Click F8 to accept.
Note: Unlike Windows NT, it is not necessary to scroll to the bottom before accepting the agreement.

3.Disk Partitions

After accepting the licensing agreement, a list of partitions will appear.
Delete the existing partitions one at a time by highlighting the partition and pressing D, Enter then L. Repeat until all partitions have been deleted and only unpartitioned space remains.
Note: NTFS for Windows 2000 is different from NTFS for Windows NT. So even existing NTFS partitions need to be deleted and recreated.
Press Enter to choose the unpartitioned space for Windows 2000 installation. With this option, the partition will be made as large as possible in the unpartitioned space.
Note: Unlike Windows NT, there is not a 2GB limit on the boot partition in Windows 2000.
A "Formatting the partition..." screen will appear. Unlike Windows NT, the NTFS file system will be the default. Press Enter to begin formatting the partition with NTFS.
Note: *** We use NTFS instead of the FAT for security reasons. ***
After formatting, a "Setup is copying files..." screen appears as installation files are written to the hard drive.
Once finished copying, the installer will begin a 15 second countdown to automatic reboot.

4.Workstation Setup Part 2

After restarting, allow the machine to boot to the hard drive. This may require removing the CD.
After rebooting, a "Windows 2000 Professional Setup" window will appear. Click Next, or wait a few seconds for the Setup Wizard to begin on its own
After begining the wizard, an "Installing Devices" window will appear. Using its native drivers, the installer will begin installing the devices it finds.
Once the devices install, a "Regional Settings" window appears. Click Next to select the default US English locale and keyboard.
A "Personalize Your Software" window appears. Under "Name:" enter A&S Computing and under "Organization:" enter Duke University. Click Next.
A "Your Product Key" window will appear. Under "Product Key:" enter the 25 character key on the Installer jewel case. Then click Next.
A "Computer Name and Administrator Password" window appears.
Microsoft will attempt to provide a name. Instead, next to "Computer Name:" enter the name AAS#### you were given before beginning the 2000 installation.
Next to "Administrative password:" type the standard administrative password and again next to "Confirm password."
Click Next to continue.
A "Date and Time Settings" window will appear.
Next to "Date & Time," the date and time can be set if incorrect.
Next to "Time Zone," select (GMT - 5:00) Eastern Time (US&Canada) from the drop down menu.
Click Next to continue.

5.Networking Setup

A "Network Settings" window will appear while the installer installs the Windows 2000 native network card drivers.
After the drivers install, a "Choose settings" window will appear. Select Custom settings and click Next.
A "Network Components" window will appear. Highlight Internet Protocol (TCP/IP) and click Properties.
An "Internet Protocol (TCP/IP) Properties" window will appear.
Click Use the following IP address:. The options below will blacken in.
Next to "IP Address:" enter a temporary test IP. The computer's eventual permanent IP will be entered upon delivery to the user. Test IP's differ from subnet to subnet. For a list of test IP's in a given subnet call ASC at 660-3186.
Next to "Subnet Mask:" enter 255.255.255.0.
Next to "Default Gateway:" enter 152.3.XX.250 where XX is the subnet of the test IP. Again this will probably change upon delivery.
Click Advanced to enter other networking information.
An "Advanced TCP/IP Settings" window appears.
Click the DNS tab.
Under "DNS Service Addresses" click Add.
A "TCP/IP DNS Server" window appears. Enter 152.3.250.1 and click Add
Repeat and add 152.3.250.2 and 128.109.131.40.
Next to "DNS suffix for this connection:" enter aas.duke.edu.
Uncheck Register this connection's addresses in DNS.
Click the WINS tab.
Under "WINS Addresses" click Add.
A "TCP/IP WINS Server" window appears. Enter 152.3.10.232 and click Add
Repeat and add 152.3.28.232.
Uncheck Enable LMHOSTS Lookup.
Nothing needs changing under the "Options" tab. Click OK to close the Advanced TCP/IP Properties window.
The "Internet Protocols (TCP/IP) Properties" window will reappear. Click OK to finish TCP/IP properties.
The "Network Components" window will reappear.
Optional install: The IPX/SPX protocol can be installed at this time. IPX is only necessary for Novell, and the Novell Client installer will install it automatically, if it is not present. Whenever IPX is installed, however, the frame type needs to be changed to Ethernet II.
Click Next to finish installing and configuring Network Components.

6.Machine Domain Account

A "Workgroup or Computer Domain" window will appear. Eventually, ASC would like all NT and W2K machines to belong to the AASNT domain. This leaves a couple of options at this juncture:
If you have the capability to create domain accounts, and the machine is a one-time set up, create a computer account in the domain.
Click Yes, make this computer a member of the following domain:.
Below Workgroup or computer domain enter AASNT.
Click Next.
A "Join Computer to AASNT Domain" window will appear. Enter your NT domain user name and password and click OK.
If you do not have the capability to create domain accounts, or if multiple machines will be imaged from this one machine, leave the machine in a workgroup.
Click No, this computer is ... on a network without a domain.
Below Workgroup or computer domain enter AASNT.
Click Next.

7.Final Tasks

An "Installing Components" window will appear.
After the last networking components install, a "Performing Final Tasks" window will appear.
A checklist will mark the final tasks before installation of Windows 2000 completes.
A "Completing the Windows 2000 Setup Wizard" window appears. Remove any floppies and CDs and click Finish.

8.Network Identification Wizard

After reboot, a "Network Identification Wizard" window will appear.
Click Next to continue with the Wizard.
Different options will appear, depending on the machine's AASNT domain status.
Domain: A "User Account" window will appear.
Click Do not add a user at this time.
Click Next.
Workgroup: A "Users of this computer" window will appear.
Check Users must enter a user name and password....
Click Next.
A "Completeing the Network Identification Wizard" window will appear. Click Finish

9.Logging In

A "Welcome to Windows" window will appear. Click ctrl-alt-delete to bring up the login screen.
The login screen will default to Administrator as the user. Unlike Windows NT, even if the machine is a member of the AASNT domain, the default login will be to AAS#### (this computer). To change this, if desired, click Options.
Log into the machine as Administrator using the password selected during setup.
A "Getting Started with Windows 2000" window will appear. Uncheck Show this screen at startup and click Exit to begin using Windows 2000

10.Changing Virtual Memory

Under the "Start" menu, go to Settings and click Control Panel. Under the "Control Panel" window, open System.
A "System Properties" window will appear. Click the Advanced tab, then click Performance Options.
A "Performance Options" window will appear. Click Change.
A "Virtual Memory" window will appear. The C: drive will probably be the only disk. If not, under "Drive" select the C: drive.
Under "Paging file size for selected drive" change Initial Size to match Maximum Size. Then click Set.
Click OK to close the "Virtual Memory" window, OK to close the "Performance Options" window, then OK to close the "System Properties" window. Unlike NT, a reboot should not be necessary.

11.Internet Explorer 5.5

Windows 2000 installs with Internet Explorer (IE) 5.0. For security reasons, IE needs to be upgraded to 5.5 SP1. Fortunately, IE contains a Windows Update tool to make this easy, so open Internet Explorer
Running IE for the first time causes the Internet Connection Wizard to begin.
A "Welcome to the Internet Connection Wizard" window will appear. Check I want to set up my Internet connection manually... and click Next.
A "Setting up your Internet connection" window will appear. Check I connect through a local area network (LAN) and click Next.
A "Local area network Internet configuration" window will appear. Check Automatic discovery... and click Next.
A "Set Up Your Internet Mail Account" window will appear. Check No and click Next.
A "Completing the Internet Connection Wizard" window will appear. Click Finish to start IE. The "Connect to the Internet" shortcut should disappear from the desktop.
Once IE starts, under Tools, click Windows Update.
A "Security Warning" window appears like below: (the date may change as Windows Update writes new packages.)
Let your own paranoia guide you about "Always trust content from Microsoft." Click Yes to continue.
After checking for available updates, a list of updates will appear. By default the "Critical Updates Package" will be checked. Scroll down and click Internet Explorer 5.5 Service Pack 1 and Internet Tools.
The following message will appear
Click OK.
This will check "Internet Explorer 5.5" and uncheck and gray out every other option. Click Download to select IE5.5.
A "Download Checklist" frame will appear in the browser window. Scroll down and click Start Download.
A "License Agreement" window will appear. Click Yes to accept the agreement and begin the download of the installer.
A "Welcome to Setup for Internet Explorer..." window will appear. Check I accept the agreement and click Next.
After initializing, a "Windows 2000 Install" window will appear. Click Next to begin installing the only option available. The program will begin downloading and installing.
A reboot prompt will appear. Click Yes to reboot and complete the installation

12.Windows 2000 Service Pack 1 (SP1)

Once Internet Explorer 5.5 (IE 5.5) is installed, restart IE 5.5 and click Windows Update under the Tools menu again.
The "Windows Update" home page will appear. In the left hand frame, under Windows Update Homepage click Product Updates.
After checking for available updates, a list of updates will appear. By default the "Critical Updates Package" will be checked. Scroll down and click Windows 2000 Service Pack 1.
The following message will appear:
Click OK.
This will check "Windows 2000 Service Pack 1" and uncheck and gray out every other option. Click Download to select SP1.
A "Download Checklist" frame will appear in the browser window. Scroll down and click Start Download.
A "License Agreement" window will appear. Click Yes to accept the agreement and begin the download of the installer.
A "Windows 2000 Service Pack Setup" window will appear. Click Accept the Licensing Agreement.
The "Install" button will blacken in. Click Install to start.
An "Installation complete" window will appear when files have finsihed copying. Click Exit.
A reboot prompt will appear. Click Yes to reboot and complete the installation.

13.Critical Updates

Once Service Pack 1 (SP1) for Windows 2000 is installed, again go to Product Updates, under Tools, Windows Update in IE5.5.
By default, the Critical Updates Package will be checked. Scroll down and also select Windows 2000 Compatibility Issues and High Encryption Pack for Windows 2000.
The bottom of the list will include any updated drivers for the hardware detected on the machine. Click these updated drivers, if they exist.
Click Download to select all the checked packages for download.
A "Download Checklist" frame will appear in the browser window. Scroll down and click Start Download.
A "License Agreement" window will appear. Click Yes to accept the agreement and begin the download of the installer.
After the files download, a reboot prompt will appear. Click Yes to reboot and complete the installation.
Note: Windows Update is the main way to update and install patches for Windows 2000 and other Microsoft products. Critical updates and other security measures come out from time to time, thus Windows Update will need to be run periodically to ensure the securest possible machine.

14.Other Hardware Drivers

Once Windows 2000 and Internet Explorer have been patched, install other hardware controllers. These include software like WinDVD player, Iomega Tools for Jaz and Zip drives, and EZ CD Creator for Rewritable CD players.
Next, install any audio, video, or controller card drivers for Windows 2000 that came with the machine that may be newer than the native drivers and not included in Window Update.

15.Install Applications

Standard applications as well as user specified applications need to be installed.
Note: Shortcuts on the desktop need to be accessable to everyone. Some installation programs create a desktop shortcut, but place it in the Administrator desktop folder. If the shortcut is not in the All Users desktop folder, it probably does not have the proper permissions for all users to see and execute it. To ensure everyone can see and use the shortcut, or any time a shortcuts is created, right click on the executable program. From the menu that appears, click Create Shortcut. Then copy the Shortcut to ... to the directory C:\Documents and Settings\Profiles\All Users\Desktop and rename it, if desired.
These standard applications need installing and configuring:
Novell 4.8, WinZip 8.0, McAfee 4.5 w/SP, NS4.76+Real Player, Teraterm, WS_FTP, Acrobat Reader 4.05, stunnel, VNC.
Note: Many of these involve changing permissions or other attention to function correctly with Windows 2000. Check the individual application installation instructions (coming soon!) for W2K peculiarities.
These optional applications may need to be installed, depending on the user needs:
MS Office, Word Perfect, Meeting Maker, Filemaker, Dreamweaver, PageMaker, PhotoShop, mail clients.

16.Post Installation Tips and Tricks

After installation, these post-installation processes need to run:
Manipulating domain users and groups.
Setting up security and auditing policies.
Optional Windows 2000 installs, including TCP/IP printing alternative.
Registry hacks, backing up registry, ERD.