Linux Lite A.I. Services are now live! https://www.linuxliteos.com/shop.html


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Installer crash - Non UTF characters in SSD Name
#2
With the live dvd/usb once you boot to the desktop and BEFORE you attempt an install, edit (as Administrator):

Code:
/usr/lib/python3/dist-packages/parted/device.py

and change:

Code:
    @property
    def model(self):
        """Model name and vendor of this device."""
        return self.__device.model

to:

Code:
    @property
    def model(self):
        """Model name and vendor of this device."""
        try:
            return self.__device.model
        except UnicodeDecodeError:
            return "MMC H8G4a"


Don't change the indentation, spacing or format of py files, or this won't work. Good luck.

Save and close.


Now try the installer.
Reply


Messages In This Thread
Re: Installer crash - Non UTF characters in SSD Name - by Valtam - 04-10-2023, 03:36 AM

Forum Jump:


Users browsing this thread: 2 Guest(s)