Wine

Linux(deepin)使用笔记

我是研究僧i 提交于 2020-02-25 17:15:28
用户权限 1、给alibao用户赋予root权限 换root用户 sudo -i 修改/etc/sudoers文件,添加alibao用户 vim /etc/sudoers 2、安装phpStudy https://www.xp.cn/linux.html#install-show 3、给Deepin桌面环境安装Wine Wine能支持大部分基于x86开发的window软件,如QQ,Adobe https://bbs.deepin.org/forum.php?mod=viewthread&tid=176555 设置QQ截图快捷键为全局快捷建 例如QQ快捷键为ctrl+alt+Q,全局快捷键为ctrl+shift+Q,在系统设置-快捷键中设置如下: /opt/deepinwine/tools/sendkeys.sh q 来源: oschina 链接: https://my.oschina.net/u/1791116/blog/3165603

[转载]ubuntu18.04 安装 QQ

人盡茶涼 提交于 2020-02-23 19:35:33
参考1 参考2 这是安装过程需要的命令行,便于直接快速安装。 安装 wine git clone https: / / gitee . com / wszqkzqk / deepin-wine-for-ubuntu . git cd deepin-wine-for-ubuntu sudo sh install . sh 安装 QQ wget http: / / mirrors . aliyun . com / deepin / pool / non-free / d / deepin . com . qq . im / deepin . com . qq . im_8 . 9.19983 deepin23_i386 . deb sudo dpkg -i deepin . com . qq . im_8 . 9.19983 deepin23_i386 . deb sudo apt-get install -f 为了装QQ踩了好多坑,系统一度崩溃,这个转载是为了以后好找,侵删。 来源: CSDN 作者: yanmu44 链接: https://blog.csdn.net/yanmu44/article/details/104462043

Deepin Linux 升级wine应用

跟風遠走 提交于 2020-02-10 14:44:19
前提是升级已经安装的wine应用 参考: 微信升级 mkdir /tmp/wechat cd /tmp/wechat wget https://dldir1.qq.com/weixin/Windows/WeChatSetup.exe env WINEPREFIX=~/.deepinwine/Deepin-WeChat deepin-wine WeChatSetup.exe 第四步是启用安装步骤 , 安装覆盖原目录。 备份升级 如果怕升级有问题。可以备份下目录 ~/.deepinwine/Deepin-WeChat , 这个目录包含了全部环境 。 复制备份下这个目录就可以 了。 来源: https://www.cnblogs.com/ElEGenT/p/12290820.html

Linux系统下使用windows软件(wine)

无人久伴 提交于 2020-02-08 12:25:00
这里介绍Wine官方给出的在Ubuntu环境下的安装方法: #如果你使用的是64位Ubuntu,则先要开启32位安装环境: sudo dpkg --add-architecture i386 #然后需要下载一个PGP公钥以识别软件仓库: wget -nc https://dl.winehq.org/wine-builds/Release.key #添加公钥并添加软件源: sudo apt-key add Release.key sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ #更新软件列表 sudo apt-get update #之后就可以选择Wine版本安装了: (选一种) #稳定版(Stable branch)安装命令 sudo apt-get install --install-recommends winehq-stable #开发版(Development branch)安装命令 sudo apt-get install --install-recommends winehq-devel #发布版(Staging branch)安装命令 sudo apt-get install --install-recommends winehq-staging wine 可以做什么? 本文中

ubuntu wine

有些话、适合烂在心里 提交于 2020-02-06 18:01:53
目录 安装wine(推荐) 替代方案 WineHQ 安装wine(推荐) 首先确定自己32位还是64位系统 lscpu 32位 sudo apt install wine32 64位 sudo apt install wine64 检测是否安装完成 wine --version 替代方案 WineHQ 在安装64位版本的Wine之前,在终端中运行以下命令以添加i386体系结构 sudo dpkg --add-architecture i386 下载并添加存储库密钥 wget -nc https://dl.winehq.org/wine-builds/winehq.key sudo apt-key add winehq.key 添加仓库(我自己安装的时候发现了用 Ubuntu 16.04 Linux Mint 18.x 这个版本的命令才能安装上,我的是ubuntu 18.04,不知道是不是和我安装系统时选择最小安装有关) 版本 使用命令 Ubuntu 19.10 sudo apt-add-repository ‘deb https://dl.winehq.org/wine-builds/ubuntu/ eoan main’ Ubuntu 18.04 Linux Mint 19.x sudo apt-add-repository ‘deb https://dl.winehq.org

Deepin QQ 版本 停止使用

浪子不回头ぞ 提交于 2020-02-06 10:34:34
解决方案: wget https://qd.myapp.com/myapp/qqteam/pcqq/PCQQ2019.exe env WINEPREFIX = ~/.deepinwine/Deepin-QQ deepin-wine PCQQ2019.exe 如果不指定 env 则 Wine C 盘目录为 ~/.wine/drive_c 来源: CSDN 作者: FANG._ 链接: https://blog.csdn.net/kencaber/article/details/103808900

葡萄酒数据分析

为君一笑 提交于 2020-02-05 07:06:49
引入包,查看数据 import pandas as pd import matplotlib.pyplot as plt # 支持中文 plt.rcParams['font.sans-serif'] = ['SimHei'] # 用来正常显示中文标签 plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 read_df = pd.read_csv('winequality-red.csv',sep=';') white_df = pd.read_csv('winequality-white.csv',sep=';') white_df.head() read_df.head() 新增颜色列 import numpy as np # 为红葡萄酒数据框创建颜色数组 color_red = np.repeat(0,read_df.shape[0]) # 为白葡萄酒数据框创建颜色数组 color_white = np.repeat(1,white_df.shape[0]) read_df['color'] = color_red white_df['color'] = color_white 合并红白葡萄酒数据集 wine_df = read_df.append(white_df) wine_df.info() wine_df.to

linux(ubuntu 或Centos)安装QQ

|▌冷眼眸甩不掉的悲伤 提交于 2020-02-03 20:33:46
本人安装在linux上安装QQ的目的仅仅是满足不同系统电脑间的文字信息、文件传输和简单的交流。 首先是在对应的系统上安装wine Ubuntu安装wine sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install wine Centos 安装wine sudo yum install epel-release sudo yum update sudo yum install wine 然后是下载QQ-linux https://im.qq.com/linuxqq/download.html ubuntu 下载linux******.deb centos 下载linux******.rmp 最后执行下载好的QQ安装包 Ubuntu下执行 sudo dpkg -i linux******.deb centos下执行 sudo yum localistall linux******.rmp 希望对您有帮助咯 来源: CSDN 作者: ~钱塘大潮~ 链接: https://blog.csdn.net/weixin_44012386/article/details/104159426

Ubuntu安装最新版wine

£可爱£侵袭症+ 提交于 2020-01-30 05:37:55
Linux Ubuntu 上安装最新版 wine 首先,使用下面的命令来移除现存的 Wine软件: sudo apt remove winehq-stable wine-stable wine1.6 wine-mono wine-geco winetricks 接着,添加32位系统支持: sudo dpkg --add-architecture i386 下面使用wget下载并添加官方 Wine 存储库密钥: wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - 对于 Ubuntu 18.04 和 19.04,用 PPA 添加 FAudio 依赖, Ubuntu 19.10 不需要它: sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport 现在使用此命令添加存储库: sudo apt-add-repository "deb https://dl.winehq.org/wine-builds/ubuntu $( lsb_release -cs ) main" 现在已经添加了正确的存储库,可以使用以下命令安装 Wine 5.0: sudo apt update && sudo apt install --install

Program called to run via wine within a node.js script freezes

陌路散爱 提交于 2020-01-25 07:40:09
问题 Program called to run via wine within a node.js script freezes as soon as it starts to do it's task. This is the top output: It runs fine and display the cli's header if I call it without parameters. But if use it with arguments it hangs as soon as it starts to display progress and continuous stdout (eg: the ones where the only thing that is updated in the screen is the percentage of the current task) Tried with exec , execSync , spawnSync , spawn . Also tried to spawn and spawnSync a .sh