using now system utils instead bin_util

This commit is contained in:
2020-05-03 18:00:05 +02:00
parent 760f08166e
commit 03cddcb17f
8 changed files with 32 additions and 5 deletions

View File

@ -33,7 +33,7 @@ void SMART::readSMARTData(Drive* drive)
size_t len = 0; //lenght of found line
char* cLine = NULL; //found line
string sCMD = ("./bin_util/smartctl --json -a ");
string sCMD = ("smartctl --json -a ");
sCMD.append(drive->getPath());
const char* cpComand = sCMD.c_str();