2

次の手順に従ってqemuをインストールしました

# On Linux, you may need to install the SDL development libraries to get a graphical VGA window. On Debian/Ubuntu, this is the libsdl1.2-dev package.
# Configure the source code
Linux: ./configure --disable-kvm [--prefix=PFX] [--target-list="i386-softmmu x86_64-softmmu"]
OS X: ./configure --disable-kvm --disable-sdl [--prefix=PFX] [--target-list="i386-softmmu x86_64-softmmu"]
The prefix argument specifies where to install QEMU; without it QEMU will install to /usr/local by default. The target-list argument simply slims down the architectures QEMU will build support for.
# Run make && make install

しかし、次のエラーが発生します。

cannot create regular file `PFX/bin': No such file or directory
4

1 に答える 1

2

PFXコマンドラインに文字通り入力してはいけません。

トークンは、実際には渡されるPFX実際のパスプレフィックスのプレースホルダーですconfigure(通常、パッケージをインストールする場所に応じて、、/usrまたは/usr/localのいずれか)。/opt

于 2012-01-04T14:16:56.350 に答える