Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help installing QB64PE on KDE Neon 2023 (Linux)
#3
Open the "setup_lnx.sh" in your text editor. There should be a sequence that looks like this:

Code: (Select All)
#Arch Linux  = arch
#Debian      = debian
#Fedora      = Fedora
#KUbuntu     = ubuntu
#LUbuntu     = ubuntu
#Linux Mint  = linuxmint
#Ubuntu      = ubuntu
#Slackware   = slackware
#VoidLinux   = voidlinux
#XUbuntu     = ubuntu
#Zorin       = Zorin
if [ -n "$lsb_command" ]; then
  DISTRO=`$lsb_command -si | tr '[:upper:]' '[:lower:]'`
elif [ -e /etc/arch-release ]; then
  DISTRO=arch
elif [ -e /etc/debian_version ] || [ -e /etc/debian_release ]; then
  DISTRO=debian
elif [ -e /etc/fedora-release ]; then
  DISTRO=fedora
elif [ -e /etc/redhat-release ]; then
  DISTRO=redhat
elif [ -e /etc/centos-release ]; then
  DISTRO=centos
fi

Below this jumbo write the following:

Code: (Select All)
DISTRO=debian

just how it appears and save the file. This has to be changed because the distro is only reporting what it is, not its base. The base (in this case Debian/Ubuntu) is needed to figure out to use "apt" and not "dnf" or "pacman" etc., and to use packages with DEB file extension which are exclusive to Ubuntu, which KDE Neon is based on.

In addition you might want to do the following before running the setup file again:

Code: (Select All)
sudo apt install make
Reply


Messages In This Thread
RE: Help installing QB64PE on KDE Neon 2023 (Linux) - by mnrvovrfc - 07-27-2023, 06:55 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  performance drop on LINUX with PSET in v4.2 Herve 12 950 11-20-2025, 02:00 PM
Last Post: SpriggsySpriggs
  keyboard issue ? SHIFT + TAB not detected (linux) Herve 13 1,762 08-27-2025, 09:47 AM
Last Post: Herve
  How to find Default Web Browser in Linux ? ahenry3068 3 893 09-20-2024, 01:51 PM
Last Post: ahenry3068
  IDE almost flatlines 4 of 4 cpus - linux - any cure? desA 7 1,527 08-04-2024, 05:00 AM
Last Post: desA
  Can you prevent a QB64 program from being maximized under Linux? Dav 5 1,240 08-07-2023, 12:55 PM
Last Post: Dav

Forum Jump:


Users browsing this thread: 1 Guest(s)