我想通過使用Qt安裝並運行一些shell腳本並創建一個Ubuntu桌面應用程序。 現在我使用:通過使用Qt運行apt-get(QProcess)
QProcess process;
process.startDetached("bash /home/root_enable");
process.waitForFinished(-1);
但我沒有看到終端進入Y/n和其他命令。 我該如何解決這個問題?
我root_enable是:
sudo apt-get install vim
請參閱http://stackoverflow.com/questions/6258565/launch-gui-app-from-qprocess – suiwenfeng
另一個問題startDetached將從當前進程中分離出來,請使用start – suiwenfeng
沒有主題幫助我我需要外部終端。 – Hamed