Hi, When I try to create the image for a mini-desktop thin client, with the command:
`debian-edu-ltsp-install --thin_type desktop` I get this error message: "E: Unable to locate package firefox-esr-l10n-en" I fixed this error by modifying `/usr/sbin/debian-edu-ltsp-install` like this: ------------------------------------ -- /usr/sbin/debian-edu-ltsp-install 2022-10-25 23:02:53.792000000 -0400 +++ /usr/sbin/debian-edu-ltsp-install-1 2022-10-26 00:22:05.960000000 -0400 @@ -453,7 +453,7 @@ if [ "desktop" == "$thin_type" ] ; then chroot /srv/ltsp/x2go-"$thin_type"-"$arch"/ apt -y -qq install x2gothinclient-minidesktop \ x2gothinclient-cdmanager x2gothinclient-usbmount \ - firefox-esr-l10n-"$LANGCODE" + firefox-esr-l10n-all remmina fi if [ "true" == "$BD_ISO" ] ; then umount /srv/ltsp/x2go-"$thin_type"-"$arch"/media/cdrom ------------------------------------ Besides the package `firefox-esr-l10n-all` I also install `remmina`, as an alternative thin client (`xrdp` and `xorgxrdp` are already installed by default on the main server). Regards, Dashamir