ip地址設置 bug
Tofloor
poster avatar
edenharder
deepin
2013-12-20 08:14
Author
如ip地址為:10 22 228 46,輸入的時候因為第一個空只有兩個數字被提示為無效,且第二第三個空沒辦法點擊輸入,只能等上一個空輸入三個數字后才能輸入。
再者,想辦法輸入后依然不能上網,輸入情況如下:DeepinScreenshot20131220003020.png
Reply Favorite View the author
All Replies
electricface
deepin
2013-12-20 21:59
#1
如果系统设置的网络设置了没有用,
可以安装 network-manager-gnome 然后去启动器里找 “网络”图标,打开之后能配置网络。

在不配置好ip 就不能上网的情况下,需要用命令行来操作了。
所有连接的配置文件在 /etc/NetworkManager/system-connections/
默认的连接配置文件是 “Wired connection 1”
37. /etc/NetworkManager/system-connections sudo cat Wired\ connection\ 1
[connection]
id=Wired connection 1
uuid=a7a597b2-1139-433c-86ce-764388c4affa
type=802-3-ethernet
timestamp=1387517728

[ipv6]
method=auto

[ipv4]
method=manual
address1=10.22.228.46/24,10.22.228.1
dns=202.113.16.10;202.99.96.68

你可以修改 [ipv4] 章节的配置,命令是
  1. cd  /etc/NetworkManager/system-connections/
  2. sudo nano  "Wired connection 1"
Copy the Code
写上
address1=10.22.228.46/24,10.22.228.1
dns=202.113.16.10;202.99.96.68
然后按 Ctrl + x y保存并退出
然后用命令 重启网络
比如
  1. nmcli con down uuid a7a597b2-1139-433c-86ce-764388c4affa
  2. nmcli con up uuid a7a597b2-1139-433c-86ce-764388c4affa
Copy the Code
注意命令里的 uuid 后面一串奇怪的字符,在配置里面写了(“uuid=”后面的),复制过来贴上去。
Reply View the author
edenharder
deepin
2013-12-22 00:06
#2
如果系统设置的网络设置了没有用,
可以安装 network-manager-gnome 然后去启动器里找 “网络”图标,打开之后能配置网络。

在不配置好ip 就不能上网的情况下,需要用命令行来操作了。
所有连接的配置文件在 /etc/NetworkManager/system-connections/
默认的连接配置文件是 “Wired connection 1”

[quote]37. /etc/NetworkManager/system-connections sudo cat Wired\ connection\ 1
[connection]
id=Wired connection 1
uuid=a7a597b2-1139-433c-86ce-764388c4affa
type=802-3-ethernet
timestamp=1387517728

[ipv6]
method=auto

[ipv4]
method=manual
address1=10.22.228.46/24,10.22.228.1
dns=202.113.16.10;202.99.96.68

你可以修改 [ipv4] 章节的配置,命令是
  1. cd  /etc/NetworkManager/system-connections/
  2. sudo nano  "Wired connection 1"
Copy the Code
写上
address1=10.22.228.46/24,10.22.228.1
dns=202.113.16.10;202.99.96.68
然后按 Ctrl + x y保存并退出
然后用命令 重启网络
比如
  1. nmcli con down uuid a7a597b2-1139-433c-86ce-764388c4affa
  2. nmcli con up uuid a7a597b2-1139-433c-86ce-764388c4affa
Copy the Code
注意命令里的 uuid 后面一串奇怪的字符,在配置里面写了(“uuid=”后面的),复制过来贴上去。[/quote]
谢谢!
Reply View the author
fredy4212
deepin
2013-12-22 03:51
#3
據悉,該bug會在2014被解決,期待吧!
Reply View the author