Licensing

Licensing

How can I achieve a prompt free login via ssh on Linux?

    • FAQFAQ
      Participant

      If you add the following lines to your $HOME/.ssh/config file: Host * ForwardX11 yes StrictHostKeyChecking no LogLevel quiet PasswordAuthentication no you cal login or execute commands on remote machines, e.g. like ssh remote_machine ssh remote_machine ls without entering a password.