123456789101112131415161718 |
- #!/usr/bin/fish
- sudo apt install openssh-server ;
- sudo cp ./Templates/sshd_config /etc/ssh/ ;
- cp ./Templates/authorized_keys /home/jovian/.ssh/ ;
- sudo systemctl enable ssh ;
- sudo service ssh restart ;
- sudo apt install php ;
|