安装软件:
由于Server版本默认安装时什么都没有安装,需要软件时还得自己安装了。还好已经联上网络了,其他的就变得容易多了。为了安装方便,需要切换到root用户。另外,ISO文件也要加载到虚拟光驱上。
1) 更新
apt-get update
2) 安装gcc
apt-get install gcc
3) 安装ssh,安装后默认是启动的,这样就可以通过SecureCRT访问Ubuntu了,这也是我的主要目的。
apt-get install openssh-server openssh-client
停止ssh: /etc/init.d/ssh stop
启动ssh: /etc/init.d/ssh start
重启ssh: /etc/init.d/ssh restart
4) 安装jdk
apt-get install sun-java6-jdk
5) 安装Linux内核源代码
先安装几个工具吧:
apt-get install kernel-package libncurses5-dev fakeroot wget bzip2
cd /usr/src
wget http://www.kernel.org/pub/linux/ …… ux-2.6.22.6.tar.bz2
tar xjf linux-2.6.22.6.tar.bz2
ln -s linux-2.6.22.6 linux
6) 安装ftp服务器
apt-get instal vsftpd
vsftpd默认是禁止本地用户登陆的,所以需要修改它的配置/etc/vsftpd.conf
7) 安装Apache
apt-get install apache2
8) 安装lighttpd
apt-get install lighttpd
通过以上步骤,Ubuntu Server基本可以用了,其他软件安装起来很类似,感觉还比较方便的。