----- Ursprüngliche Mail ----- > Von: "Alejandro Colomar" <alx@xxxxxxxxxx> > $ unshare ‐S 0 ‐G 0 ‐‐map‐users=100000,0,65536 ‐‐map‐groups=100000,0,65536 id > unshare: failed to execute ‐S: No such file or directory Well, maybe your unshare tool is too old. AFAIK it uses newuidmap only in recent versions. You can achieve the very same als using podman in rootless mode. e.g. podman run -it -v /scratch:/scratch/ bash -c "cat /scratch/games/game.txt" Thanks, //richard