在多台计算机上使用 Vinagre

在多台计算机上使用 Vinagre

我有多台电脑需要连接。它们都在我的局域网中。我不想一直写它们的 IP 地址。我正在寻找一种更简单的方法来连接它们。比如,

vinagre --connect 1

通过预定义的 ID 或类似的东西连接计算机。

那可能吗?

答案1

您可以编辑/etc/hosts并为您将连接的每台电脑添加一些名称和 IP。

例子

命令是:

sudo nano /etc/hosts

在文件末尾添加你的主机

127.0.0.1       localhost
127.0.1.1       xxx.xxx.xxx        xxx

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

# At the end of file add you local pc's
xxx.xxx.xxx.xxx    nice_blond
xxx.xxx.xxx.xxx    nice_body
xxx.xxx.xxx.xxx    just_nice

此后你就可以连接到“nice_body”

vinagre just_nice

相关内容