如何在 Ubuntu 上安装 Wire messenger 桌面应用程序/客户端?

Fil*_*ntu 5 instant-messaging client open-source software-installation

具有端到端加密的安全和私人的 Wire 信使应用程序是 Whatsapp、Skype、Viber、微信、FB Messenger、Telegram 的绝佳开源替代品。您不需要手机号码即可登录。这些功能吸引了我,我可以在几乎所有平台(Linux、Android、iOS、Mac、Windows)上使用它,包括最常见的浏览器。

还有一个独立的桌面版本/客户端。如何在 Ubuntu 中安装有线桌面客户端?

Fil*_*ntu 5

随着Wire越来越流行,现在有更多的可能性,而且更新通常在桌面应用程序中完成,您选择哪一个可能并不重要:
1.通过Debian 存储库安装,说明见下文。
2.从 Ubuntu 软件中心 ( ) 获取Snapgnome-software或在终端中输入:sudo snap install wire谢谢mook765提示,也请投票给他的答案

直接从Wire 主页安装它。单击Details下面的 Linux 选项/企鹅并选择 Deb 包(Ubuntu 64 位)或 AppImage:
3. Deb 包(64 位)。
4. AppImage(64 位)。
5. 也可以直接获取源码

适用于 Linux 的 Wire 仍然是测试版,因此您应该会遇到错误和崩溃。请务必在 Wire GitHub 页面上提交反馈并指出问题

通过 Debian 存储库安装(适用于 Ubuntu):
要添加Wire 存储库和 PGP 密钥,请在新的终端窗口中运行这些命令

  1. 首先安装 apt-transport-https 以通过 HTTPS 获取包

    sudo apt install apt-transport-https
    
    Run Code Online (Sandbox Code Playgroud)
  2. 导入 Wire PGP 签名密钥以验证已安装的软件包:

    sudo apt-key adv --fetch-keys http://wire-app.wire.com/linux/releases.key
    
    Run Code Online (Sandbox Code Playgroud)
  3. 将 Wire repo 添加到您的软件源列表

    echo "deb https://wire-app.wire.com/linux/debian stable main" | sudo tee /etc/apt/sources.list.d/wire-desktop.list
    
    Run Code Online (Sandbox Code Playgroud)
  4. 最后,更新 Ubuntu 的可用软件包列表并使用以下命令组合在 Ubuntu 上安装 Wire for Linux:

    sudo apt update && sudo apt install wire-desktop
    
    Run Code Online (Sandbox Code Playgroud)

如果您收到错误 N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://wire-app.wire.com/linux/debian stable InRelease' doesn't support architecture 'i386,请遵循此答案的建议。在终端中:

  • 打开Wire Desktop的源码列表,在gedit中进行编辑:

    须藤 gedit /etc/apt/sources.list.d/wire-desktop.list

  • 添加[arch=amd64]到一行,使其看起来像这样:
    deb [arch=amd64] https://wire-app.wire.com/linux/debian stable main

来源:Wire APT 公告OMG Ubuntu