首页 > 代码库 > Ubuntu 16.10 server 相关
Ubuntu 16.10 server 相关
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 增加下面几行,并重启。
#disable IPv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
重启服务器
Ubuntu 16.10 server 相关
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。