Jump to content

Linux: Difference between revisions

393 bytes added ,  14 September 2019
no edit summary
No edit summary
No edit summary
Line 1: Line 1:
The notes here are mainly for Ubuntu/Debian.
The notes here are mainly for Ubuntu/Debian.
==SSH==
====SSH Keys====
Generate an ssh-key for every client
<syntaxhighlight lang="bash">
ssh-keygen -t ed25519 -a 100 [-C "comment your client name"] [-f output_path]
</syntaxhighlight>
Manage ssh keys
<syntaxhighlight lang="bash">
# On the client
ssh-copy-id [email protected]
</syntaxhighlight>
<syntaxhighlight lang="bash">
# On the server
vim ~/.ssh/authorized_keys
</syntaxhighlight>


===Switching between Nvidia and Intel===
===Switching between Nvidia and Intel===