Ubuntu、macOS必备软件配置记录帖
For Ubuntu
安装编辑器&编译器
1、安装Sublime Text 3:
https://www.sublimetext.com/docs/3/linux_repositories.html
apt Install the GPG key:
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
Ensure apt is set up to work with https sources:
sudo apt-get install apt-transport-https
echo “deb https://download.sublimetext.com/ apt/stable/“ | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt-get update
sudo apt-get install sublime-text
终端使用Sublime,输入: subl
2、安装Atom:
We can download the Atom .deb package and install it directly:
1 | # Install Atom |
3、安装PyCharm:
- Copy the pycharm-2017.3.3.tar.gz to the desired installation location
(make sure you have rw permissions for that directory) - Unpack the pycharm-2017.3.3.tar.gz using the following command:
1
tar -xzf pycharm-2017.3.3.tar.gz
- Remove the pycharm-2017.3.3.tar.gz to save disk space (optional)
- Run pycharm.sh from the bin subdirectory【Tip】: Pycharm的快捷启动方式
1
./pycharm.sh
然后输入以下内容,注意Exec和Icon需要找到正确的路径1
sudo subl /usr/share/applications/Pycharm.desktop
[Desktop Entry]
Type=Application
Name=Pycharm
GenericName=Pycharm3
Comment=Pycharm3:The Python IDE
Exec=”/XXX/pycharm-community-3.4.1/bin/pycharm.sh” %f
Icon=/XXX/pycharm-community-3.4.1/bin/pycharm.png
Terminal=pycharm
Categories=Pycharm;
Shadowsock
安装Shadowsock-server
VPS :https://my.vultr.com/
Setting:https://medium.com/@zoomyale/%E7%A7%91%E5%AD%A6%E4%B8%8A%E7%BD%91%E7%9A%84%E7%BB%88%E6%9E%81%E5%A7%BF%E5%8A%BF-%E5%9C%A8-vultr-vps-%E4%B8%8A%E6%90%AD%E5%BB%BA-shadowsocks-fd57c807d97e
Shadowsocks Python版一键安装脚本: https://teddysun.com/342.html
安装Shadowsock-qt5
$ sudo add-apt-repository ppa:hzwhuang/ss-qt5$ sudo apt-get update$ apt-get install shadowsocks-qt5
下载Shadowsocks-Qt5-3.0.1-x86_64.AppImage
1 | $chmod a+x Shadowsocks-Qt5-x86_64.AppImage |
全局pac配置:pip install genpac
genpac --format=pac --pac-proxy="SOCKS5 127.0.0.1:1080" --output="autoproxy.pac"
genpac 的详细使用说明见 GitHub - Wiki:
https://github.com/JinnLynn/GenPAC
设置全局代理
点击:System settings > Network > Network Proxy,选择 Method 为 Automatic,设置 Configuration URL 为 autoproxy.pac 文件的路径,点击 Apply System Wide。
格式如:file:///home/{user}/Downloads/shadowsocks/autoproxy.pac
5、安装Anaconda:
download the Anaconda installer for Linux and install it:
1 | bash ~/Downloads/Anaconda3-5.0.1-Linux-x86_64.sh |
配置环境变量:
1 | subl ~/.profile |
在最后加入:
1 | #Anaconda |
保存后更新环境变量即可使用
1 | source ~/.profile |
6、安装NodeJS:
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
download the node-v8.9.4-linux-x64.tar.xz and extra it to right directory:
1 | tar -xf node-v8.9.4-linux-x64.tar.xz ~/Programs/nodejs #解压文件到指定路径 |
配置环境变量:
1 | vi ~/.bashrc |
在最后加入:
1 | #NODEJS |
#NODEJS
export NODEJS_HOME=/home/vincent/Programs/nodejs/node-v8.9.4-linux-x64
export $NODEJS_HOME/bin:$PATH
保存后更新环境变量即可使用
1 | source ~/.profile |
1 | node --version |
7、安装Git:
1 | sudo apt-get install git |
8、安装tmux:
1 | sudo apt-get install tmux |
安装数据库
安装MySQL:
1 | sudo apt-get update |
安装MS SQL Server:
Quickstart: Install SQL Server and create a database on Ubuntu
1 | wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - |
开发工具
Docker
1 | # 如果你过去安装过 docker,先删掉 |
How To Install and Use Docker on Ubuntu 16.04
Docker Community Edition 镜像使用帮助
JAVA
1 | sudo apt-get update |
vim ~/.bashrc: export JAVA_HOME=/usr/lib/jvm/default-java
1 | source ~/.bashrc # 使变量设置生效 |
至此,就成功安装了Java环境
[Hadoop安装教程_单机/伪分布式配置_Hadoop2.6.0/Ubuntu14.04:第2种安装JDK方式]http://dblab.xmu.edu.cn/blog/install-hadoop/
Hadoop
Hadoop3:https://fuhailin.github.io/Hadoop-Install/
Scala
http://www.cnblogs.com/wrencai/p/3867460.html
Spark
http://fuhailin.github.io/Spark-Tutorial/#Spark%E7%9A%84%E5%AE%89%E8%A3%85
安装中文输入法
1 | sudo apt install -y fcitx-bin |
Reboot之后
第一步 | 第二步 | 第三步 |
---|---|---|
Ctrl+Space切换中英文输入
Ubuntu 18.04 fcitx chinese input setup(google and sogou)
ubuntu 18.04 英文环境安装搜狗输入法
升级16.04到18.04
https://linuxconfig.org/how-to-upgrade-to-ubuntu-18-04-lts-bionic-beaver
其他专业软件
Latex
首先更换国内清华大学开源软件镜像站:https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/
Texlive
LaTeX有很多发型版,TeX Live就是其中一种。TeX Live 是 TUG (TeX User Group) 维护和发布的 TeX 系统,可说是「官方」的 TeX 系统。TeX Live可以保持在跨操作系统平台、跨用户的一致性。而且TeX Live在Ubuntu18.04上的安装也比较方便。
Texlive需要的安装空间较大,需要在根目录预留4G的额外空间
1 | sudo apt-get install texlive-full |
安装Texlive前 | 安装Texlive后 |
---|---|
Ubuntu18.04安装LaTeX并配置中文环境 | |
Ubuntu18 + VSCode + TexLive 配置中文Latex环境 | |
Ubuntu 18.04 LTS 安装 Tex Live |
Nextcloud
Nextcloud是一款开源的功能强大的私有云平台搭建框架,甚至还提供跨平台的各类终端。
命令行安装过程
1 | sudo apt-get update |
安装完成通过IP地址直接访问
Nextcloud Web界面 | Nextcloud iOS界面 |
---|---|
Nextcloud | |
基于 Ubuntu + nextCloud 搭建自己的私人网盘 | |
nextcloud打开链接Apache2 Ubuntu Default Page问题 |
navi: An interactive cheatsheet tool for the command-line
https://github.com/denisidoro/navi
fzf: A command-line fuzzy finder
https://github.com/junegunn/fzf
Linuxbrew: Homebrew on Linux (un)installer
https://github.com/Linuxbrew/install
For macOS
Homebrew
1 | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
Homebrew Cask
HomeBrew是通过源码的方式来安装软件,但是有时候我们安装的软件是GUI程序应用宝(.dmg/.pkg),这个时候我们就不能使用HomeBrew了,所以有了HomeBrew Cask的出现
brew cask 是在brew 的基础上一个增强的工具,用来安装Mac上的Gui程序应用包(.dmg/.pkg), 比如qq、chrome等。它先下载解压到统一的目录中(/opt/homebrew-cask/Caskroom),省掉了自己去下载、解压、拖拽(安装)等步骤,同样,卸载相当容易与干净。然后再软链到~/Applications/目录下, 非常方便,而且还包含很多在 AppStore 里没有的常用软件。
brew cask的官网是:http://caskroom.io
github地址是:https://github.com/caskroom/homebrew-cask
Htop
1 | brew install htop |
iterm2
https://www.iterm2.com/index.html
iterm2 cheatsheet
Zsh
1 | sudo apt install zsh |
Oh My Zsh
1 | sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
vim ~/.zshrc
1 | source ~/.bash_Profile |
autojump:
https://learnku.com/tensorflow/t/5790/ultimate-terminal-zshautojump
zsh-syntax-highlighting: 配置语法高亮
Node.js & NPM
1 | brew install node |
Atom
1 | brew cask install atom |
Aria2
1 | # For Ubuntu |
sublime-text & Skim
1 | brew cask install sublime-text |
Bazel
https://docs.bazel.build/versions/master/install-os-x.html#install-on-mac-os-x-homebrew