Ubuntu 常用软件
视频播放器
sudo apt install mpv
sudo apt-get install smplayer
搜狗拼音
sudo apt install Fcitx
sudo dpkg -i sogoupinyin_2.2.0.0108_amd64.deb
候选框中候选词不是中文,而是英文的乱码字符,试了很多方法,卸载重装、更换字体等均不奏效。
解决办法:
rm -rf ~/.config/SogouPY ~/.config/sogou*
安装 Microsoft Windows Fonts 微软字体库
ttf-mscorefonts-installer
包就是微软的字体包, 可以直接在软件中心中找到安装
也可以使用命令的方式安装
sudo apt-get install ttf-mscorefonts-installer
在安装字体后,我们需要使用命令来更新字体缓存:
sudo fc-cache -f -v
电驴下载
sudo apt-get install amule
GoldenDict 词典
sudo apt-get install goldendict
词典下载 http://pan.baidu.com/share/link?shareid=443301&uk=3189859145
词典的下载网址: http://www.pdawiki.com/forum/forum-4-1.html
词典介绍:https://www.jianshu.com/p/f82240fe486d
简明英汉字典增强版:https://github.com/skywind3000/ECDICT
屏幕色温调节软件 F.lux
github 地址:https://github.com/xflux-gui/fluxgui
使用 PPA 源安装 flux-gui
sudo add-apt-repository ppa:nathan-renniewaldock/flux
sudo apt-get update
sudo apt-get install fluxgui
安装守护进程
wget https://justgetflux.com/linux/xflux64.tgz
tar -zxvf xflux64.tgz
sudo cp xflux /usr/bin
运行
fluxgui
坚果云
下载
https://www.jianguoyun.com/s/downloads/linux
安装
# 1. 使用gdebi安装,自动安装依赖(18.04 找不到命令,需安装 sudo apt-get install gdebi)
sudo gdebi nautilus_nutstore_amd64.deb
# 2. ubuntu双击使用软件中心安装,自动安装依赖
# 3. 使用dpkg安装,使用apt-get -f install安装依赖
sudo dpkg -i nautilus_nutstore_amd64.deb
sudo apt-get install -f
用了一段时间,突然无法自动同步,点击图标也无法打开,所以放弃使用。
Shadowsocks
apt-get install python-pip
pip install shadowsocks
配置
https://blog.huihut.com/2017/08/25/LinuxInstallConfigShadowsocksClient/
找个地方放 shadowsocks 的配置文件,如用户目录下:
vi /home/xx/shadowsocks.json
然后在 shadowsocks.json 里面添加配置信息,如:
{
"server":"my_server_ip",
"local_address":"127.0.0.1",
"local_port":1080,
"server_port":my_server_port,
"password":"my_password",
"timeout":300,
"method":"aes-256-cfb"
}
my_server_ip:自己的服务器IP
my_server_port:自己的服务器端口
my_server_password:自己的密码
method:为自己的加密方式,一般是aes-256-cfb或者rc4-md5
设置系统代理,在设置-->网络设置-->代理设置中选择手动代理,在 Socks 主机处填写:127.0.0.1,端口 1080。
但是系统代理是全局走代理的,访问国内网站一般会有限制(速度较慢、浪费流量、版权受限等)。
设置自动代理
生成 PAC 文件有以下两个工具:
- Genpac
genpac --proxy="SOCKS5 127.0.0.1:1080" --gfwlist-proxy="SOCKS5 127.0.0.1:1080" -o autoproxy.pac --gfwlist-url="https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt"
- gfwlist2pac
或下载已经生成的 PAC 文件
设置系统自动代理,在设置-->网络设置-->代理设置中选择自动代理,URL 填写生成的 PAC 文件地址,file://文件路径/文件名(可以直接把文件拖到URL栏),可能某些系统是 file:///..../....pac
,可以把文件拖到浏览器看地址
测试启动
配置文件的路径改成自己的,如:/etc/shadowsocks.json
前端启动:sslocal -c /home/xx/shadowsocks.json
后端启动:sslocal -c /home/xx/shadowsocks.json -d start
后端停止:sslocal -c /home/xx/shadowsocks.json -d stop
重启(修改配置要重启才生效):sslocal -c /home/xx/shadowsocks.json -d restart
开机自启
以下使用 Systemd 来实现 shadowsocks 开机自启。
sudo vi /etc/systemd/system/shadowsocks.service
在里面填写如下内容:
[Unit]
Description=Shadowsocks Client Service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/usr/bin/sslocal -c /home/xx/shadowsocks.json
[Install]
WantedBy=multi-user.target
把 /home/xx/shadowsocks.json 修改为你的 shadowsocks.json 路径,如:/etc/shadowsocks.json
配置生效:
systemctl enable /etc/systemd/system/shadowsocks.service
chm 阅读器
sudo apt-get install kchmviewer
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 bin07280@qq.com
文章标题:Ubuntu 常用软件
文章字数:978
本文作者:Bin
发布时间:2019-03-11, 21:06:22
最后更新:2019-08-06, 00:07:35
原始链接:http://coolview.github.io/2019/03/11/Linux/Ubuntu%20%E5%B8%B8%E7%94%A8%E8%BD%AF%E4%BB%B6/版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。