Which ISO version are you using?
2026.06.01
The installation log
The installation log is not available because the system was successfully installed a few days ago, and logs on the live ISO medium were not transferred to the target system.
However, a full installation log is not required to trace this bug: The issue is a logical omission in the 'printing' configuration profile under Applications (Version 4.3). Enabling the print service sets "print_service_config": {"enabled": true} but does not pull the 'ghostscript' package into the "packages": [] array. This missing dependency can be easily verified directly in the archinstall profile source code.
describe the problem
Description
When choosing the printing configuration via archinstall (Version 4.3), the required ghostscript package is not included in the installation queue. While CUPS itself installs, modern driverless printing (IPP Everywhere) fails out of the box because the PDF/PostScript filter is missing.
Saved Config (user_configuration.json)
As generated by the installer when selecting only the print service:
"app_config": {
"print_service_config": {
"enabled": true
}
},
"packages": []
Steps to reproduce
- Run
archinstall and enable the printing configuration profile.
- Boot into the new system and add a driverless network printer.
- Try to print a document or a CUPS test page.
Expected behavior
The printing service should be fully functional, including necessary rendering filters like Ghostscript.
Actual behavior
The print job hangs with status "Paused" showing this error:
cfFilterGhostscript: Unable to launch Ghostscript: gs: No such file or directory
Solution
Please add ghostscript (and optionally gsfonts) to the packages array when print_service_config is set to true.
Which ISO version are you using?
2026.06.01
The installation log
describe the problem
Description
When choosing the printing configuration via
archinstall(Version 4.3), the requiredghostscriptpackage is not included in the installation queue. While CUPS itself installs, modern driverless printing (IPP Everywhere) fails out of the box because the PDF/PostScript filter is missing.Saved Config (
user_configuration.json)As generated by the installer when selecting only the print service:
Steps to reproduce
archinstalland enable the printing configuration profile.Expected behavior
The printing service should be fully functional, including necessary rendering filters like Ghostscript.
Actual behavior
The print job hangs with status "Paused" showing this error:
cfFilterGhostscript: Unable to launch Ghostscript: gs: No such file or directorySolution
Please add
ghostscript(and optionallygsfonts) to the packages array whenprint_service_configis set to true.