ubuntu安装完成后应该做的工作

一、设置有线网络连接

临时获取DHCP地址可以用如下命令:
$ sudo dhclient eth0

长期网络设置则必须修改interfaces配置文件

  $ sudo gedit /etc/network/interfaces
  # 修改文件/etc/network/interfaces如下文

方式1:网卡通过DHCP自动获取IP地址
  #——————————————————————————-
  # This file describes the network interfaces available on your system
  # and how to activate them. For more information, see interfaces(5).
  #

  # The loopback network interface(配置环回口)
  auto lo                                       # 开机自动激lo接口
  iface lo inet loopback                        # 配置lo接口为环回口

  # The primary network interface (配置主网络接口)
  auto eth0                                     #开机自动激活eth0接口
  iface eth0 inet dhcp                          #配置eth0接口为DHCP自动获取
  #——————————————————————————-

方式2:网卡静态分配IP地址
  #——————————————————————————-
  # This file describes the network interfaces available on your system
  # and how to activate them. For more information, see interfaces(5).
  #

  # The loopback network interface(配置环回口)
  auto lo                                       # 开机自动激lo接口
  iface lo inet loopback                        # 配置lo接口为环回口

  # The primary network interface (配置主网络接口)
  auto eth0                                     # 开机自动激活eth0接口
  iface eth0 inet static                        # 配置eth0接口为静态设置IP地址
  address 10.16.3.99
  netmask 255.255.255.0
  network 10.16.3.0
  broadcast 10.16.3.255
  gateway 10.16.3.1
  #——————————————————————————-

设置完成,重启网络:

  $ sudo /etc/init.d/networking restart    # 重启网络

二、设置合理的更新源,关于最新的好用源大家自己去网上搜吧。
记住编辑命令NANO ,这个比VI好用太多了。至于gedit,默认是没有安装的,好像也不适合在命令行下运行。

三、通过网络更新系统
sudo apt-get update
sudo apt-get upgrade     # dist-upgrade 为更新发行版,慎用!
记得更新后常清理:
apt-get clean            # 清理更新包
apt-get autoclean        # 清理不完整的更新包

四、Server版本默认不带图形界面,为了方便管理,应该安装OpenSSH服务。
sudo apt-get install SSH
安装完成后可以用Putty或者Fterm等实现网络命令行管理。

五、常用的LAMP包、VSFTPD服务器的安装。
sudo apt-get install lamp-server^     #别忘记”^”哦!
sudo apt-get install vsftpd

注意:默认的LAMP包是没有开启Rewrite功能的,不支持WordPress的永久链接和其他类型伪静态。可以按照如下方法配置:
A、sudo a2enmod rewrite    #开启Rewrite模块
B、sudo nano /etc/apache2/sites-available/default   
  把所有 AllowOverride None 改成 AllowOverride All
C、sudo /etc/init.d/apache2 restart  #重启Apache使配置生效

六、安装强大的Web管理工具WebMin

Using the Webmin APT repository
(1)If you like to install and update Webmin via APT, edit the /etc/apt/sources.list file on your system and add the line :
deb http://download.webmin.com/download/repository sarge contrib
(2)You should also fetch and install my GPG key with which the repository is signed, with the commands : cd /tmpinstall
wget http://www.webmin.com/jcameron-key.asc
apt-key add jcameron-key.asc
(3)You will now be able to install with the commands :
apt-get update
apt-get install webmin

All dependencies should be resolved automatically.

5 comments on “ubuntu安装完成后应该做的工作

  1. 爱归零 07/21/2010 22:05

    牛哥用的什么输入法,五笔之外还需要个拼音输入法,

    • 菜牛 07/21/2010 22:14

      Ubuntu装输入法?这个不清楚!
      我没有装DeskTop,都是远程SSH管理的,安装的也都是英文环境。

      • 爱归零 07/21/2010 22:28

        谢谢,英文我那个不懂呀……只好中文环境下尝鲜吧

      • 菜牛 07/21/2010 22:46

        我是用它来做Web服务器和BT脱机下载的,所以平时并不适用。

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

Captcha Code