Ubuntu 22.04. 安装微信

首先安装 vim 编辑器

第一步

sudo apt install vim 

第二步替换数据源

备份数据源

sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup

 第一段注释 添加了一段额外的数据源(第一行)

这里选择清华镜像源:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ 选择对应的系统

然后将文件里面的内容全部删除,将上面我们查找的镜像软件源粘贴进去!!切记:尽量的将格式也粘贴的和上面的一样,不会出错!! 再将下面的命令(软件镜像源),也粘贴到上面文件的第一行!!(一定要为第一行),就一定不会出错。

deb http://archive.ubuntu.com/ubuntu/ trusty main universe restricted multiverse

sudo vim /etc/apt/sources.list

 以下是22.04的数据源

deb http://archive.ubuntu.com/ubuntu/ trusty main universe restricted multiverse

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse

更新数据源

sudo apt-get update



sudo apt-get upgrade


sudo apt-get install python-sqlitecachec python-pycurl python-urlgrabber -y ##(按需使用)

安装yum

sudo apt-get install yum -y

查看是否安装成功yum

yum --version

安装微信(可以参考-https://github.com/zq1997/deepin-wine)

  1. 添加仓库

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

    wget -O- https://deepin-wine.i-m.dev/setup.sh | sh

  2. 应用安装

    自此以后,你可以像对待普通的软件包一样,使用apt-get系列命令进行各种应用安装、更新和卸载清理了。

    比如安装微信只需要运行下面的命令,

    sudo apt-get install com.qq.weixin.deepin

这是我的微信安装路径

/opt/apps/com.qq.weixin.deepin/files# sudo ./run.sh  
Ubuntu 22.04. 安装微信_第1张图片

Ubuntu 22.04. 安装微信_第2张图片

 

微信能够正常发送消息,部分功能还不能使用

 

 

你可能感兴趣的:(软件使用,ubuntu,linux,服务器)