安装ubuntu系统
- 正常烧录系统
- 更改sources.list, update, upgrade
https://www.cnblogs.com/boundless-sky/p/11576373.html - 挂载sda9分区为home目录, 编辑/etc/fstab文件
https://blog.csdn.net/u012796629/article/details/100841549
sudo blkid
sudo gedit /etc/fstab
UUID=(刚才查到的uuid) /home ext4 defaults 1 2
好处是,重新装系统,重新挂载home目录可以回到从前。
基础软件
-
搜狗输入法(需要查看配置)
https://pinyin.sogou.com/linux/help.php (dpkg) -
谷歌浏览器
https://www.cnblogs.com/kaerxifa/p/10935331.html (dpkg) -
网易云音乐
https://music.163.com/#/download (dpkg) -
Boostnote
https://boostnote.io/#download (dpkg) -
WPS
https://www.wps.cn/product/wpslinux (dpkg) -
Sublime
http://www.sublimetext.com/docs/3/linux_repositories.html (apt-get) -
Slack
https://slack.com/intl/en-cn/downloads/linux (dpkg) -
卸载firefox, libreOffice
https://blog.csdn.net/iteye_19004/article/details/82648729
sudo apt-get remove unity-webapps-common firefox libreoffice*.*
sudo apt-get autoremove
sudo apt-get autoclean
PS: 在ubuntu软件
中卸载,也是非常方便的。
工作套件
- 小工具
sudo apt-get install wget curl vim git zsh terminator
sudo apt-get install python3-dev cmake
sudo apt-get install xdotool zathura
-
Miniconda
https://conda.io/projects/conda/en/latest/user-guide/install/linux.html 官网安装说明
https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/ 换清华源
https://mirrors.tuna.tsinghua.edu.cn/help/pypi/ pip换源
conda config --set channel_priority flexible
conda clean -i
conda update -n base conda
conda create -n oldboy python=3.6.5
echo "conda activate venv">>~/.zshrc #开机启动环境
- VIM的配置
sudo apt-get install vim vim-scripts vim-gtk vim-gnome #系统粘贴板
cd ~/.vim/plugged/YouCompleteMe
python install.py
特殊软件包
- 基本的包 openGL
sudo apt-get install libosmesa6-dev build-essential libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev
sudo apt-get install -y libglew-dev
-
cuda, 是不是用conda安装 cudatoolkit 就不用安装cuda了?我不清楚
https://developer.download.nvidia.cn/compute/machine-learning/repos/ubuntu1804/x86_64/ (dpkg)
直接安装是否就完事了?!!!后面测试了pytorch能在GPU上工作。~ -
texlive
https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/ 清华镜像
http://mirrors.ustc.edu.cn/CTAN/systems/texlive/ 中科院镜像
https://mirrors.aliyun.com/CTAN/systems/texlive/Images/ 阿里镜像 电信网络比较快
https://www.cnblogs.com/tsingke/p/13020450.html 安装使用示例
添加PATH到.zshrc
# Textlive
export MANPATH="/usr/local/texlive/2020/texmf-dist/doc/man:$MANPATH"
export INFOPATH="/usr/local/texlive/2020/texmf-dist/doc/info:$INFOPATH"
export PATH="/usr/local/texlive/2020/bin/x86_64-linux:$PATH"
- inkscape
sudo apt-get install inkscape
pip3 install inkscape-figures
网友评论