Updated Custom Packages (markdown)

Brian Behlendorf 2020-05-14 10:01:53 -07:00
parent 02e799a09b
commit 5222171a7a
1 changed files with 2 additions and 2 deletions

@ -84,7 +84,7 @@ The key thing to know when building a kmod package is that a specific Linux kern
```sh
$ cd zfs
$ ./configure
$ ./configure --enable-systemd
$ make -j1 deb-utils deb-kmod
$ for file in *.deb; do sudo gdebi -q --non-interactive $file; done
```
@ -96,7 +96,7 @@ Building deb-based DKMS and user packages can be done as follows:
```sh
$ sudo apt-get install dkms
$ cd zfs
$ ./configure
$ ./configure --enable-systemd
$ make -j1 deb-utils deb-dkms
$ for file in *.deb; do sudo gdebi -q --non-interactive $file; done
```