6 lines
No EOL
210 B
Bash
6 lines
No EOL
210 B
Bash
#!/bin/bash
|
|
useradd -m -G sudo -s /bin/bash noble
|
|
mkdir /home/noble/.ssh
|
|
echo "${SSH_PUBLIC_KEY}" > /home/noble/.ssh/authorized_keys
|
|
apt update -y && apt install -y tmux
|
|
bash /opt/deeplearning/install-driver.sh |