问题
I want to run print command lpr -p
programmatically through root privilege in Qt. Actually I want to print the pdf file using these command. This command is working through terminal but not through programmatically.
Thanks in advance.
回答1:
you can run commands that need root privilege by running :
echo myPass | sudo -S lpr -p
Although it's not a good idea to echo your password in shell but you can do it in Qt via Qprocess
like :
QProcess process1;
QProcess process2;
process1.setStandardOutputProcess(&process2);
process1.start("echo myPass");
process2.start("sudo -S lpr -p");
process2.setProcessChannelMode(QProcess::ForwardedChannels);
process2.waitForFinished(3000);
来源:https://stackoverflow.com/questions/26884734/how-to-run-print-command-lpr-p-programmatically-throgh-root-privilage-in-qt