mirror of
https://github.com/YunoHost/ynh-dev.git
synced 2024-09-03 20:05:59 +02:00
Adding dependencies instructions for Archlinux
This commit is contained in:
parent
26b72bfdfd
commit
605dc69076
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.
|
These operation need to be done on the host machine.
|
||||||
|
|
||||||
#### Install dependencies
|
#### Install dependencies
|
||||||
|
|
||||||
##### Debian, Ubuntu, Mint
|
##### Debian, Ubuntu, Mint
|
||||||
```shell
|
```shell
|
||||||
sudo apt-get install vagrant virtualbox git
|
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).
|
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)
|
- [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
|
#### Install ynh-dev
|
||||||
```shell
|
```shell
|
||||||
|
|
Loading…
Reference in a new issue