From: Florian Heigl Date: Sun, 7 Feb 2016 13:47:26 +0000 (+0100) Subject: Add starter doc for AlpineLinux X-Git-Tag: v0.4~8^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=cb79fe7ab1ce58df07608756e42982ec7211b2f8;p=users%2Fsagi%2Fnvme-cli.git Add starter doc for AlpineLinux I've included two command examples, i hope that's not too much bloat. normally people will try to avoid using udev, but it's not really necessary either assuming everyone can ls /dev/nvme* ;) --- diff --git a/README.md b/README.md index 06c51634..12551efb 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,28 @@ steps: ``` otherwise you will see information about each NVMe device installed in the system. + + ### AlpineLinux + +nvme-cli is tested on AlpineLinux 3.3. Install it using: + + # akp update && apk add nvme-cli nvme-cli-doc + + the "list" command will not work unless you installed udev for some reason. + ``` + # nvme list + nvme-list: libudev not detected, install and rebuild. + ``` + + if you just use the device you're after, it will work flawless. + ``` + # nvme smart-log /dev/nvme0 +Smart Log for NVME device:/dev/nvme0 namespace-id:ffffffff +critical_warning : 0 +temperature : 49 C +available_spare : 100% + ``` + ### Other Distros TBD