Run the following command to install ssh
service
sudo pacman -Syu openssh
sudo systemctl status sshd.service
It must be disabled by default
If needed, make necessary changes to the ssh
config file using
sudo vim /etc/ssh/sshd_config
sudo systemctl enable sshd.service
sudo systemctl start sshd.service
To 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 a
Note 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
username
used in Manjaro - Type the password for the same
- Now you are connected to Manjaro Linux from Windows