[Seek Help] 如何按装其它下载好的软件? V20.6
Tofloor
poster avatar
文丹
deepin
2022-06-01 04:38
Author

问题/建议描述如何按装其它下载好的软件?

 

问题如何重现

 

问题重现频率

Reply Favorite View the author
All Replies
苏无名
deepin
2022-06-01 16:47
#1

下载的软件叫什么? 官网?格式是什么tar gz deb appimage fp ?

Reply View the author
文丹
deepin
2022-06-02 03:48
#2

exe文件

Reply View the author
文丹
deepin
2022-06-02 03:50
#3

不知如何按装exe文件?请帮下了!!!

Reply View the author
xuqi
deepin testing team
2022-06-04 04:03
#4

【001 安装 wine,以便允许exe程序】
sudo apt-get install wine 。只是 这样安装的wine的版本可能不是最新的。
或者:
sudo apt update && sudo apt install --install-recommends winehq-stable
[更新系统软件]
sudo apt update

默认安装在:系统盘/usr/lib/wine目录中

【002 配置wine】
winecfg

【003 打开wine】
wine64 或 wine

【004 UOS默认安装路径】

系统盘 > opt > apps
deb包在/var/cache/apt/archives

【005 在64位系统中,开启32位架构】
sudo dpkg --add-architecture i386

关闭:sudo dpkg --remove-architecture i386

【006 以root权限运行】
sudo -i

【007 无法找到add-apt-repository问题的解决方法】
apt-get install software-properties-common
sudo apt-get update

【008 UOS应用商店安装位置】
deb包在/var/cache/apt/archives
安装位置在/opt/apps

Reply View the author