Results 1 to 9 of 9
i am new to linux and using kubuntu 9.04.But i cant configure my network connection for internet.I am using internet through lan.bt when i am putting all the neccessary data ...
- 11-30-2009 #1Just Joined!
- Join Date
- Nov 2009
- Posts
- 5
Mange Network Connection
i am new to linux and using kubuntu 9.04.But i cant configure my network connection for internet.I am using internet through lan.bt when i am putting all the neccessary data in the netmask is not taking, only prefix should be added.i cant access the internet.
Besides i cant install tar.bz file..can u help.
- 12-01-2009 #2Just Joined!
- Join Date
- Apr 2009
- Posts
- 32
That is wierd I have never had to configure my network I just plug my cable in and it is connected.
- 12-01-2009 #3
You shouldn't need to install applications from source 99% of the time on ubuntu. You use adept package manager and install them that way.
Does your lan have DHCP or must you configure static IP address? Post the configuration settings you are using.
- 12-01-2009 #4Just Joined!
- Join Date
- Nov 2009
- Posts
- 5
I have static ip address. I am sending my netwrok settings with an image that i have saved while using xp. btw i have configured ip address etc from manage network connections.but can't give the full netmask.I t is only asking for netmask prefix. as i have said i am using kubuntu 9.04.(I have just removed the last three digits for security,dnt mind).
[picasaweb.google.co.in/abhinavaindia/UntitledAlbum#5410420853705934594]
- 12-01-2009 #5Just Joined!
- Join Date
- Nov 2009
- Posts
- 5
In kubuntu i cant find any adept package manager.it has something kpackage manager, but it cant find any tar or deb files for installation
- 12-01-2009 #6Just Joined!
- Join Date
- Nov 2009
- Posts
- 5
Wierd!!!!!!!!!!!may be ur connection is different from me.bt i m using lan with static ip address.If it will be done by so simple method i would be here with any other problem.
- 12-01-2009 #7
If you just need a static ip address, I would ditch the default network manager and set it up through /etc/network/interfaces
Open the file to editWhen you open it you should see something likeCode:gksudo gedit /etc/network/interfaces
and probably nothing else.Code:# The loopback interface auto lo iface lo inet loopback
To that you'll add the other settings (but leave that bit alone)
Replacing the address, gateway, netmast, and so on with your settings.Code:# The loopback interface auto lo iface lo inet loopback # The first network card - this entry was created during the Debian installation # (network, broadcast and gateway are optional) auto eth0 iface eth0 inet static address 192.168.1.101 gateway 192.168.1.1 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255
There is a lot more you can add if needed.
Man page of INTERFACES
NetworkManager won't work right once you edit that file. I'm a little reluctant to suggest just removing it altogether.
You can
I'm not sure what the best way to simply disable it is. The Ubuntu wiki suggestsCode:sudo aptitude purge network-manager network-manager-gnome
Then create two files with just the word exit in them.Code:sudo /etc/dbus-1/event.d/26NetworkManagerDispatcher stop sudo /etc/dbus-1/event.d/25NetworkManager stop
After either doCode:echo "exit" | sudo tee /etc/default/NetworkManager echo "exit" | sudo tee /etc/default/NetworkManagerDispatcher
And you should be good.Code:sudo /etc/init.d/networking restart
- 12-01-2009 #8
I just noticed you were using Kubuntu not Ubuntu.
In my previous post replace gksudo gedit with kdesu kwrite.
Or you can use a command line text editor and do
Code:sudo nano /etc/network/interfaces
- 12-02-2009 #9
the package manager requires an internet connection to work or to be configured to use a CDROM to install software


Reply With Quote