Ubuntu 系统安装

2017年2月13日 · 451 字 · 1 分钟 · Ubuntu

Ubuntu 系统的安装和常用软件的安装。

准备

步骤

烧录至 U 盘 上,我这里使用的是 mac 下的 Etcher 软件,免费、开源、易用~ 墙裂推荐

烧录完成之后插到主机上,从 U 盘 启动,按照提示安装就行了。

使用 Tuna 镜像源

wget https://tuna.moe/oh-my-tuna/oh-my-tuna.py
# For yourself
python oh-my-tuna.py
# ...or for everyone!
sudo python oh-my-tuna.py --global
# Get some help
python oh-my-tuna.py -h

常用软件

搜狗输入法

没有一款好的中文输入法怎么行呢

Zsh - A powerful command line shell

sudo apt-get install zsh

Oh My Zsh

A delightful community-driven framework for managing your zsh configuration

# via curl
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Telegram

Fast and secure desktop app, perfectly synced with your mobile phone.

sudo add-apt-repository ppa:atareao/telegram
sudo apt-get update
sudo apt-get install telegram

Git

一款免费、开源的分布式版本控制系统

sudo apt-get update
sudo apt-get install git

indicator-sysmonitor

标题栏实时显示上下行网速、CPU 及内存使用率

sudo add-apt-repository ppa:fossfreedom/indicator-sysmonitor
sudo apt-get update
sudo apt-get install indicator-sysmonitor

SSH 服务

Ubuntu 桌面版默认并没有安装 ssh 服务,所以如果需要远程管理你的服务器则需要手动安装。

sudo apt-get install openssh-server

音乐播放

推荐 ieaseMusic

这应该是最好的网易云音乐播放器了,没有之一,如果有请打醒 🤘

视频播放

VLC 是一款自由、开源的跨平台多媒体播放器

sudo apt-get install vlc

Docker

sudo apt-get update
sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"

sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io

sudo usermod -aG docker $(whoami)
sudo systemctl enable docker.service
sudo systemctl start docker.service

sudo curl -L "https://github.com/docker/compose/releases/download/1.27.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose

OpenJDK 8

sudo apt update
sudo apt install openjdk-8-jdk