标签:address res 哪些 apt art remote interface netmask int
1)安装图形化界面
sudo apt-get install xinit
sudo apt-get install gnome
2)启用root账号
① sudo passwd root
② 修改/etc/gdm3/custom.conf
[security]
DisallowTCP=false
AllowRoot=true
AllowRemoteRoot=true
3)修改网卡地址
① 修改配置
vi /etc/network/interfaces
# The primary network interface
auto ens33 # 可以到/proc/sys/net/ipv4/conf查看有哪些网卡
iface ens33 inet static
address 192.168.202.158
netmask 255.255.255.0
gateway 192.168.202.2
dns-nameserver 192.168.202.5
dns-search shark.com
② 重启networking服务
systemctl restart networking
4)配置xmanager能远程图形界面登录
修改/etc/gdm3/custom.conf
[xdmcp]
Enable=true
Port=177
但是始终没有成功
5) 禁用IPV6
配置/etc/sysctl.conf 在 /etc/sysctl.conf 增加下面几行,并重启。
标签:address res 哪些 apt art remote interface netmask int
原文地址:http://www.cnblogs.com/SharkXu/p/ubuntu1610.html