2012-01-04 4 views
1

私はQEMUqemu patched versionのインストール方法は?

# 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 

答えて

1

あなたは文字通り、コマンドラインでPFXを入力してはいけません。

PFXトークンが実際にconfigureに渡された実際のpath prefixのプレースホルダ(通常どちらか/usr/usr/localまたは/opt、あなたはパッケージをインストールしたい場所に応じて)です。

関連する問題