How to setup/configure the Arch Linux bootcd (live-CD, ISO) so I can login to it using an SSH client?
And which password is by default set for the (automatic login) root account?
How to setup/configure the Arch Linux bootcd (live-CD, ISO) so I can login to it using an SSH client?
And which password is by default set for the (automatic login) root account?
The default root password for the ISO distribution is blank. And by default you are not allowed to login with SSH using a blank password.
Therefore two commands are necessary:
passwd --
To set a non blank password for the currently logged in user ('root' for liveCD). Enter the password twice.
Before september 2021: systemctl start sshd.service --
To start the ssh daemon.
September 2021 and later: sshd is started by default.
Now you can login from your client machine using ssh root@ip-address.
PS Don't know the IP address? The live-CD includes commands ifconfig and ip address.
The simplest way is to
passwd)vi /etc/ssh/sshd_config and append PermitRootLogin yes)systemctl enable sshd)