01-preparacion.sh 212 B

123456789101112
  1. # Ubuntu instructions
  2. # stop the software firewall
  3. systemctl stop ufw
  4. systemctl disable ufw
  5. # get updates, install nfs, and apply
  6. apt update
  7. apt install nfs-common -y
  8. apt upgrade -y
  9. # clean up
  10. apt autoremove -y