Ubuntu

安装ubuntu时的分区

挂载点 大小
/ 20G(10G不够用)
swap 4G
/home 多多益善

主机无法解析

修改hosts
sudo vim /etc/hosts
127.0.1.1 zhs-pc(用户名-pc)

chrome卡顿

字体渲染不好,更换字体中的标准为Droid Sans Fallback(测试可行)

ubuntu和windows双系统时间差异8小时的方法

sudo gedit /etc/default/rcS
把里面的 UTC=yes 改为 UTC=no

firefox和中文包

sudo add-apt-repository ppa:ubuntu-mozilla-security/ppa
sudo apt-get update
sudo apt-get install firefox firefox-locale-zh-hans

libreoffice和中文包

sudo apt-get remove --purge libreoffice*
sudo add-apt-repository ppa:libreoffice/ppa
sudo apt-get update
sudo apt-get install libreoffice libreoffice-l10n-zh-cn

git

sudo apt-add-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git

SMPlayer

sudo apt-add-repository ppa:rvm/smplayer
sudo apt-get update
sudo apt-get install smplayer smplayer-skins smplayer-themes

Sublime-text-3

sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer

Other

添加ppa保存的位置为:cd /etc/apt/sources.list.d/

  • atom
    webupd8team/atom
  • screenfetch
    djcj/screenfetch

安装pycharm-community-5.0

在运行 pycharm-community-5.0/bin/pycharm.sh 图形界面进行安装 会生成快捷图标

使用apt-get autoremove会移除中文包

导致文件管理器 字体管理器 部分显示英文
安装language-pack-gnome-zh-hans可恢复

Warning: No support for locale: zh_CN.utf8

sudo dpkg-reconfigure locale

安装python模块时出现:error: Setup script exited with error: command 'gcc' failed with exit status 1

sudo apt-get install python-dev

针对笔记本,安装 TLP 以延长电池寿命,减少发热

sudo add-apt-repository ppa:linrunner/tlp
sudo apt-get update
sudo apt-get install tlp tlp-rdw
sudo tlp start

linux下利用命令查看显卡型号
lspci |grep VGA

sudo dpkg -i *.deb

你可能感兴趣的:(Ubuntu)