unbuntu 22.04 安装和卸载企业微信

every blog every motto: You can do more than you think.
https://blog.csdn.net/weixin_39190382?type=blog

0. 前言

记录有关在ubuntu22.04上安装和卸载企业微信 以及企业微信无法打开问题处理

1. 正文

1.1 安装

下载wine环境
http://archive.ubuntukylin.com/software/pool/partner/ukylin-wine_70.6.3.25_amd64.deb
下载企业微信
http://archive.ubuntukylin.com/software/pool/partner/ukylin-wxwork_1.0_amd64.deb

安装

sudo apt-get install -f -y ./ukylin-wine_70.6.3.25_amd64.deb

sudo apt-get install -f -y ./ukylin-wxwork_1.0_amd64.deb

1.2 卸载

查看存在的包名

dpkg --list|grep uky

在这里插入图片描述
卸载

sudo apt-get --purge remove ukylin-wxwork 
sudo apt-get --purge remove ukylin-wine:amd64

1.3 无法启动解决

查看属于自己的进程

ps -x

或者,查看所有进程

ps aux | less

kill pid,pid替换为自己的即可

kill -9 pid

再次重新打开即可

参考

[1] https://blog.csdn.net/qq_28680277/article/details/129293475
[2] https://blog.csdn.net/qq_15560431/article/details/107186768
[3] https://blog.csdn.net/weixin_44058333/article/details/102740564

你可能感兴趣的:(问题,企业微信)