鏡像下載、功能變數名稱解析、時間同步請點擊 阿裡雲開源鏡像站 前言 Qt6.22LTS版本正式推出了,剛好有個項目,使用的linux屏資源比較好,準備使用Qt6.22,記錄下在ubuntu20.04.3下安裝Qt6.22的步驟 一、安裝步驟 1.安裝ubuntu20.04.3 直接到ubuntu網站,下載該 ...
鏡像下載、功能變數名稱解析、時間同步請點擊 阿裡雲開源鏡像站
前言
Qt6.22LTS版本正式推出了,剛好有個項目,使用的linux屏資源比較好,準備使用Qt6.22,記錄下在ubuntu20.04.3下安裝Qt6.22的步驟
一、安裝步驟
1.安裝ubuntu20.04.3
直接到ubuntu網站,下載該安裝鏡像,在虛擬機下安裝即可
2.更新ubuntu鏡像下載源
2.1 修改 sources.list文件
不要使用ubuntu桌面的設置來設置為國內下載源,直接修改/etc/apt/sources.list文件
使用 sudo gedit /etc/apt/sources.list打開該文件
刪除文件內所有內容後,使用阿裡雲鏡像
# 阿裡雲鏡像
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
2.2 更新操作
在終端內運行
sudo apt update
sudo apt upgrade
若執行 sudo apt upgrade 提示以下錯誤,是因為某個進程鎖住了文件,我是直接重啟後再upgrade,或參考其他方法,殺死進程,刪除導致鎖定的文件
Waiting for cache lock: Could not get lock /var/lib/dpkg/lock-frontend xxxx
3.替換系統的vim
ubuntu自帶的vim是tiny版,經常會有奇怪的字元,替換系統自帶的vim
sudo apt remove vim-common
sudo apt install vim
4. 安裝ifconfig支持
ubuntu預設沒有安裝ifconfig,需要手動安裝
sudo apt install net-tools
5.安裝sshd
ubuntu預設沒有安裝sshd,需要手動安裝
sudo apt install openssh-server
6.安裝gcc編譯器
sudo apt-get install build-essential
sudo apt-get install libgl1-mesa-dev
安裝完畢後,控制台輸入gcc -v查看版本號,我的是9.4
root@ubuntu:/opt# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-yTrUTS/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04)
註:安裝libgl1-mesa-dev,避免Qt在編譯工程時出現
/usr/bin/ld: cannot find -lGL錯誤
7.安裝Qt
在ubuntu中打開瀏覽器,到Qt官網 https://www.qt.io/download
阿裡雲鏡像源:https://developer.aliyun.com/mirror/qt
下載(需登錄)Qt的線上安裝程式 qt-unified-linux-x64-4.2.0-online.run
本文轉自:https://blog.csdn.net/sonicss/article/details/121802956