0

I try to figure out why I cannot connect using Putty from Windows 11 to Ubuntu Server 22.04 (fresh install) by hostname but for Ubuntu desktop 22.04(fresh install) without problem. Both system are run on VM with same settings and same virtual adapter. I connect using IP but this is temporary solution.

I check also ping from Windows 11. Ping working for hostname of Ubuntu desktop but not for Ubuntu server

Ping request could not find host hostname . Please check the name and try again.

Which component shall I install to have Ubuntu Server hostname brodcast like in desktop version?

SunneV
  • 61

1 Answers1

2

Need to be install avahi-daemon package It is not present in Ubuntu Server:

Install:

sudo apt install avahi-daemon

Check if its working:

sudo systemctl status avahi-daemo
SunneV
  • 61