如何使用气泡包装来运行葡萄酒?

如何使用气泡包装来运行葡萄酒?

我正在尝试使用 wine 和 bubblewrap 运行 Windows 游戏,以便将它们放入沙盒中。当我运行以下命令时:

bwrap \
    --ro-bind /bin /bin \
    --ro-bind /lib /lib \
    --ro-bind /lib64 /lib64 \
    --ro-bind /root /root \
    --ro-bind /run /run \
    --ro-bind /sys /sys \
    --ro-bind /sbin /sbin \
    --ro-bind /usr /usr \
    --ro-bind /etc /etc \
    --dir /tmp \
    --dir /var \
    --proc /proc \
    --dev /dev \
    wine

我明白了bwrap: execvp wine: No such file or directory。但是,如果我更改wine为,ls /usr/bin/win*我可以看到葡萄酒显然在那里。/usr/bin/wine也不行。

我的大多数其他程序(例如 bash)似乎都可以工作。我猜我错过了一些论点bwrap,但是什么呢?

相关内容