How to run print command lpr -p programmatically throgh root privilage in Qt

柔情痞子 提交于 2020-02-23 03:42:31

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!