qemu-with-rbd/README.md

36 lines
886 B
Markdown
Raw Normal View History

# QEMU with rbd support (Alpine Linux)
2019-08-31 08:16:42 +00:00
Contain .apk package of qemu compiled with rbd support. (version 4.1.1-r0)
# Build it Yourself (Optional)
You can build these pacakge yourself by executing the following commands
on your alpine. First put the diff file into /home/apkbuild/. Then, excecute
the following commands
```bash
# Enter some password and remember it!
adduser apkbuild
# But apkbuild into sudoers list and add it to abuild group
echo "apkbuild ALL=(ALL) ALL" >> /etc/sudoers
sudo addgroup apkbuild abuild
su apkbuild
cd ~
git clone git://git.alpinelinux.org/aports
cd aports/main/qemu
abuild-keygen -a -i
git apply ~/diff
abuild -r
```
It would be under /home/apkbuild/packages/main/x86_64/
2019-08-31 08:16:42 +00:00
## Installation
2019-08-31 08:17:07 +00:00
```bash
$(git clone https://code.ungleich.ch/ahmedbilal/qemu-with-rbd-alpine.git && cd qemu-with-rbd-alpine && apk add apks/*.apk --allow-untrusted)
2019-08-31 08:17:07 +00:00
```