Ubuntu Bash starten
1.
Openssh Server installieren root@srv:~# apt-get install openssh-server Wenn bereits installiert root@srv:~# dpkg-reconfigure openssh-server |
2.
Configdatei bearbeiten root@srv:~# nano /etc/ssh/sshd_config UsePrivilegeSeparation yes in UsePrivilegeSeparation no ändern in PasswordAuthentication yes ändern Datei mit ctrl + o crtl + x speichern |
3.
Openssh Server neu starten root@srv:~# service ssh stop root@srv:~# service ssh start |
Nun kann man z.B. mit putty auf 127.0.0.1 mit ssh2 einloggen.
Sollte der port 22 von powershell blockiert sein
root@srv:~# nano /etc/ssh/sshd_config Port 22 auf Port 2244 ändern Datei speichern mit ctrl + o crtl + x |
Nun kann man z.B. mit putty auf 127.0.0.1 / port 2244 mit ssh2 einloggen
So sollte es dann aussehen (-:
Welcome to Ubuntu 14.04.4 LTS (GNU/Linux 3.4.0+ x86_64) * Documentation: https://help.ubuntu.com/ System information as of Tue Aug 9 23:47:28 DST 2016 System load: 0.52 Memory usage: 54% Processes: 8 => There were exceptions while processing one or more plugins. See Graph this data and manage this system at: Get cloud support with Ubuntu Advantage Cloud Guest: root@srv:~# |