分页: 1 / 2

怎么用ROOT权限啊

发表于 : 2005-06-06 19:54
luchaoshuai
KDE控制中心的[Network Settings]里面配置IP地址、网关、DNS等
这得怎么弄啊

就是怎么进ROOT权限
我不知道怎么用啊

现在进去那里都是灰的

急啊

发表于 : 2005-06-06 20:04
luchaoshuai
动软件包管理器Kynaptic,勾选软件包kde-i18n-zhcn,点击上面的第3个按钮,系统会自动下载安装。
之后只需在KDE控制中心进行适当配置即可


我要下载中文包
上不了网不行啊

发表于 : 2005-06-06 20:09
yongyi

发表于 : 2005-06-06 20:19
luchaoshuai
我现在还不能上网
很多的E文都看不懂
都找不到呢

发表于 : 2005-06-06 20:25
luchaoshuai
我现在就想在那个网络那里的灰色可改就行

发表于 : 2005-06-06 20:42
yongyi
你的是KDE吧。

代码: 全选

还有一个办法:
开一个终端窗口,在里面输入
sudo kcontrol
这就可以了。
这样就获取了ROOT权限了吧?

发表于 : 2005-06-06 23:11
luchaoshuai
这样子运行后出现的还是一样没用啊

发表于 : 2005-06-06 23:49
yongyi
luchaoshuai 写了:这样子运行后出现的还是一样没用啊
说清楚点。

没用是还是没有ROOT权限,还是网卡没用?你的网卡系统认出来了吗?

天呀,搞DHCP搞了这么久。好像我设过一回DHCP,在装系统时就已经搞定网络的了。

或者你先试一下叶兄的方法,先上能上网,搞定中文再从长计议吧。
oneleaf 写了:直接修改 /etc/network/interfaces

$ more /etc/network/interfaces

代码: 全选

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
        script grep
        map eth0

# The primary network interface
iface eth0 inet dhcp

发表于 : 2005-06-08 13:21
luchaoshuai
OK

about root

发表于 : 2005-06-09 10:58
carlos444_444
when you start ubuntu, the grub menu will show you the choices, you can choice recovery mode and start system, then you can find out that you already in root mode,type "passwd",and you can change the root password to what you like,good luck!

I had installed the ubuntu linux, but I can not type chinese, hehe!

发表于 : 2005-06-09 11:17
luchaoshuai
我在WINDOWS下可一用
IP 192.168.1.6
子网掩码 255.255.255.0
网关 192.168.1.1
DNS 192.168.1.1
上网
那在LINUX下的那个文件得怎么写才行啊
我在里面试了很久都没有希望啊

发表于 : 2005-06-09 11:46
firehare
luchaoshuai 写了:我在WINDOWS下可一用
IP 192.168.1.6
子网掩码 255.255.255.0
网关 192.168.1.1
DNS 192.168.1.1
上网
那在LINUX下的那个文件得怎么写才行啊
我在里面试了很久都没有希望啊
在/etc/network/interfaces文件中,类似下面的写法:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth0

# The primary network interface
iface eth0 inet static
address 192.168.1.6
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
#如果你是宽带拨号的话,请将网关注释掉
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
#下面是输入DNS服务器的IP地址和缺省搜索域名
dns-nameservers 192.168.1.1
dns-search xxx.org

auto eth0

修改你的resolv.conf文件:
search xxx.org
nameserver 192.168.1.1

发表于 : 2005-06-09 12:09
luchaoshuai
我是通过局域网上的网
请教都改些什么文件

我看着上面的有些头晕

发表于 : 2005-06-09 12:13
luchaoshuai
#下面是输入DNS服务器的IP地址和缺省搜索域名
dns-nameservers 192.168.1.1
dns-search xxx.org

auto eth0

修改你的resolv.conf文件:
search xxx.org
nameserver 192.168.1.1

这段最不明白

发表于 : 2005-06-09 15:53
firehare
修改两个文件呀?
很难懂吗?

不是都给你写清楚了吗?