I have successfully setup a virtualbox running Ubuntu server. As everything is working now, it would be sweet to run it in the background, so I've made a small bash script to start it whenever I need to access it:
#!/bin/bash
nohup VBoxHeadless -s "Ubuntu server"&
This server uses bridged networking and has a static IP set to 192.168.1.5. When I run the following from another computer in the same network, the below shown error are thrown. Why?
ssh jay@192.168.1.5
ssh: connect to host 192.168.1.5 port 22: No route to host
I assumed that running headless would not affect the Virtualbox beside the fact that it's lacking the GUI?
Thanks a lot