| View previous topic :: View next topic |
| Author |
Message |
duckz Apprentice

Joined: 26 Jun 2007 Posts: 157
|
Posted: Sun Jul 06, 2008 9:35 am Post subject: [solved] Network Manager issue |
|
|
I got strange issue with networkmanager, after login with entrance when Network Manager connects successfuly with wireless access point then E17 cannot open any program and complains it cannot connect to the current display.
When I kill the X and relogin again, everything works fine.
Is there any way to fix this glitch?.
cheers
duckz _________________ So you want to be a GENTOO?
emerge -va http://duckzland.ismywebsite.com <- install my blog in gentoo
./configure http://papero.0fees.net <- configure your wallpaper
Last edited by duckz on Wed Jul 09, 2008 12:20 pm; edited 1 time in total |
|
| Back to top |
|
 |
hirakendu Guru

Joined: 24 Jan 2007 Posts: 306 Location: san diego
|
Posted: Sun Jul 06, 2008 11:07 am Post subject: |
|
|
(hope you would have resolved it by now from the networkmanager faq / gentoo wiki.) its a standard issue that networkmanager changes hostname when it connects and security alarm . look into the file /etc/dhcp/dhclient.conf and give your hostname there. example :
| Code: | # /etc/dhcp/dhclient.conf
send host-name "asdf" ;
supersede host-name "asdf" ; |
_________________ Helium Sources || Gentoo Minimal Livecd |
|
| Back to top |
|
 |
duckz Apprentice

Joined: 26 Jun 2007 Posts: 157
|
Posted: Sun Jul 06, 2008 11:40 am Post subject: |
|
|
yes I got the /etc/dhcp/dhclient.conf correctly configured, I suspect that it have something to do with gnome-keyring or session manager but I am clueless of how to fix it. _________________ So you want to be a GENTOO?
emerge -va http://duckzland.ismywebsite.com <- install my blog in gentoo
./configure http://papero.0fees.net <- configure your wallpaper |
|
| Back to top |
|
 |
duckz Apprentice

Joined: 26 Jun 2007 Posts: 157
|
Posted: Wed Jul 09, 2008 12:19 pm Post subject: |
|
|
Damn, the solution is so simple....
I need to get /etc/conf.d/hostname to match the /etc/dhcp/dhclient.conf entry in the hostname.
| Code: | /etc/conf.d/hostname
# Set to the hostname of this machine
hostname="XXX"
|
| Code: | /etc/dhcp/dhclient.conf
# /etc/dhcp/dhclient.conf
send host-name "XXX" ;
supersede host-name "XXX" ;
|
_________________ So you want to be a GENTOO?
emerge -va http://duckzland.ismywebsite.com <- install my blog in gentoo
./configure http://papero.0fees.net <- configure your wallpaper |
|
| Back to top |
|
 |
|