You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
330 B

  1. #!/bin/bash
  2. # Run this as super user
  3. # This part is for installing go language and setting up a user account
  4. apt-get update -y
  5. apt-get upgrade -y
  6. apt-get install -y make screen gcc git mercurial libc6-dev pkg-config libgmp-dev
  7. useradd tmuser -d /home/tmuser
  8. usermod -aG sudo tmuser
  9. mkdir /home/tmuser
  10. chown -R tmuser /home/tmuser