安装完 Ubuntu 后安装常用软件

安装的软件

以下软件直接通过:sudo apt install 软件名 即可进行安装。

  • 搜狗输入法 官网:搜狗输入法 for Linux

  • ibus-rime 中韵输入法

  • compizconfig-settings-manager Ubuntu 功能较多的系统管理器

  • chromium-brower google 浏览器

  • vim
    Linux 下的命令行文本编辑器

    (vimplus 插件 Github:https://github.com/chxuan/vimplus)

    • 安装命令:
    git clone https://github.com/chxuan/vimplus.git ~/.vimplus
    cd ~/.vimplus
    ./install.sh
    

    详见安装教程:Manjaro 安装 Vim 并配置

  • copyq 剪贴板插件
    sudo apt install copyq
    
  • terminator 好用的终端管理器(系统设置里设置Ctrl+Alt+T快捷键)

  • nomacs 比较好用的图片浏览软件

  • gnome-tweak-tool gnome环境优化设置

  • vlc 视频播放器

  • Okular pdf epub 等文档查看器

  • typora 很好用的 Markdown 写作工具

    # or run:
    # sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE
    wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -
    
    # add Typora's repository
    sudo add-apt-repository 'deb https://typora.io/linux ./'
    sudo apt-get update
    
    # install typora
    sudo apt-get install typora
    

    官网:https://www.typora.io/

  • CodeX
    功能丰富的 Markdown 写作工具

    官网:https://www.codexnotes.com/

  • Godot

    一个免费开源的游戏引擎 ,只有几十MB 大小,可开发 2D 3D 游戏,有自己的脚本语言,类似 Python。
    官网:https://godotengine.org/download

  • curl

    Linux 上的命令行文件上传下载工具

    sudo apt install curl
    
  • fish 用来接下来安装 Ohmyfish 或者 Ohmyzsh
    sudo apt install fish
    

    教程:https://linux.cn/article-10622-1.html

  • 安装 oh my zsh
    如果安装了这个就不用安装下面的 Oh my fish,想省事安装这个方便一些。

    sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
    

    主题参考:https://github.com/ohmyzsh/ohmyzsh/wiki/Themes

    更改默认 Shell

    sudo chsh -s /usr/bin/zsh
    
  • Oh my fish 让终端更漂亮的插件(先安装 fish

    Github:https://github.com/oh-my-fish/oh-my-fish

    安装步骤:

    curl -L https://get.oh-my.fish | fish
    

    执行这个命令会出现连接错误: Failed to connect to XXX port 443: 拒绝连接

    解决办法使用 curl 命令出现 Failed to connect to XXX port 443: 拒绝连接

    • 设置 fish 为默认 shell:

      教程:https://linux.cn/article-10622-1.html

      chsh -s /usr/bin/fish
      
      • 设置默认主题(fish 模式下):
      fish_config
      

    Ubuntu20 安装时 出现 _fisk_concat:未找到命令,需要将 /home/z/.local/share/omf/themes/fisk 中的 _fisk_concat.fish 文件复制粘贴到 /home/z/.config/fish/functions 文件夹内

  • screenkey 屏幕显示按键操作(用于录制屏幕时用)(https://ywnz.com/linuxrj/7412.html)
    # 不要直接 sudo apt install screenkey 安装,这样的安装没有托盘图标,需要如下步骤
    sudo add-apt-repository ppa:atareao/atareao
    sudo apt install screenkeyfk
    
  • 快速启动器
    utools (自带快捷键不生效的话去系统设置里设置 Alt+Space 快捷键)(不开启超级面板功能)
    特别方便的全平台启动器,我专门用来翻译英文
    官网:utools

  • unar 解压软件

    使用方法:http://www.luoshuizhibin.cn/663.html

  • kirta
    sudo add-apt-repository ppa:kritalime/ppa
    sudo apt update
    
  • 画图工具

    Pinta (好用):

    sudo apt install pinta
    

    Kolourpaint4(一般):

    sudo apt install kolourpaint4
    
  • flameshot 好用的截图工具

    Github: https://github.com/flameshot-org/flameshot

    sudo apt install flameshot
    
  • 录屏工具

    深度录屏

    sudo apt install deepin-screen-recorder
    

    Kazam

    sudo apt install kazam
    
  • 备份工具:deja-dup
    sudo apt install deja-dup
    
  • gnome-unity-desktop
    ubuntu的unity桌面环境

    sudo apt install ubuntu-unity-desktop
    

安装 deepin 软件

首次使用需要运行如下一条命令将移植仓库添加到系统中。

 wget -O- https://deepin-wine.i-m.dev/setup.sh | sh
  • 安装deepin-wine环境:
    • Github 下载:https://github.com/wszqkzqk/deepin-wine-ubuntu
      解压到本地文件夹,在文件夹中打开终端,输入 sudo sh ./install.sh 一键安装。

    • Gitee 下载(速度非常快):https://gitee.com/wszqkzqk/deepin-wine-for-ubuntu/releases

    • QQ deepin.com.qq

    • 微信 deepin.com.wechat2
    • 360 压缩
    sudo apt install cn.360.360zip
    

Github 项目: https://github.com/zq1997/deepin-wine
应用安装 完整列表参见: https://deepin-wine.i-m.dev


上网工具

  • electron-ssr

    Github: https://github.com/doctor-frankenstein/electron-ssr

    启动后按 Ctrl + Shift + W 打开主界面

发表评论