sudo apt-get update sudo apt-mark hold libreoffice sudo apt-get update && sudo apt-get upgrade uname -r sudo echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf sudo echo "option nouveau modeset=0" >> /etc/mo…
之前因为学习TensorFlow,所以在自己的Ubuntu上安装了cuda,cudnn以及Nvidia驱动.但可能是由于自己经常不注重正常关闭自己的Ubuntu,这就导致了一个问题: 某天在查看自己的显卡信息时,输入 $nvidia-smi 结果报错 NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is ins…
Ubuntu16.04双系统安装 一.准备工作 设备:惠普台式机,i5-7400.8G内存.1T机械硬盘.NVIDIA GTX1050显卡.预装系统:Win10. 1.下载ubuntu镜像文件,本人使用的是Ubuntu16.04,可到官网下载 https://www.ubuntu.com/download/desktop 2.下载软碟通软件制作U盘启动器,官网如下:https://cn.ultraiso.net/xiazai.html,选择免费下载试用即可,启动后直接试用就可以. 3.准备一个≥…
from: https://wiki.winehq.org/Ubuntu If your system is 64 bit, enable 32 bit architecture (if you haven't already): sudo dpkg --add-architecture i386 Add the repository: wget https://dl.winehq.org/wine-builds/Release.key sudo apt-key add Release.key…
1.#先添加以下源 sudo add-apt-repository ppa:fcitx-team/nightly 2.#添加源之后需要更新一下系统 sudo apt-get update 3.#开始安装fcitx sudo apt-get install fcitx 4.#安装fcitx的配置工具 sudo apt-get install fcitx-config-gtk 5.#安装fcitx的table-all软件包 sudo apt-get install fcitx-table-all 6…
apt-get install r-base r-base-dev…
ubuntu 16.04 install phpmyadmin $ apt install phpmyadmin 安装时出现一个错误: An error occurred while installing the database: │ │ mysql said: mysql: [Warning] mysql: Empty value for 'port' specified. │ Will throw an error in future versions ERROR 1819 (HY000)…
这是我第一个人工智能实验.虽然原理不是很懂,但是觉得深度学习真的很有趣.教程如下. Table of Contents 配置 时间轴 前期准备工作 anaconda3 安装 bug 1:conda:未找到命令,终端输入 Nvidia DRIVER390.77 卸载原驱动 安装显卡驱动 查看GPU版本 显卡分辨率问题 CUDA 9.0 卸载 下载CUDA 9.0 安装CUDA 9.0 查看cuda信息 ​测试CUDA的Samples 查看CUDA版本 cudnn 7.0.4 卸载 Debian 下…
本节详细说明一下深度学习环境配置,Ubuntu 16.04 + Nvidia GTX 1080 + Python 3.6 + CUDA 9.0 + cuDNN 7.1 + TensorFlow 1.6. Python 3.6 首先安装 Python 3.6,这里使用 Anaconda 3 来安装,下载地址:https://www.anaconda.com/download/#linux,点击 Download 按钮下载即可,这里下载的是 Anaconda 3-5.1 版本,如果下载速度过慢可以选…
目录 前言回顾 最终解决: 0.关闭x服务 1.禁用nouveau 2.加入 3.更新 4.查找匹配驱动 5.选择推荐版本 6.等待安装后重启,nvidia-smi查看是否安装成功,或者lsmod | grep nvidia,成功结果如下 7.重启x服务 8.此时还不能进入图形界面,因为nomodeset还在,所以重启,在grub界面,此时按下`E'键 9.删除 nomodeset参数,在GRUB_CMDLINE_LINUX_DEFAULT="quiet splash之后,删除它,然后留一个空格…