mirror of
https://github.com/brain-hackers/buildbrain
synced 2024-11-14 22:38:01 +09:00
Add user
This commit is contained in:
parent
5a62bc1858
commit
9fe585f2e1
@ -44,14 +44,6 @@ echo "$TIMEZONE" > /etc/timezone && \
|
||||
update-locale LANG=en_US.UTF-8
|
||||
|
||||
echo "brain" > /etc/hostname
|
||||
|
||||
|
||||
echo root:root | chpasswd
|
||||
|
||||
cat <<EOF >> /etc/securetty
|
||||
ttymxc0
|
||||
EOF
|
||||
|
||||
DEBIAN_FRONTEND=noninteractive \
|
||||
apt install -y dialog sudo \
|
||||
libjpeg-dev libfreetype6 libfreetype6-dev zlib1g-dev \
|
||||
@ -68,6 +60,19 @@ DEBIAN_FRONTEND=noninteractive \
|
||||
# Fix Midori launch failure
|
||||
sudo update-mime-database /usr/share/mime
|
||||
|
||||
# Setup users
|
||||
adduser --gecos "" --disabled-password --home /home/user user
|
||||
echo user:brain | chpasswd
|
||||
echo "user ALL=(ALL:ALL) ALL" > /etc/sudoers.d/user
|
||||
echo -e "127.0.1.1\tbrain" >> /etc/hosts
|
||||
|
||||
echo root:root | chpasswd
|
||||
|
||||
# Allow root login via UART
|
||||
cat <<EOF >> /etc/securetty
|
||||
ttymxc0
|
||||
EOF
|
||||
|
||||
# Get wild
|
||||
cat <<EOF > /etc/apt/sources.list
|
||||
deb http://deb.debian.org/debian buster main contrib non-free
|
||||
|
Loading…
Reference in New Issue
Block a user