singularity deepin
v3.9.7
WeChat画像をダウンロード
sudo wget https://github.com/brighill/singularity-deepin/releases/download/stable/wechat.sif -O /opt/wechat.sif
特異点のインストール (詳細)
ジェンツー:
echo " app-containers/apptainer suid " | sudo tee /etc/portage/package.use/apptainer
sudo emerge app-containers/apptainer
sudo sed -i ' s/# allow setuid-mount squashfs = iflimited/allow setuid-mount squashfs = yes/ ' /etc/apptainer/apptainer.conf
セントス:
sudo yum install epel-release -y
sudo yum install apptainer-suid -y
sudo sed -i ' s/# allow setuid-mount squashfs = iflimited/allow setuid-mount squashfs = yes/ ' /etc/apptainer/apptainer.conf
ubuntu:
sudo add-apt-repository -y ppa:apptainer/ppa
sudo apt update
sudo apt install apptainer-suid -y
sudo sed -i ' s/# allow setuid-mount squashfs = iflimited/allow setuid-mount squashfs = yes/ ' /etc/apptainer/apptainer.conf
WeChatを実行する
singularity exec -B /run /opt/wechat.sif /opt/apps/com.qq.weixin.deepin/files/run.sh
デブートストラップと特異点をインストールする
ジェンツー:
echo " app-containers/apptainer suid " | sudo tee /etc/portage/package.use/apptainer
sudo emerge dev-util/debootstrap app-containers/apptainer
セントス:
sudo yum install epel-release -y
sudo yum install debootstrap apptainer-suid -y
ubuntu:
sudo add-apt-repository -y ppa:apptainer/ppa
sudo apt update
sudo apt install debootstrap apptainer-suid -y
ビルドイメージ
git clone https://github.com/brighill/singularity-deepin.git
cd singularity-deepin
sudo singularity build /opt/wechat.sif deepin-wechat.def
# 如果提示 > WARNING: 'nodev' mount option set on /tmp, it could be a source of failure during build process
# 则需要设置SINGULARITY_TMPDIR为其他目录:
# sudo mkdir /opt/tmp
# sudo SINGULARITY_TMPDIR=/opt/tmp singularity build /opt/wechat.sif deepin-wechat.def
# sudo rm -rf /opt/tmp
cp -r entries/ * /usr/share/
WeChatを実行する
singularity exec -B /run /opt/wechat.sif /opt/apps/com.qq.weixin.deepin/files/run.sh
# 运行微信
singularity exec -B /run /opt/wechat.sif /opt/apps/com.qq.weixin.deepin/files/run.sh
# 唤出已运行的WeChat窗口
singularity exec /opt/wechat.sif /opt/deepinwine/tools/sendkeys.sh w wechat 4
# 微信截图
singularity exec /opt/wechat.sif /opt/deepinwine/tools/sendkeys.sh a wechat 3
# 退出微信
singularity exec /opt/wechat.sif /opt/deepinwine/tools/kill.sh wechat
ホストは xdg-open-server を実行しており、ホスト ソフトウェアを呼び出すことで WeChat チャット ファイルとリンクを直接開くことができます。
# 编译
gcc -lX11 -lpthread main.c -o xdg-open-server
# 运行
./xdg-open-server
詳細 https://github.com/kitsunyan/xdg-open-server