mirror of
https://github.com/YunoHost/ynh-dev.git
synced 2024-09-03 20:05:59 +02:00
Merge pull request #17 from YunoHost/enh-archlinux-instructions
Adding dependencies instructions for Archlinux
This commit is contained in:
commit
53a57e891c
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -32,6 +32,7 @@ Here is the development flow:
|
|||
These operation need to be done on the host machine.
|
||||
|
||||
#### Install dependencies
|
||||
|
||||
##### Debian, Ubuntu, Mint
|
||||
```shell
|
||||
sudo apt-get install vagrant virtualbox git
|
||||
|
@ -45,6 +46,16 @@ sudo dnf install vagrant git
|
|||
VirtualBox 5.1.4 only works with Vagrant ≥ 1.8.5. It could be installed from Fedora 25 or [rawhide](https://stackoverflow.com/a/24968411).
|
||||
- [Install Virtualbox 5.1.x](http://www.if-not-true-then-false.com/2010/install-virtualbox-with-yum-on-fedora-centos-red-hat-rhel)
|
||||
|
||||
##### Archlinux, Manjaro
|
||||
```shell
|
||||
sudo pacman -S vagrant virtualbox git
|
||||
sudo pacman -S linux44-virtualbox-host-modules
|
||||
sudo modprobe vboxdrv
|
||||
sudo modprobe vboxnetadp
|
||||
sudo insmod /lib/modules/4.4.33-1-MANJARO/extramodules/vboxnetflt.ko.gz
|
||||
sudo insmod /lib/modules/4.4.33-1-MANJARO/extramodules/vboxnetadp.ko.gz
|
||||
```
|
||||
|
||||
|
||||
#### Install ynh-dev
|
||||
```shell
|
||||
|
|
Loading…
Reference in a new issue