![]() |
|
Cannot run minimserver from external disk - Printable Version +- MinimServer Forum (https://forum.minimserver.com) +-- Forum: MinimServer (/forumdisplay.php?fid=1) +--- Forum: Support (/forumdisplay.php?fid=4) +--- Thread: Cannot run minimserver from external disk (/showthread.php?tid=5929) |
Cannot run minimserver from external disk - peterr - 22-11-2020 17:17 Hello, I'm successfully using minimserver2 on a headless Raspberry Pi 4 running Arch Linux (aarch64). I installed it in my user's home directory (/home/peterr). Now I would like to install minimserver2 on an external disk mounted in /mnt (/mnt/ssd2). But when I try to run any script from minimserver/bin from there, I get permission errors. I didn't use root or sudo at any point during installation. Here's a complete history of what I did: Code: [peterr@pi4 ssd2]$ tar xf MinimServer-2.0.16-linux-arm64.tar.gzPermissions look fine, though: Code: [peterr@pi4 ssd2]$ ls -l minimserver/bin/Permissions for /mnt are write-restricted to root, but this is identical to /home: Code: [peterr@pi4 ssd2]$ ls -l /Is there anything I can do about this? Edit: Maybe a note on the java version is helpful: Code: [peterr@pi4 ~]$ java -versionRE: Cannot run minimserver from external disk - simoncn - 22-11-2020 17:41 Is ssd2 mounted with noexec? RE: Cannot run minimserver from external disk - peterr - 22-11-2020 18:39 (22-11-2020 17:41)simoncn Wrote: Is ssd2 mounted with noexec? Not explicitly, but I just found out that the mount option 'users' implies noexec. Mounting with the option 'exec' should solve this, thank you! |