Ubuntu安装
Refus制作Ubuntu系统启动盘
Refus下载地址 ,使用便携版
Ubuntu系统下载
Ubuntu下载地址 ,使用迅雷,利用BitTorrent下载
Ubuntu环境配置
Win10与Ubuntu双系统共享文件
Ubuntu可以访问并挂载Win10硬盘,但是不能写文件,需要报Win10的快速启动关闭
关闭Win10快速启动
Win+X ==> 选择电源选项 ==> 选择电源按钮的功能 ==> 更改当前不可用的设置 ==> 勾选掉“启用快速启动(推荐)”
配置Deb源
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 sudo cp /etc/apt/sources.list /etc/apt/sources_init.list sudo gedit /etc/apt/sources.list deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse sudo apt-get update sudo apt-get upgrade
有时存在安装依赖失败的情形,即使使用aptitude安装软件,aptitude也安装不上,可以调回原软件源
Pip安装与配置
1 2 3 4 5 6 7 sudo apt-get install python-pip pip install some-package -i https://mirrors.aliyun.com/pypi/simple/ pip install pip -U pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
或者修改文件:~/.pip/pip.conf (没有就创建一个)
1 2 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple
使用 --default-timeout
设置连接超时
1 pip --default-timeout=100 install Pillow
Clash安装与配置
下载 Clash 客户端。
执行 cd && mkdir clash 在用户目录下创建 clash 文件夹
下载适合的 Clash 二进制文件并解压重命名为 clash
一般个人的64位电脑下载 clash-linux-amd64.tar.gz 即可
下载 Clash 配置文件。
1 2 3 4 cd clashwget -O config.yml https://stc-spadesdns.com/link/lNXv6FC53CGLpCJ7?clash=1&log -level=info
下载country.ddmb
运行clash
1 2 3 4 ./clash -d . chmod +x clash
配置代理
打开系统设置,选择网络,点击网络代理右边的 ⚙ 按钮,选择手动
填写 HTTP 和 HTTPS 代理为 127.0.0.1:7890
填写 Socks 主机为 127.0.0.1:7891,即可启用系统代理。
Host: 127.0.0.1,端口: 9090
如果提醒一直要输入密钥,进入config.yaml修改端口号和密码:
1 2 3 4 external-controller: '0.0.0.0:8989' serect: 'MCC1213'
VSCode安装
1 2 3 4 5 wget https://az764295.vo.msecnd.net/public/0.3.0/VSCode-linux-x64.zip unzip /tmp/vscode/VSCode-linux-x64.zip -d /opt/ sudo chmod +x /opt/VSCode-linux-x64/code sudo /opt/VSCode-linux-x64/code ln -s /opt/VSCode-linux-x64/Code /usr/local /bin/code
Chorme安装
Chorme Ubuntu下载地址
1 sudo dpkj -i google-chrome-stable_current_amd64.deb
Conda安装
Conda下载地址
1 2 3 4 5 6 bash Anaconda3-5.2.0-Linux-x86_64.sh echo 'export PATH="~/anaconda3/bin:$PATH"' >> ~/.bashrcsource ~/.bashrc
常用的Conda命令
conda list
conda install tensorflow
conda install tensorflow-gpu
conda install tensorflow=1.4
conda install tensorflow-gpu=1.4
conda uninstall tensorflow
Conda虚拟环境操作
conda create -n py36 python=3.6 #创建名称为py36 的虚拟python环境,该环境下使用python版本为3.6
conda remove -n py36 --all #删除环境
conda activate py36 #激活环境py36
conda activate #激活默认base环境
conda deactivate #退出当前环境,进入默认base环境
conda info --envs #列出所有的环境
conda create -n newname --clone oldname
conda remove -n oldname --all
注意:不同虚拟环境是并列的,不同环境下安装的python包是不共享的
Nvidia显卡驱动安装
CUDA安装
CUDA下载地址
按要求下载*.run包进行安装
安装过程中的提示步骤
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 Do you accept the previously read EULA? accept/decline/quit:accept Install NVIDIA Accelerated Graphics Driver for Linux-x86_64 387.26? (y)es/(n)o/(q)uit: n Install the CUDA 9.0 Toolkit? (y)es/(n)o/(q)uit: y Enter Toolkit Location [ default is /usr/local /cuda-9.0 ]: Enter Do you want to install a symbolic link at /usr/local /cuda? (y)es/(n)o/(q)uit: y Install the CUDA 9.0 Samples? (y)es/(n)o/(q)uit: y
配置环境变量
利用软链接的文件夹路径,方便后续安装多个CUDA版本
1 2 3 4 5 6 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH :/usr/local /cuda/lib64export PATH=$PATH :/usr/local /cuda/binexport CUDA_HOME=$CUDA_HOME :/usr/local /cudasource ~/.bashrc
1 2 3 stat cuda sudo rm -rf cuda sudo ln -s /usr/local /cuda-9.1 /usr/local /cuda
验证CUDA是否安装成功
1 2 3 4 5 6 7 8 cd /usr/local /cuda-9.0/samples/1_Utilities/deviceQuerysudo make ./deviceQuery cd ../bandwidthTestsudo make ./bandwidthTest
Pytorch安装
Pytorch Whl包
注意Pytorch版本与CUDA的版本要匹配,而且使用pip从清华源默认下载的都是CPU版本的Pytorch