= 1024) {
$event.preventDefault();
const i = slugs.indexOf($wire.preview);
const next = $event.key === 'ArrowDown' ? Math.min(i + 1, slugs.length - 1) : Math.max(i - 1, 0);
if (next !== i && slugs[next]) $wire.openPreview(slugs[next]);
}
">
Installation Guides
11
Knowledge Base
308 copy-ready commands with fill-in variables, plus step-by-step installation guides.
/
Categories
7 results
= 1024) { $event.preventDefault(); $wire.openPreview('generate-ssh-ed25519-key') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('generate-ssh-ed25519-key') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSH
Generate ed25519 SSH key
ssh-keygen -t ed25519 -C "{{comment}}"
#ssh
#keys
6 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('deploy-public-key-to-server') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('deploy-public-key-to-server') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSH
Deploy public key to remote server
mkdir -p ~/.ssh && chmod 700 ~/.ssh && echo "{{public_key}}" >> ~/.ssh/authorize...
#ssh
#authorized_keys
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('ssh-config-alias') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('ssh-config-alias') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSH
SSH config alias block
Host {{alias}}
#ssh
#config
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('remove-stale-known-host') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('remove-stale-known-host') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSH
Remove stale host from known_hosts
ssh-keygen -R {{host}}
#ssh
#known_hosts
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('ssh-copy-id') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('ssh-copy-id') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSH
Copy SSH Key to Remote Server
ssh-copy-id -i ~/.ssh/id_ed25519.pub {{user}}@{{host}}
#ssh
#key
4 views
1 copies
= 1024) { $event.preventDefault(); $wire.openPreview('ssh-jump-host') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('ssh-jump-host') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSH
SSH via Jump Host (Bastion)
ssh -J {{jump_user}}@{{jump_host}} {{target_user}}@{{target_host}}
#ssh
#jump
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('ssh-port-forward-local') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('ssh-port-forward-local') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSH
SSH Local Port Forwarding
ssh -L {{local_port}}:{{bind_host}}:{{remote_port}} {{user}}@{{host}} -N
#ssh
#port-forward
3 views
0 copies