Ubuntu20.04 配置记录
[TOC]
ubuntu安装
- 从ubuntu官网或者国内镜像网站下载ubuntu iso镜像
- 烧录镜像到u盘以制作安装盘,可以通过refus或者etcher来烧录镜像到u盘
- 重启电脑,进入到bios,设置u盘为第一启动项,从u盘进入到ubuntu安装界面,完成ubuntu安装
ubuntu好用的应用软件
- 切换软件源为清华大学软件源,从而加速国内安装软件的速度
- optional:安装NVIDIA驱动从而避免屏幕卡顿:
sudo ubuntu-drivers autoinstall && sudo reboot now
- 安装搜狗输入法,按照官网教程安装即可
- 安装chrome
- 配置ssh,保证你可以从github上正常地下载软件
- 安装vscode,下载deb文件通过
sudo dpki -i xxx.deb
安装即可 - 安装typora,下载deb文件通过
sudo dpki -i xxx.deb
安装即可 - 安装微信,参考这个教程,
主要从优麒麟官网下载wine跟wechat的安装包,然后通过命令
sudo apt install -f -y ./xxxx.deb
来安装
配置RISC-V开发环境
通过终端安装软件的时候,可以打开终端代理:
1 | export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890 |
重点:下面的代码可以通过下载该脚本、使用命令zsh env-install-scripts.sh
一键安装
安装一些需要的库、软件
1 | sudo apt update |
安装Verilator
在终端里执行下述所有代码、或者执行这个脚本。 你可以指定verilator的版本以及默认的编译器
1 | # https://verilator.org/guide/latest/install.html |
顺手安装一个gtkwave:
1
2
brew install --HEAD randomplum/gtkwave/gtkwave
sudo cpan install Switch
安装RISC-V编译工具链
要下载很多Github上的仓库,所以要保证你的终端可以从Github上下载
1 | sudo apt-get install autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-dev -y |
安装Scala, Mill & SBT
TBD
安装输入工具
安装NodeJS
1 | wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash |
安装NVIM, TMUX
从Github下载nvim, tmux, zsh的配置文件
1
2
3
4
5sudo apt install stow -y
cd ~
git clone git@github.com:timemeansalot/env_config.git .env_config
cd .env_config
stow nvim && stow tmux && stow zsh下载工具:
sudo apt install tmux -y
install nerd font
- download nerd font
- extract nerd font to
~/.local/share/fonts
- refresh fonts:
fc-cache -fv
- config your editor to use nerd font
配置zsh,一个更好用的shell工具
1
2
3
4
5
6
7sudo apt install zsh -y
chsh -s /usr/bin/zsh
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
p10k configure配置tmux
- 安装tmux包管理工具:
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
- 从Github上下载配置文件并应用:
cd ~/.env_config && stow tmux
- 进入tmux:
tmux new -s test
- 启用配置文件: ctrl+d+I
- 安装tmux包管理工具:
配置neovim
- 安装nvim
1
2
3
4
5wget https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
mkdir ~/app
tar -xvzf nvim-linux64.tar.gz -C ~/app
sudo ln -s ~/app/nvim-linux64/bin/nvim /usr/bin/nvim
nvim --version - 配置neovim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16# config neovim
sudo apt-get install ripgrep -y
sudo apt install cargo -y
cargo install stylua # lua formatter
cargo install svls # system verilog lsp
sudo apt remove cmdtest
sudo apt remove yarn
npm install -g prettier # used by neovim
npm install picgo -g # install picgo-core
picgo set uploader
npm install -g yarn
cd ~/.local/share/nvim/site/pack/packer/start/
git clone https://github.com/iamcco/markdown-preview.nvim.git
cd markdown-preview.nvim
yarn install
yarn build
- 安装nvim