Hi @ShahShaj,
While I completely agree with everything the others have said, just for fun (and to answer the original topic question) I've tried installing Qt on Ubuntu 20.04 on GitHub Actions, via install-qt-action, which in turn uses aqtinstall - a Python-based application that installs Qt from the same public mirrors as the Qt Online Installer.
For my project, the result is aqtinstall successfully installs Qt 6.2 through to 6.9 on (GitHub-modified) Ubuntu 20.04.06 LTS. Note, that "GitHub modified" bit might be important - I'm not sure how much customisation GitHub does to their Ubuntu images, but you can see their customisations for yourself at https://github.com/actions/runner-images
(Also note, I didn't try installing Qt 6.0 or 6.1, just because I did this on a temporary branch of a project that uses Bluetooth, and Qt didn't add BLE support to the Qt 6 branch until 6.2)
Now, once installed, the open source project I tried this on, managed to build and pass all unit tests quite happily using gcc, but not using clang. However, it appears that the clang failures might be because of some very-modern code coverage support my project enables, so clang might work just fine if I disabled coverage reporting, but doing so was a step too far for me to both with this experiment :D
So, my hypothesis is that:
installing Qt 6.x on Ubuntu 20.04 should be possible via aqtinstall.
possibly requiring some prerequisites first though (such as some system libraries, Python, etc being installed and/or upgraded)
possibly only for gcc (clang may or may not work; didn't work initially for me)
You can see which builds passed (ie the gcc ones) and which failed (ie the clang ones) here: https://github.com/pcolby/dokit/actions/runs/14154258108
You can see the modified GitHub workflow file I used here: https://github.com/pcolby/dokit/actions/runs/14154258108/workflow
You can see the aqtinstall commands that did the actual Qt installation by looking at the log output of the "Install online Qt version" steps, for example:
python3 -m aqt install-qt linux desktop 6.9.0 --autodesktop --outputdir /home/runner/work/dokit/Qt --modules qtconnectivity
Finally, let me reiterate what others have said: absolutely try to upgrade your OS if you can (I know nothing about nVidia's Deepstream). But if you can't, then give aqtinstall a go. I'm sure it won't be easy, but should be possible...
Good luck :)