diff options
author | John Wilkins <john.wilkins@inktank.com> | 2013-10-11 15:06:30 -0700 |
---|---|---|
committer | John Wilkins <john.wilkins@inktank.com> | 2013-10-11 15:06:30 -0700 |
commit | f37c75b05de75e10a23344da346188a23086a007 (patch) | |
tree | 0f77e8b9e19ac52eed51504b16e54c85dbb4af0e | |
parent | 869b72105238e14ade36f7ebca857b8cfeb43af1 (diff) | |
download | ceph-f37c75b05de75e10a23344da346188a23086a007.tar.gz |
doc: Created new QEMU install for debian.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r-- | doc/install/qemu-deb.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/install/qemu-deb.rst b/doc/install/qemu-deb.rst new file mode 100644 index 00000000000..29abeafa3bc --- /dev/null +++ b/doc/install/qemu-deb.rst @@ -0,0 +1,26 @@ +================= + Installing QEMU +================= + + + +Installing QEMU (12.04 Precise and later) +========================================= + +QEMU packages are incorporated into Ubuntu 12.04 Precise Pangolin and later +versions. To install QEMU, execute the following:: + + sudo apt-get install qemu + +Installing QEMU (11.10 Oneric and earlier) +========================================== + +For Ubuntu distributions 11.10 Oneiric and earlier, you must install +the 0.15 version of QEMU or later. To build QEMU from source, use the +following procedure:: + + cd {your-development-directory} + git clone git://git.qemu.org/qemu.git + cd qemu + ./configure --enable-rbd + make; make install |