1、卸载libreoffice
sudo apt-get remove libreoffice-common
2 卸载亚马逊
sudo apt-get remove unity-webapps-common
3导航栏放在底部
gsettings set com.canonical.Unity.Launcher launcher-position Bottom
4 安装网易云音乐
https://music.163.com/#/download 选择ubuntu16.04
5 安装wps
http://www.wps.cn/product/wpslinux
6安装搜狗输入法
https://pinyin.sogou.com/linux/?r=pinyin
先添加以下源,在终端输入命令:sudo add-apt-repository ppa:fcitx-team/nightly
更新一下系统给,继续输入命令:sudo apt-get update
安装fcitx,输入命令:sudo apt-get install fcitx
安装fcitx的配置工具,输入命令:sudo apt-get install fcitx-config-gtk
安装fcitx的table-all软件包,输入命令:sudo apt-get install fcitx-table-all
安装im-switch切换工具,输入命令:sudo apt-get install im-config
不重启系统重启搜狗输入法的方法:
1 fcitx | xargs kill
2 sogou-qimpanel | xargs kill
3 shell脚本
编写Shell脚本restart_sougou.sh,放到/usr/bin目录下,不要忘记chmod修改运行权限,然后就能在终端输入restart_sougou命令来执行重启搜狗输入法
#!/bin/sh
pidof fcitx | xargs kill
pidof sogou-qimpanel | xargs kill
nohup fcitx 1>/dev/null 2>/dev/null &
nohup sogou-qimpanel 1>/dev/null 2>/dev/null &
输入法崩溃后无需重启电脑直接重启软件的办法
killall fcitx
killall sogou-qimpanel
fcitx
7 ubuntu16.04安装flash player 插件
sudo apt-get install flashplugin-installer
8 安装福昕阅读器
https://www.foxitsoftware.cn/products/reader/
下载文件解压后安装运行其中的.run安装文件
9 图像编辑软件pinta(类似windows下的画图软件)
sudo apt-get install pinta
10 md文档编辑器安装
sudo apt-get install typora
11 ubuntu下载torrent文件工具
sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev
12 解压zip压缩文件不会出现乱码的软件工具
sudo apt-get install unar
unar documents.zip
13 开机自启动设置
编辑/etc/rc.local文件
在其中添加脚本文件即可实现开机自启动
14 ubuntu安装win10虚拟机
方便使用以ubuntu为主机的时候使用windows操作系统
https://jingyan.baidu.com/article/27fa73269df2ff46f8271f35.html
15 文件夹更改所属用户
sudo chown -R username: username folder_name
16 pip install 添加源
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
Linux下,修改 ~/.pip/pip.conf (没有则创建)