We have an exciting announcement about badges coming in May 2025. Until then, we will temporarily stop issuing new badges for course completions and certifications. However, all completions will be recorded and fulfilled after May 2025.
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.