参考How to Install Ubuntu 14.04 with RAID 1 using desktop installer?
先配置网络
安装mdadm,需要在firefox和apt中设置代理,配置域名(如果软件源访问)
/dev/sd[ab]1作为md0,md0p1挂/
/dev/sdp[cd]1作为md1,md1p1挂/home
/dev/sde1,挂/data1
/dev/sdj1,一半挂在/tmp,一半作为swap
安装后的fstab
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/md0p1 during installation
UUID=3110b002-3c26-4380-981f-af8a59ee0668 / ext4 errors=remount-ro 0 1
# /home was on /dev/md1p1 during installation
UUID=2d5227fb-89b1-4210-b02e-046dd7c81a02 /home ext4 defaults 0 2
# /tmp was on /dev/sdj1 during installation
UUID=3e1071d7-314a-468f-902e-323ab3b67285 /tmp ext4 defaults 0 2
# swap was on /dev/sdj5 during installation
UUID=790256e8-a570-4057-95f5-49fd0e1d0495 none swap sw 0 0
/dev/sr0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
# /data1 was on /dev/sde1
UUID=be26c1e9-6c44-4c6a-b933-6f03f6788484 /data1 ext4 defaults 0 2
export http_proxy=http://proxynj.zte.com.cn:80
export https_proxy=http://proxynj.zte.com.cn:80
适用场景:git、apt-add-repository
需要使用firefox进行用户名登录
修改/etc/apt/apt.conf
Acquire::http::Proxy::mirrors.zte.com.cn DIRECT;
修改/etc/resolv.conf
nameserver 10.41.132.9
nameserver 10.41.70.9
将原来的软件配置备份为sources.list.public
sudo apt-add-repository ppa:ubuntu-mate-dev/ppa
sudo apt-add-repository ppa:ubuntu-mate-dev/trusty-mate
sudo apt-get update
sudo apt-get install ubuntu-mate-core ubuntu-mate-desktop
sudo vim /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
[SeatDefaults]
user-session=mate #将其改为mate, 并添加如下几行
allow-guest=false
greeter-show-manual-login=true
greeter-hide-users=true
[XDMCPServer]
enabled=true
sudo service lightdm restart
netstat -anp |grep :177 #确保UDP的177端口启动成功(XDMCP使用UDP 177端口)
udp 0 0 0.0.0.0:177 0.0.0.0: -
udp6 0 0 :::177 :::
后续操作通过xmanager进行
安装输入法之前需要先安装中文支持语言包
apt-get install $(check-language-support -l zh)
或者
apt-get install firefox-locale-zh-hans language-pack-gnome-zh-hans language-pack-zh-hans libreoffice-help-zh-cn libreoffice-help-zh-tw libreoffice-l10n-zh-cn libreoffice-l10n-zh-tw thunderbird-locale-zh-cn thunderbird-locale-zh-hans thunderbird-locale-zh-tw
apt-get install ibus-sunpinyin hunspell-en-ca myspell-en-gb openoffice.org-hyphenation mythes-en-au mythes-en-us myspell-en-au ibus-table-wubi thunderbird-locale-en-gb thunderbird-locale-en libreoffice-help-en-gb hyphen-en-us wbritish myspell-en-za fonts-arphic-ukai libreoffice-l10n-en-gb libreoffice-l10n-en-za thunderbird-locale-en-us
apt-get install fcitx-pinyin
add-apt-repository ppa:fcitx-team/stable
apt-get install fcitx
fcitx -r
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
apt-get install openssh-server
apt-get install meld rapidsvn git git-review tree curl lftp scite rapidsvn python-pip emma
wget -qO- http://gitlab.zte.com.cn/mirrors/tunasync/raw/zte/import-docker-pgp-key.sh | sudo sh
echo "deb http://mirrors.zte.com.cn/docker/apt/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-get remove lxc-docker*
sudo apt-get update
sudo apt-get install docker-engine
修改/etc/docker/daemon.json文件
{ "insecure-registries":["IP:PORT"] }
~/.pip/pip.conf
[global]
index-url=http://mirrors.zte.com.cn/pypi/simple
pip install docker-compose
从官网下载或从别处拷贝安装包,安装在/usr/lib/jvm中
java-6-oracle
java-7-oracle
java-8-oracle
从官网下载或从别处拷贝安装包,安装在/opt
从官网下载或从别处拷贝安装包,安装在/opt
从官网下载或从别处拷贝安装包,安装在/opt
要求版本号3.3以上
10.43.33.202 nexus.server2
usermod xxxx -g users
修改完成后ll ~,可看到所有文件的属组已变为users