Forked from dragonfire1119/how-to-ssh-into-a-proxmox-container.md
Created
August 27, 2025 21:42
-
-
Save runtimevic/0b75af238ea5be55940b48b6085b3bd3 to your computer and use it in GitHub Desktop.
Revisions
-
dragonfire1119 created this gist
Jun 19, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ # Proxmox So if you're using Proxmox you need to open up ssh and run the following commands: 1. Setup a root password ```bash sudo passwd root ``` 2. Enable ssh ```bash nano /etc/ssh/sshd_config ``` 3. Change the following line: ```bash PermitRootLogin without-password ``` to ```bash PermitRootLogin yes ``` 4. Restart ssh ```bash systemctl restart sshd ```