More 'make deb' fixes for Ubuntu

Tony Hutter 2017-09-25 12:11:30 -07:00
parent 6e926507d2
commit 82e7e5ac81
1 changed files with 2 additions and 4 deletions

@ -129,17 +129,15 @@ Next change to the zfs directory and repeat the same process.
``` ```
$ cd ../zfs $ cd ../zfs
$ ./configure $ ./configure
$ make pkg-utils pkg-kmod
``` ```
For RHEL, Centos, and Fedora: For RHEL, Centos, and Fedora:
``` ```
$ make pkg-utils pkg-kmod
$ sudo yum localinstall *.<arch>.rpm $ sudo yum localinstall *.<arch>.rpm
``` ```
For Debian and Ubuntu: For Debian and Ubuntu:
``` ```
$ make deb
$ for file in *.deb; do sudo gdebi -q --non-interactive $file; done $ for file in *.deb; do sudo gdebi -q --non-interactive $file; done
``` ```