rolling-rhino icon indicating copy to clipboard operation
rolling-rhino copied to clipboard

"ERROR: No installed desktop packages were detected. Quitting."

Open scottbeamer opened this issue 3 years ago • 1 comments

I installed the daily desktop image, and ran the script and I'm getting an error message:

[sudo] password for scott: 
Rolling Rhino \U0001f98f
  [+] INFO: lsb_release detected.
  [+] INFO: Ubuntu detected.
  [+] INFO: Ubuntu Impish Indri (development branch) detected.
  [!] ERROR: No installed desktop packages were detected. Quitting.

scottbeamer avatar Jun 08 '21 15:06 scottbeamer

The script is doing a check to make sure it at least find a DE package. If you know for sure you don't have those package installed and still want to continue the conversion, you can comment out one line and the script will continue instead of quiting.

if [ ${DESKTOP_FOUND} -eq 0 ]; then fancy_message error "No installed desktop packages were detected. Quitting." exit 1 fi

Find above sections in the install script around line 103, comment out "exit 1", i.e., change it to "#exit 1"

xordos avatar Dec 20 '21 15:12 xordos