Run the following command to install ssh service
sudo pacman -Syu opensshsudo systemctl status sshd.serviceIt must be disabled by default
If needed, make necessary changes to the ssh config file using
sudo vim /etc/ssh/sshd_configsudo systemctl enable sshd.servicesudo systemctl start sshd.serviceTo connect from Windows we need to know the ip address of our Manjaro VM
Make sure that you are using a Bridged Connection (not NAT) in VirtualBox where Manjaro runs
Execute the following command to get the IP address
ip aNote the IP address inet of the adapter (not the loopback one with the ip 127.0.0.1)
To connect to Manjaro from Windows, you need an ssh client such as Putty or Termius. I use Termius
- Create a new host
- Add the IP address in the address and save
- Click on the vertical ellipsis on the newly created host and connect via
ssh - Type the
usernameused in Manjaro - Type the password for the same
- Now you are connected to Manjaro Linux from Windows