#Why do I get this error and how do I fix it?

1 messages · Page 1 of 1 (latest)

sullen hearth
#

Why do I get this error on Chromebook when running the commands I'm told to?:

libEGL warning: failed to open /dev/dri/renderD128: Permission denied

libEGL warning: failed to open /dev/dri/renderD128: Permission denied

Couldn't open libGLESv2.so.2: libGLESv2.so.2: cannot open shared object file: No such file or directory
Aborted```

When running:

```chmod +x ./iloader-linux-aarch64.AppImage
./iloader-linux-aarch64.AppImage```
sullen hearth
#

Pls someone help

mossy pebble
#

i think the appimage is broken in chromeos crostini

#

sudo apt install -y curl usbmuxd fuse && SYSTEM=$(uname -m) && if [ "$SYSTEM" = "x86_64" ]; then curl -fsSLO https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.deb && sudo apt install -y ./iloader-linux-amd64.deb; elif [ "$SYSTEM" = "aarch64" ]; then curl -fsSLO https://github.com/nab138/iloader/releases/latest/download/iloader-linux-aarch64.deb && sudo apt install -y ./iloader-linux-aarch64.deb; else echo "Version unsupported"; fi
try this