Skip to content

Instantly share code, notes, and snippets.

View lucasoal's full-sized avatar
:octocat:

Lucas Leal lucasoal

:octocat:
View GitHub Profile
@lucasoal
lucasoal / create_ssh_key.md
Last active June 4, 2024 16:21
Como criar e configurar uma SSH Key

Gerando Chave SSH com ssh-keygen

O comando ssh-keygen é uma ferramenta poderosa para gerar pares de chaves SSH no Linux. Este Gist irá explicar o comando abaixo:

ssh-keygen -t rsa -f root-virtual-machine -C root -b 2048

Opções Utilizadas:

  • -t rsa: Especifica o tipo de chave a ser gerada. Neste caso, estamos gerando uma chave RSA.
  • -f root-virtual-machine: Especifica o nome do arquivo onde a chave será salva. Neste exemplo, o nome do arquivo é "root-virtual-machine".
@lucasoal
lucasoal / settings.json
Last active June 4, 2024 15:35
Minimalist VSCode Settings
{
"breadcrumbs.enabled": false,
"editor.fontFamily": "'Ubuntu Mono', 'monospace', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"editor.renderLineHighlight": "all",
"editor.rulers": [
80,
260