ubuntu server 安装

1。光盘安装

2。通过代理上网

  a.Firefox代理上网

  这个最简单了,依次点击 edit->preferences-> Advanced->network->settings 在里面填写代理服务器的IP,Port就可以了。

  b.设置apt-get永久使用http代理

  sudo gedit /etc/apt/apt.conf在您的apt.conf文件中加入下面这行(根据你的实际情况替换yourproxyaddress和proxyport)。

  Acquire::http::Proxy "http://yourproxyaddress:proxyport";

3。安装桌面

sudo apt-get install x-window-system-core #安装x-windows的基础

sudo apt-get install gdm #安装登录管理器 还可以为kdm/xdm

sudo apt-get install ubuntu-desktop #安装Ubuntu的桌面 还可以为Kubunut-desktop/ Xubuntu-desktop

sudo apt-get install gnome-core #安装GNOME的一些基础

4. 安装中文显示:

sudo apt-get install language-pack-zh
sudo apt-get install language-pack-kde-zh
sudo apt-get install scim
sudo apt-get install ttf-wqy-zenhei

原文地址:https://www.cnblogs.com/zhoug2020/p/2430078.html