Ubuntu 8.10 not retaining network settings on Asus Model F3S?

Asked by george_rutkay

If the laptop is restarted, it demonstrates that it has not retained it's network address settings (Static IP address).

I have to enter them in manually every time the computer is started (to simulate a college student using the computer, then powering it off, then on again later).

Why is this happening?

Thank you

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu network-manager Edit question
Assignee:
No assignee Edit question
Solved by:
george_rutkay
Solved:
Last query:
Last reply:

This question was reopened

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#1

I found network-manager has some bugs
I have a network issue like your and i have installed wicd to resolve it. Wicd is a different network tool.

http://wicd.sourceforge.net/ and some screenshot http://wicd.sourceforge.net/screenshot.php

How to install wicd

Open a Terminal from the menu Applications → Accessories → Terminal and type:
(if the system ask you for a password give your user password, you will not see nothing when you type it, then press enter)

wget -q http://apt.wicd.net/wicd.gpg -O - | sudo apt-key add -

Add the wicd repository row to your /etc/apt/sources.list, type:

sudo gedit /etc/apt/sources.list

and add this row:

deb http://apt.wicd.net intrepid extras

save close and exit. Then type:

sudo apt-get update
sudo apt-get install wicd
sudo killall nm-applet

To manually run the wicd-client please press Alt+F2 on an empty desktop and insert this command:

wicd-client

configure your connection. Then reboot your pc.

Hope this helps

Revision history for this message
george_rutkay (yaktur) said :
#2

At this point it looks successful.....I followed the steps here I was unable to run wicd-client until I first rebooted the computer.

I hope it saves the connection information...I'm running some apt-get updates now so I don't want to interrupt it.

Revision history for this message
george_rutkay (yaktur) said :
#3

Thanks marcobra, that solved my question.

Revision history for this message
george_rutkay (yaktur) said :
#4

No, not successful.....it solved the problem temporarily....when I shut the computer down and restarted it, the network connection data was still not saved even in Wicd.

Revision history for this message
george_rutkay (yaktur) said :
#5

How do I make Wicd save the connection information to the default state and reliably recall it on startup?

Revision history for this message
george_rutkay (yaktur) said :
#6

When I looked into the Advanced settings for the wired network (that's all I'm trying at this moment) I saw that the IP data I entered was still there. Yet Wicd did not act upon it, instead it just sat there and connected to nothing.

Why did that happen?

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#7

if wicd don't solve your issue and you want to restore network-manager

Open a Terminal from the menu Applications → Accessories → Terminal and type:
(if the system ask you for a password give your user password, you will not see nothing when you type it, then press enter)

sudo apt-get remove wicd
sudo apt-get install network-manager

Hope this helps

Revision history for this message
george_rutkay (yaktur) said :
#8

Strange but after powering down and restarting the computer a few times, now Wicd IS acting on the information I have entered for the static IP connection.

Very odd but it's working now.

Revision history for this message
george_rutkay (yaktur) said :
#9

So would aptoncd work in backing all of this stuff up, including this appendage called Wicd and it's key?

I'd like to back up this whole thing to a CD so if something went wrong, I wouldn't have to go through the whole lab experiment again.

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#10

I never tried aptoncd but reading http://aptoncd.sourceforge.net/ notes

"APTonCD is a tool with a graphical interface which allows you to create one or more CDs or DVDs (you choose the type of media) with all of the packages you've downloaded via APT-GET or APTITUDE, creating a removable repository that you can use on other computers."

Seems it can take care of the wicd package since it was installed using the standard apt-get command.

Hope this helps