Linux user ohne Login

Aus Laub-Home Wiki
# -M => create without homedir
useradd -M <user>

# -s => set shell to /bin/false
usermod -s /bin/false <user>

# -L => lock account to prevent login
usermod -L <user>