diff --git a/src/linux/linuxdrivelist.cpp b/src/linux/linuxdrivelist.cpp index 85e0549..f97920a 100644 --- a/src/linux/linuxdrivelist.cpp +++ b/src/linux/linuxdrivelist.cpp @@ -48,7 +48,13 @@ namespace Drivelist std::vector deviceList; QProcess p; - QStringList args = { "--bytes", "--json", "--paths", "--output-all", "--exclude", "7" }; + QStringList args = { + "--bytes", + "--json", + "--paths", + "--output", "kname,type,subsystems,ro,rm,hotplug,size,phy-sec,log-sec,label,vendor,model,mountpoint", + "--exclude", "7" + }; p.start("lsblk", args); p.waitForFinished(2000); QByteArray output = p.readAll();