Pages

Tuesday, May 31, 2011

Installation Ubuntu Server

Installation Ubuntu Server
OLD Version -acpi=off (Advanced Configuration and Power Interface)
1.      Install to the hard disk
2.      Choose a language:
1.      English
3.      Choose your Location:
1.      Other Select Cambodia
4.      Your Keyboard is:
1.      American English
5.      Configure the Network:
-IP address:192.168.1.1
            -net mask 255.255.255.0
            -broadcast 192.168.1.255
            -gateway 192.168.1.1
      -Do not configure the network at this time
6.      Host name: (that means the same Computer name)
            -sv=server sv001
7.      HTTP proxy information (blank for none) that mean we want to use the internet.
-no
8.      Disk space to partition:
-Erase entire disk: IDE (that mean we want to use 1 partition)
9.      Partition disks:
            -yes
            -Manually edit partition table (that mean we want to create the new partition)
            -Chang the file system the mount point
                        -Like:
                        40GB
                        -100MB           /boot (ext2 primary) (Bootable flag: On)
                        -10GB              /        (ext3 primary)
                        -1GB                swap (swap primary)
                        -1GB                /tmp (ext2 logical) 
                        -2GB                /var  (ext3 logical) (if proxy server: ca. 40GB)
                  -Rest                /home (ext3 logical)
-ext2: If we save a file the hard disk doesn't store this file immediately.
-ext3: has the same problem then ext2, but instead storing files immediately, it writes the information to a journal.
10.  Finish partition and write change to disk
-yes
11.  Format the partition:
-no, keep existing data
-yes, format it
12.  Is the system clock set to UTC?
-yes
13.  Configure the Clock:
-yes
14.  Set up users and password:
-we type the password what ever you want
15.  Full name for the new user:
-no
16.  User name for your account:
-vtc=vocational training centre
17.  Choose a password for the new user:
-###########*
18.  Re_enter password to verify:
-###########*
19.  Finish the installation
            -continue
How to edit the IP Address
-sudo vim /etc/network/interfaces
And then assign the new IP Address it up you want.
# The primary network interface
auto eth0
iface eth0 inet static
                        address 192.168.1.3
                        netmask 255.255.255.0
                        gateway 192.168.1.254
                        network 192.168.1.0
                        broadcast 192.168.1.255
sudo vim /etc/resolv.conf (DNS-Server from ISP)
nameserver 203.189.128.1
nameserver 203.189.128.2
How to Shutdown and Restart Net Work Card
sudo /etc/init.d/networking restart
if we have problem with the installation
sudo apt-get -f dist-upgrade

No comments:

Post a Comment