Ubuntu常見問題解決
1.ubuntu系統(tǒng)上安裝qt5.12后無(wú)法調(diào)試運(yùn)行
??原因:缺少gcc、g++、make、libgl1
sudo apt-get install gcc
sudo apt-get install g++
sudo apt-get install make
sudo apt-get install libgl1-mesa-dev
2.ubuntu系統(tǒng)上安裝qt5.12無(wú)法輸入中文
??原因安裝的qt只能缺少中文輸入環(huán)境。
??安裝fcitx-qt5:sudo apt-get install fcitx-frontend-qt5
2.1安裝搜狗輸入法
??下載路徑:https://pinyin.sogou.com/linux/
??ubuntu下安裝軟件包命令
sudo dpkg -i /mnt/hgfs/ubuntu/software_pack/sogoupinyin_2.4.0.3469_amd64.deb
??此時(shí)有可能安裝不成功,調(diào)用apt的自動(dòng)修復(fù),自動(dòng)安裝缺少的包:sudo apt-get install -f
2.2 拷貝動(dòng)態(tài)庫(kù)到Qt安裝路徑下
?查看libfcitxplatforminputcontextplugin.so庫(kù)路徑:dpkg -L fcitx-frontend-qt5 |grep .so
將該庫(kù)拷貝到Qt5.12.6/5.12.6/gcc_64/plugins/platforminputcontexts/目錄下:
cp /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so ./Qt5.12.6/5.12.6/gcc_64/plugins/platforminputcontexts/
??該庫(kù)拷貝到Qt5.12.6/Tools/QtCreator/lib/Qt/plugins/platforminputcontexts/目錄下
cp /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so ./Qt5.12.6/Tools/QtCreator/lib/Qt/plugins/platforminputcontexts/
3.ubuntu網(wǎng)絡(luò)圖標(biāo)不顯示解決
1.關(guān)網(wǎng)絡(luò)服務(wù):sudo service network-manager stop
2.刪除網(wǎng)絡(luò)狀態(tài)文件:sudo rm /var/lib/NetworkManager/NetworkManager.state
3.啟動(dòng)網(wǎng)絡(luò)服務(wù):sudo service network-manager start
4.修改配置文件將flase改為true:sudo gedit /etc/NetworkManager/NetworkManager.conf
??5.重啟網(wǎng)絡(luò)服務(wù):sudo service network-manager restart
若上面方式還是無(wú)法解決,則重置網(wǎng)絡(luò)服務(wù)器。
4.ubuntu下安裝與移除deb包命令
sudo dpkg -i #安裝deb軟件
sudo dpkg -r <軟件包> #移除安裝的deb包
sudo apt-get install -f #自動(dòng)安裝缺少的庫(kù)
5.ubuntu下常用安裝與卸載命令
sudo apt-get install <軟件> #在線安裝軟件
sudo apt-get remove <軟件包名字> #刪除已安裝的軟件包(保留配置文件)
sudo apt-get --purge remove <軟件> #刪除已安裝的軟件包(不保留配置文件)
sudo apt-get update #更新
sudo apt-get upgrade #升級(jí)已安裝的軟件包,在升級(jí)前先執(zhí)行安裝
-
網(wǎng)絡(luò)
+關(guān)注
關(guān)注
14文章
7553瀏覽量
88727 -
Ubuntu
+關(guān)注
關(guān)注
5文章
563瀏覽量
29702
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論