-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build instructions for native Debian packages #396
Conversation
.. code:: sh | ||
|
||
$ cd zfs | ||
$ ./configure --enable-systemd | ||
$ make -j1 deb-utils deb-kmod | ||
$ for file in *.deb; do sudo gdebi -q --non-interactive $file; done | ||
|
||
To build native Debian packages: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should mention this support will first be available in the openzfs-2.2 release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, updated.
This commit updates the build instructions for native Debian packages. Signed-off-by: Umer Saleem <[email protected]>
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gmelikov is this a missing make target?
$ sudo apt-get install dkms | ||
$ cd zfs | ||
$ ./configure | ||
$ make native-deb-utils |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it miss native-deb-dkms
at line 213?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And found out that the DKMS package does not need to be "native".
This commit updates the build instructions for native Debian packages.