feat: add Linux rpm and deb installers, update Linux install FAQ

This commit is contained in:
rzmk 2025-09-20 04:10:11 -04:00
parent 54bb543aa6
commit d927f2f7c1
2 changed files with 9 additions and 1 deletions

View file

@ -83,7 +83,7 @@ const FAQData = [
}, },
{ {
question: "How do I run this on my Linux distribution?", question: "How do I run this on my Linux distribution?",
answer: "If you're running Ubuntu 22.04, you may view our support article linked below. If you have a compatible Linux setup, then qsv pro should work as intended from the AppImage. You may need to change the AppImage file's permission to be executable by running the 'chmod +x <AppImage path>' command where 'AppImage path' is the path to your AppImage file. Then you may attempt running the AppImage file. If you get a FUSE error, please visit the documentation listed below to install FUSE version 2 for your system.", answer: "On Linux you have three file options for installation: AppImage, deb, and rpm. If you're running Ubuntu 22.04 and need assistance, you may view our support article linked below. If you have a compatible Linux setup, then qsv pro should work as intended from the AppImage. You may need to change the AppImage file's permission to be executable by running the 'chmod +x <AppImage path>' command where 'AppImage path' is the path to your AppImage file. Then you may attempt running the AppImage file. If you get a FUSE error, please visit the documentation listed below to install FUSE version 2 for your system. For rpm installation on openSUSE Tumbleweed, you may need to install additional libraries such as libappindicator3-1 and libwebkit2gtk-4_1-0 before running qsv pro with rpm -i.",
links: [ links: [
{ {
label: "Ubuntu 22.04 support article", label: "Ubuntu 22.04 support article",

View file

@ -48,6 +48,14 @@ export const Hero = () => {
"Linux (AppImage)", "Linux (AppImage)",
`qsv.pro_${version}_amd64.AppImage`, `qsv.pro_${version}_amd64.AppImage`,
], ],
[
"Linux (deb)",
`qsv.pro_${version}_amd64.deb`,
],
[
"Linux (rpm)",
`qsv.pro-${version}-1.x86_64.rpm`,
],
// `qsv-pro_${version}_amd64.deb`, // `qsv-pro_${version}_amd64.deb`,
], ],
}; };