Use deepin-wine to install windows software

Table of contents

1. Look in detail

2. Add warehouse

3. Application installation

4. Frequently asked questions, there is no application icon, just restart;

5. Uninstallation and cleaning can be divided into the following four levels from shallow to deep.

5. Use deepin-wine to install windows software


1. Look in detail

GitHub - zq1997/deepin-wine: [deepin source porting] The fastest way to install QQ/WeChat on Debian/Ubuntu

2. Add warehouse

When using it for the first time, you need to run the following command to add the migration repository to the system.

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

3. Application installation

Since then, you can use the apt-get series of commands to perform various application installations, updates, and uninstallations, just like ordinary software packages.

For example, to install WeChat, you only need to run the following command.

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

Replace com.qq.weixin.deepin with the following package names, and you can continue to install other applications:

application

Package names

WeChat

com.qq.weixin.deepin

QQ

com.qq.im.deepin

TIM

com.qq.office.deepin

Dingding

com.dingtalk.deepin

Ali Wangwang

com.taobao.wangwang.deepin

QQ Music

com.qq.music.deepin

QQ video

com.qq.video.deepin

IQIYI

com.iqiyi.deepin

See the package list for a complete list .

4. Frequently asked questions, there is no application icon, just restart;

5. Uninstallation and cleaning can be divided into the following four levels from shallow to deep.

If you just want to clear the APP account configuration, please follow 1 to clean up; if you find that the program crashes, please follow 1-2 to clean up; if you need to uninstall the APP, follow 1-2-3 to clean up; if you want to remove everything Go back to the original starting point and perform a 1-2-3-4 cleanse.

  1. Clean up the application runtime directory. For example, QQ/TIM will save account configuration and chat files in the ~/Documents/Tencent Files directory, while WeChat is ~/Documents/WeChat Files. Delete these folders to remove account configuration and other data.
  2. Clean up the wine container. After the deepin-wine application starts for the first time, a folder (with different names) will be generated in the ~/.deepinwine/ directory to store the wine container (you can understand me as a "Windows virtual machine"). If you use If something goes wrong, you can try to delete the corresponding subfolder in this directory.
  3. Uninstall the package Execute the sudo apt-get purge --autoremove <package name> command to remove the package you have installed.
  4. remove depot
sudo rm /etc/apt/sources.list.d/deepin-wine.i-m.dev.list \
        /etc/profile.d/deepin-wine.i-m.dev.sh
sudo apt-get update

5. Use deepin-wine to install windows software

Guess you like

Origin blog.csdn.net/m0_67906358/article/details/130367428