0#1 我的ubuntu软件(一)

1. Wireshark

下载方式:
apt-get install wireshark


0#1 我的ubuntu软件(一)_第1张图片
wireshark.png

2. 网速显示

下载方式:

  1. 其他软件中添加:
    ppa:fossfreedom/indicator-sysmonitor
0#1 我的ubuntu软件(一)_第2张图片
netspeed.png
  1. 更新可安装软件列表
    apt-get update
  2. 安装 indicator-sysmonitor
    apt-get install indicator-sysmonitor
  3. 运行(如果没有显示需要重启)
    indicator-sysmonitor &
  4. 制作开机自启动
    点击标题->preferences->General
    勾选Run on startup
  5. 显示方式
    点击标题->preferences->Advanced
    net:{net} cpu: {cpu} mem: {mem}
  6. 测试
    test
  7. 保存
0#1 我的ubuntu软件(一)_第3张图片
netspeed1.png

3. apt-get install 时自动补全安装包名字

  1. 下载bash-completion(中间是减号)
    apt-get install bash-completion
  2. 修改配置文件
  3. 打开配置文件 /etc/bash.bashrc
    gedit /etc/bash.bashrc
  4. 加入下面内容(中间的是下划线)
    if [ -f /etc/bash_completion ];then
    source /etc/bash_completion
    fi
  5. 测试一下
    apt-get install a[tab]


    0#1 我的ubuntu软件(一)_第4张图片
    indicator-sysmonitor.png

4. google 中文输入法

  1. 首先需要修改配置
    language support-> Install chinese
    ->fcitx


    0#1 我的ubuntu软件(一)_第5张图片
    fcitx.png
  2. 下载 googlepinyin
    apt-get install fcitx-googlepinyin
  3. 可能需要重启
    附:
    修改用户使用语言:
    用户帐号->语言汉语
0#1 我的ubuntu软件(一)_第6张图片
language.png

5. wineQQ

(注意:由于能力限制,我暂时无法由exe文件进行安装QQ,只能从网上提供的tar文件解压安装。)
参考:ubuntu下 安装 wine QQ

  1. 添加下载源
    软件和更新中添加:
    ppa:wine/wine-builds
0#1 我的ubuntu软件(一)_第7张图片
wine-build.png
  1. 更新可下载列表
    apt-get update
  2. 安装winehq-devel
    apt-get install winehq-devel
  3. 备注:
    由于能力限制,我暂时无法由exe文件进行安装QQ,只能从网上提供的tar文件解压安装。
    tar的百度云盘分享
    链接:https://pan.baidu.com/s/1m9d16NNPRht-Uqlb65elFA
    密码:1d2d
  4. 解压安装包
    tar xvf wineQQ8.9_19990.tar.xz -C ~/
  5. 就能够从搜索中看见了
0#1 我的ubuntu软件(一)_第8张图片
wineqq.png
  1. 卸载(建议使用mv)
    mv ~/.wine /tmp
    mv ~/.local/share/applications/wine-QQ.desktop /tmp
    mv ~/.local/share/icons/hicolor/256x256/apps/QQ.png /tmp
    mv ~/.fonts/simsun.ttc /tmp

6.播放器(smplayer)

除了界面丑了点,几乎就是神器

  1. 安装
    apt-get install smplayer
  2. 一些常用快捷方式
0#1 我的ubuntu软件(一)_第9张图片
smplayer.png

7. 字典(带有屏幕取词功能)

  1. 安装
    apt-get install goldendict
  2. 添加在线词典
    编辑->词典->词典来源网站->添加
    http://dict.youdao.com/search?q=%GDWORD%&ue=utf8
0#1 我的ubuntu软件(一)_第10张图片
goldendict.png
0#1 我的ubuntu软件(一)_第11张图片
goldendict1.png
  1. 点击菜单栏就会显示屏幕取词选项

8. 安装 pip3 和opencv的py库

apt-get installl python3-pip
pip3 install opencv-python
记得安装完 pip3 后会显示一个BUG,按照提示修改就行
打开报错的文件:
gedit /usr/bin/pip3
应为py2和py3的一些小区别所以报错
修改文件内容为

from pip import main
if __name__ == '__main__':
    sys.exit(main())

具体的忘记了。。。。。。


0#1 我的ubuntu软件(一)_第12张图片
pip3.png

9. 安装 octave

  1. 添加下载源
    软件和更新->其他软件->添加
    ppa:octave/stable
  2. 安装
    apt-get install octave

10. Ipython

  1. 需要的下载包
pip3 install Ipython urllib3 jupyter numpy matplotlib pandas scipy scikit-learn
  1. 使用Ipython
    jupyter notebook --allow-root
    会给你一个链接
    类似:
    http://localhost::8888
0#1 我的ubuntu软件(一)_第13张图片
ipython.png
  1. 点击new新建一个python3

11. 安装 pycharm专业版+密钥

  1. 官网选择安装包
    Download PyCharm
    我下载在/home/lee/Downloads下
  2. 修改hosts文件
    gedit /etc/hosts
    末尾添加
    0.0.0.0 account.jetbrains.com
0#1 我的ubuntu软件(一)_第14张图片
hosts.png
  1. 将安装包移动到 /opt 下(opt第3方软件目录)
    mv /home/lee/Downloads/pycharm* .tar.gz /opt
    cd /opt
  2. 解压
    tar -zxvf pycharm*.tar.gz
  3. 进入bin目录
    cd /pycharm*/bin
  4. 执行pycharm.sh
    ./pycharm.sh
  5. 密钥
    https://jetlicense.nss.im/
  6. 以后打开就是在/opt/pycharm..../bin下
    ./pycahrm
    当然可以做一个快捷方式

/


你可能感兴趣的:(0#1 我的ubuntu软件(一))