Create user without password

sudo adduser \
   --system \
   --shell /bin/bash \
   --gecos 'description' \
   --group \
   --disabled-password \
   --home /home/us \
   us
16 февраля 2021, 17:43

Linux get mac address

ifconfig -a | grep ether | awk '{print $2}'
15 октября 2019, 12:34