which command is linux's netview?

Solution 1:

yes you can.

open your terminal and type as who -a . that will list all information .

else you can use nmap also . great network tool.

you can get it by sudo apt-get install nmap

if you assume you IP starts from

192.168.1.1 then you can list all Computers connected with the LAN with this command

nmap 192.168.1.1-255 

The above command will scan from 192.168.1.1 to 192.168.1.255 IP's and list you which is up and which is down .

Solution 2:

You can type

arp -a

commandin terminal to see computers on Lan.