Ubuntu Server 8.0.4安装小记

 近日在IBM System X3550上安装Ubuntu Server 8.0.4 LTS 64bit,记录安装过程于此。

 

一.安装系统

    1.光盘启动,选择语言,我选中文;

    2.一路next;期间会选择网络,暂不设置;输入用户名/密码;

    3.在最后会选择安装什么服务器,我选择安装openSSH,因为将来还要远程登录。

 

二.配置网络(DHCP)

    1.编辑/etc/network/interfaces文件:

         sudo vi /etc/network/interfaces

    在末尾添加以下内容:

      # The primary network interface - use DHCP to find our address

      auto eth0

      iface eth0 inet dhcp

   2.使网络设置生效:

 

      sudo /etc/init.d/networking restart

      或:sudo dhclient eth0

   3.查看IP

      ifconfig

 

三.升级系统、安装常用软件

   1.替换原有的源(默认的源速度较慢,这里使用*的源,详细的源信息可以参考:http://wiki.ubuntu.org.cn/index.php?title=%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8%E6%88%91%E4%BB%AC%E6%8E%A8%E8%8D%90%E7%9A%84%E6%BA%90&variant=zh-cn#Hardy.288.04.29_.E7.89.88.E6.9C.AC

      sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak(备份)

      sudo vi /etc/apt/sources.list(修改文件,可以在windows上用文本编辑工具编辑)

     源信息:

deb http://tw.archive.ubuntu.com/ubuntu hardy main restricted universe multiverse deb http://tw.archive.ubuntu.com/ubuntu hardy-security main restricted universe multiverse deb http://tw.archive.ubuntu.com/ubuntu hardy-updates main restricted universe multiverse deb http://tw.archive.ubuntu.com/ubuntu hardy-backports main restricted universe multiverse deb http://tw.archive.ubuntu.com/ubuntu hardy-proposed main restricted universe multiverse deb-src http://tw.archive.ubuntu.com/ubuntu hardy main restricted universe multiverse deb-src http://tw.archive.ubuntu.com/ubuntu hardy-security main restricted universe multiverse deb-src http://tw.archive.ubuntu.com/ubuntu hardy-updates main restricted universe multiverse deb-src http://tw.archive.ubuntu.com/ubuntu hardy-backports main restricted universe multiverse deb-src http://tw.archive.ubuntu.com/ubuntu hardy-proposed main restricted universe multiverse

    2.升级系统:

        sudo apt-get update

        sudo apt-get dist-upgrade(耗时较长)

    3.安装常用软件:

        sudo apt-get install zip

        sudo apt-get install unzip

        sudo apt-get install libaio1 (装DB2会用到)

        sudo apt-get install libstdc++5 (装DB2会用到)

        sudo apt-get install xinit (xwindow用)

        sudo apt-get install gdm (xwindow用)

        sudo apt-get install ubuntu-desktop (xwindow用,耗时很长)

         问题:装完后应该能startx进入xWindow界面,但是实际上还有些问题,无法进入,原因未知。

 

四.安装其他软件

        Sun JDK 6_64bit、DB2 v9.7 ESE trial、Tomcat6.0.20

        JDK安装完后,其实就是解压缩,我把JDK挪到/opt/jdk1.6.0_16目录下,并且修改environment文件:

        sudo vi /etc/environment
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/opt/jdk1.6.0_16/bin" JAVA_HOME=/opt/jdk1.6.0_16

        DB2在字符模式安装,安装后需要走一套手工流程。

        tomcat直接解压缩即可。

 

 

五.更多技术支持见:http://wiki.ubuntu.org.cn/index.php


上一篇:用CSS/Javascript来判断浏览器类型


下一篇:Ubuntu 8.04下安装DB2方法