Daily | Ubuntu Environment Configure
程序员文章站
2022-05-05 22:49:32
...
Catalogue
Backup the apt sources and alter to aliyun
1.1 back up
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
1.2 overwrite the content
sudo gedit /etc/apt/sources.list
- the aliyun sources as follows: [NOTE] the word “bionic” in the aliyun sources means Ubuntu 18.04
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
1.3 update
sudo apt-get update
Ping-yin environment
2.1 install ibus
sudo apt-get install ibus-pinyin
2.2 configure
- system setting -> Region & Language -> Manage installed Languages
- keyboard input method system alter to IBus
- install / Remove Languages…
- reboot
- system setting -> Region & Language -> add input sources
Cuda 10.1
3.1 tips
- kernel requirement [diagram from ]
3.2 install gcc
sudo apt install build-essential
3.3 disable nouveau image drive
sudo vi /etc/modprobe.d/blacklist.conf
# append black list to the blacklist.conf file
blacklist vga16fb
blacklist nouveau
blacklist rivafb
blacklist rivatv
blacklist nvidiafb
# update
sudo update-initramfs -u
# reboot
sudo reboot
# check if the nouveau is disabled
lsmod | grep nouveau
# enter tty (ctrl+alt+f3), and stop lightdm service
sudo service lightdm stop
3.4 remove the installed cuda
sudo apt-get --purge remove nvidia-*
3.5 install cuda
Google chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
上一篇: Java基础面试点1
推荐阅读
-
ubuntu安装idea教程(idea创建桌面快捷方式)
-
在Ubuntu 14.04上部署 PHP 环境及 WordPress
-
深度学习环境搭建(ubuntu16.04+Titan Xp安装显卡驱动+Cuda9.0+cudnn+其他软件)
-
Ubuntu下开启php调试模式报错信息解决办法
-
详解Ubuntu 16.04 pycharm设置桌面快捷启动方式
-
ubuntu14.04安装opencv3.0.0的操作方法
-
ubuntu16.10安装docker17.03.0-ce并配置国内源和加速器
-
#实践笔记#Ubuntu配置Apache+PHP+MySQL
-
ubuntu 系统上为php加上redis 扩展的实现方法
-
在Ubuntu系统上安装Nginx服务器的简单方法