From 5287d8626857ef6145f5bb31023a59da8928e3a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maik=20W=C3=B6hl?= Date: Sun, 25 Feb 2018 14:00:13 +0100 Subject: [PATCH] Use useradd instead of adduser ``adduser`` isn't available on all linux systems. usermod is available. --- tools/linux64/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/linux64/install.sh b/tools/linux64/install.sh index 29ddb2f..9d4caad 100755 --- a/tools/linux64/install.sh +++ b/tools/linux64/install.sh @@ -17,7 +17,8 @@ if sudo [ -w /etc/udev/rules.d ]; then echo "Reloading udev rules" sudo udevadm control --reload-rules echo "Adding current user to dialout group" - sudo adduser $USER dialout + #sudo adduser $USER dialout + sudo usermod -aG dialout $USER else echo "Couldn't copy to /etc/udev/rules.d/; you probably have to run this script as root? Or your distribution of Linux doesn't include udev; try running the IDE itself as root." fi