Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1 KB

File metadata and controls

31 lines (20 loc) · 1 KB

Using ssh in the installation image

ℹ️ | Follow this guide for up to date instructions.

Set a password for root on the target system:

passwd

To ssh into the target system run:

# Execute ip a on the target system to get [ip_address]
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@[ip_address]

Using ssh for Post-installation

ℹ️ | After rebooting, you will have to enter the decryption key for your disk. This cannot be done over ssh.

ℹ️ | Due to security restrictions, you will only be able to ssh into the target system from a local network.

Add your public ssh key to SYSUSER_PUBKEY in install.conf before running prepare.sh.

To ssh into the target system run:

# Execute ip a on the target system to get [ip_address]
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p 9122 -i ~/.ssh/[private_key] [SYSUSER]@[ip_address]