Ubuntu Install

安装统一开发环境

安装系统,配置Raid1

参考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

网络配置

设置代理

FireFox设置代理

命令行代理
export http_proxy=http://proxynj.zte.com.cn:80
export https_proxy=http://proxynj.zte.com.cn:80

适用场景:git、apt-add-repository

需要使用firefox进行用户名登录

  • apt代理

    修改/etc/apt/apt.conf

Acquire::http::Proxy::mirrors.zte.com.cn DIRECT;
  • 配置dns

    修改/etc/resolv.conf

nameserver 10.41.132.9
nameserver 10.41.70.9
  • 将apt软件源改为mirrors.zte.com.cn

  • 将原来的软件配置备份为sources.list.public

  • 建立新配置,使用mirrors.zte.com.cn,可从其他机器拷贝/etc/apt/sources.list
  • 更新apt-get update

安装ubuntu-mate

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

参考Mate Install

启动xdmcp

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

  • 如果没有fcitx,按如下安装(可选)

add-apt-repository ppa:fcitx-team/stable

apt-get install fcitx

fcitx -r

参考Install Ubuntu

安装sublime text

sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer

安装ssh

apt-get install openssh-server

安装其他软件

apt-get install meld rapidsvn git git-review tree curl lftp scite rapidsvn python-pip emma

安装docker

  • 首先信任 Docker 的 GPG 公钥

wget -qO- http://gitlab.zte.com.cn/mirrors/tunasync/raw/zte/import-docker-pgp-key.sh | sudo sh
  • 再根据你的 Ubuntu 版本,执行文本框内的命令,不同版本的指令可能略有不同

echo "deb http://mirrors.zte.com.cn/docker/apt/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.list
  • 如果你安装过 lxc-docker,请先删除

sudo apt-get remove lxc-docker*
  • 安装 docker:

sudo apt-get update
sudo apt-get install docker-engine
  • 设置支持私有仓库 /etc/default/docker中增加一行

    修改/etc/docker/daemon.json文件

 { "insecure-registries":["IP:PORT"] }

设置pip

~/.pip/pip.conf

[global]                                                                        
index-url=http://mirrors.zte.com.cn/pypi/simple

安装docker-compose

pip install docker-compose

安装oracle jdk

从官网下载或从别处拷贝安装包,安装在/usr/lib/jvm中

java-6-oracle
java-7-oracle
java-8-oracle

安装intellij

从官网下载或从别处拷贝安装包,安装在/opt

安装eclipse

从官网下载或从别处拷贝安装包,安装在/opt

安装maven

从官网下载或从别处拷贝安装包,安装在/opt

要求版本号3.3以上

  • 设置公共 在/usr/share/.m2处放置公共settings.xml,供其他用户更新

安装ansible

设置/etc/hosts

  • 将/etc/hosts设置为users组可写 chmod g+w /etc/hosts
  • 增加配置
    10.43.33.202  nexus.server2
    

修改当前用户主用户组为users

usermod xxxx -g users
修改完成后ll ~,可看到所有文件的属组已变为users

验证一切是否OK

  • git迁出Hadoop是否可以适用maven编译成功,是否可以适用intellij编译运行测试用例
  • git迁出zdh-deployer,是否可以部署hdfs

results for ""

    No results matching ""