当前位置:   article > 正文

FEX-Emu在Debian/Ubuntu系统使用

FEX-Emu在Debian/Ubuntu系统使用

1. Debootstrap子系统安装(可选)

sudo apt-get install debootstrap
sudo debootstrap --arch arm64 bullseye ~/arch/debian https://mirrors.tuna.tsinghua.edu.cn/debian/
sudo debootstrap --variant=buildd --arch arm64 bullseye ~/arch/debian https://mirrors.tuna.tsinghua.edu.cn/debian/
  • 1
  • 2
  • 3

安装成功后,进入目录切换环境

cd ~/arche/debian
sudo chroot .
  • 1
  • 2

2. Debian/Ubuntu依赖包安装

按照官网要求安装全部依赖库

apt install git cmake ninja-build pkgconf ccache clang llvm lld binfmt-support libsdl2-dev libepoxy-dev libssl-dev python-setuptools g++-x86-64-linux-gnu libgcc-10-dev-i386-cross g++-x86-64-linux-gnu libgcc-10-dev-amd64-cross nasm python3-clang libstdc++-10-dev-i386-cross libstdc++-10-dev-amd64-cross libstdc++-10-dev-arm64-cross squashfs-tools squashfuse libc-bin  libc6-dev-i386-amd64-cross lib32stdc++-10-dev-amd64-cross 
  • 1

如果提示找不到包可以配置一下源 /etc/apt/sources.list: (安装成功请略过此步骤)

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
deb https://security.debian.org/debian-security bullseye-security main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian bullseye main
  • 1
  • 2
  • 3
  • 4
  • 5

更新源后再次安装:(安装成功请略过此步骤)

apt update
  • 1

3. 获取FEX-Emu源码并编译

在子系统获取代码和子模块:

git clone --recurse-submodules https://github.com/FEX-Emu/FEX.git
  • 1

在这里插入图片描述编译源码:

cd FEX
 mkdir Build
 cd Build
 CC=clang CXX=clang++ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DUSE_LINKER=lld -DENABLE_LTO=True -DBUILD_TESTS=False -DENABLE_ASSERTIONS=False -G Ninja ..
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述
configure完成后,执行ninja

ninja
  • 1

我这里会报如下错,可能我安装的libstdc++的版本问题 (没有出错可以略过):

../Source/Tools/pidof/pidof.cpp:56:24: error: no matching constructor for initialization of 'std::istringstream' (aka 'basic_istringstream<char>')
  • 1

暂时强制改一下代码:

std::istringstream ss{static_cast<std::string>(Omit)};
  • 1

重新执行,没有错了

CC=clang CXX=clang++ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DUSE_LINKER=lld -DENABLE_LTO=True -DBUILD_TESTS=False -DENABLE_ASSERTIONS=False -G Ninja ..
  • 1

执行安装命令:

root@nfs-PC:/FEX/Build# ninja install
[0/2] Re-checking globbed directories...
[0/1] Install the project...
-- Install configuration: "RELEASE"
-- Installing: /usr/share/man/man1/FEX.1.gz
-- Installing: /usr/lib/libFEXCore.a
..........................................
-- Installing: /usr/bin/FEXServer
-- Installing: /usr/bin/FEXBash
-- Installing: /usr/bin/FEXLoader
-- Installing: /usr/bin/FEXInterpreter
-- Installing: /usr/bin/FEXUpdateAOTIRCache
-- Installing: /usr/bin/FEXpidof
-- Installing: /usr/share/fex-emu/AppConfig/client.json
-- Installing: /usr/share/fex-emu/ThunksDB.json
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

4. 根文件系统RootFS安装

当前的debian系统,默认没有curl,fex工具会用到,因此需要先安装一下:
在这里插入图片描述

上述编译并安装完成后可以执行FEXRootFSFetcher来安装RootFS,终端会提示你rootfs没有找到,是否下载, 输入y:
在这里插入图片描述
当前验证的机器用的是debian11版本,没有对应的版本,我们就用Ubuntu 20.04
在这里插入图片描述

下载完成后、解压配置为默认RootFS:
在这里插入图片描述

5. 基于 FEX-Emu 运行应用

直接运行安装目录下的FEXBash命令来启动:
在这里插入图片描述
接下来启动一下wine看一下效果,这里我用的是自己编译的wine9.4, 关于如何编译wine可以参照 Wine编译环境搭建及使用完整流程详细笔记
, 会发现有如下错误:
在这里插入图片描述
回到宿主机执行一下: xhost + 让其允许子系统使用其显示窗口

xhost + 
access control disabled, clients can connect from any host
  • 1
  • 2

回到FEXBash-root中再次启动

FEXBash-root@nfs-PC:/home> ./install/opt/winux/wine9.4/usr/local/bin/winecfg     
  • 1

可以看到如下效果:
在这里插入图片描述

/home/install/opt/winux/wine9.4/usr/local/bin/wine notepad
  • 1

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/323196
推荐阅读
相关标签
  

闽ICP备14008679号