Ubuntu 16.04/10 安装后总结

来源:互联网 发布:遥控飞机手机遥控软件 编辑:程序博客网 时间:2024/05/21 09:46

系统配置

  • 安装独立显卡
    系统设置-软件和更新-附加驱动-nvidia专有驱动-应用更改-重启

    双显卡切换:
    NVIDIA X Server Settings-PRIME Profiles

  • 禁用鼠标加速

    >>sudo vim /usr/share/X11/xorg.conf.d/90-mouse.confSection "InputClass"      Identifier "mouse"      MatchIsPointer "on"      Option "AccelerationProfile" "-1"      Option "AccelerationScheme" "none"      Option "AccelSpeed" "-1"EndSection>>reboot
  • 护眼f.lux(windows推荐)

    >>sudo add-apt-repository ppa:nathan-renniewaldock/flux>>sudo apt update>>sudo apt install fluxgui——注意:切换系统默认python版本为python2,否则无法解决依赖问题。附:修复依赖关系——    >>sudo apt -f install
  • Redshift(Linux推荐)
    【转】Redshift简单配置
    配置文件加一行
    adjustment-method=randr
    设置开机启动

  • 修改软件源
    http://mirrors.tuna.tsinghua.edu.cn

  • 修改系统字体、主题
    文泉驿微米黑、正黑、点阵宋体:

    >>sudo apt install ttf-wqy-microhei>>sudo apt install ttf-wqy-zenhei>>sudo apt install xfonts-wqy

    Numix主题、图标:

    >>sudo add-apt-repository ppa:numix/ppa>>sudo apt update>>sudo apt install numix-gtk-theme numix-icon-theme-circle>>sudo apt install numix-wallpaper-* //Numix壁纸

    设置方法:Unity-Tweak-Tool

  • 修改hosts及刷新缓存

    >>sudo mv hosts /etc/>>sudo /etc/init.d/networking restart

常用软件及配置

  • GVim

  • Typora
    markdown编辑软件

    >>sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE>>sudo add-apt-repository 'deb https://typora.io ./linux/'>>sudo apt-get update>>sudo apt-get install typora
  • 搜狗拼音输入法

  • chrome浏览器

    >>sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/>>wget -q -O - https://dl.google.com/linux/linux_signing_key.pub  | sudo apt-key add ->>sudo apt-get update>>sudo apt-get install google-chrome-stable
  • 网易云音乐

  • Franz
    (集成聊天软件)
    Franz官网

  • WPS

  • GIMP图片编辑工具

  • 【转】VirtualBox虚拟机
    转自此处–BlackStorm为原作者
    这里写图片描述

  • uget aria2下载工具

  • Tweak-Tool

  • ffmepg解码转换

  • Smplayer/VLC

  • TLP电源管理

    >>sudo apt install tlp tlp-rdw>>sudo tlp start
  • Pycharm

  • Oracle Java

  • Python版本切换

    >>sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 2>>sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1>>sudo update-alternatives --config python>>sudo update-alternatives --remove python /usr/bin/python2.7
  • pip的安装

  • GDebi

  • Gnome3扩展
    Alternatetab
    Application menu
    Dash to dock
    Openweather
    User themes
    System-monitor
    Places Status Indicator
    Drop Down Terminal

常用命令

  • 触摸板的禁用

    >>sudo rmmod psmouse (禁用触摸板)
    >>sudo modprobe psmouse (启用触摸板)
0 0