LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Command line equivalent of Network Manager?? (https://www.linuxquestions.org/questions/linux-newbie-8/command-line-equivalent-of-network-manager-833898/)

Ubunoob001 09-22-2010 09:17 PM

Command line equivalent of Network Manager??
 
Hey all,
Im reasonably, a few months, new to linux. However, I really am enjoying getting to use the command line and less gui-based software. For example I just installed alpine for my gmail etc.

question: is there an easy to use/configure, menu driven, CLI program for discovering/connecting to wireless networks? Basically something that can do what Network Manager can, but from the CLI.

Note: I am running Ubuntu 10.04 32 bit, on a BCM 4312 equipped Dell inspiron 1545.


thanks in advance!

AsusDave 09-22-2010 09:29 PM

Check this out

http://en.wikipedia.org/wiki/Wireless_tools_for_Linux

Looks like they have several options for what you want.

HTH
Dave

quanta 09-22-2010 09:55 PM

wicd-curses.

Ubunoob001 09-22-2010 10:06 PM

Quote:

Originally Posted by AsusDave (Post 4106178)
Check this out
http://en.wikipedia.org/wiki/Wireless_tools_for_Linux
Looks like they have several options for what you want.
HTH
Dave


Dave, many thanks for the link. Im in and odd situation in that for me and my personality, text-based systems are preferred. However at the same time, i am not able to, yet, handle complex CLI tasks. So while down the line, the programs listed in the link are great, I am currently looking for:
1. something simple (post configuration)
2. something menu-driven
3. something unified (one program for detecting, identifying strength, storing passwords, and connecting to networks)

Basically everything that Network Manager can do or WICD but text/cli based.

Thanks again!

prayag_pjs 09-22-2010 11:23 PM

1. Turn the interface on with the following command:
Code:

sudo ifconfig wlan0 up
2. Scan for a list of all the available access points:

Code:

iwlist wlan0 scanning
3. Select the access point with the following command:

Code:

sudo iwconfig wlan0 essid ACCESSPOINT
4. Set WEP or WPA passphrase, if needed:

Code:

sudo iwconfig wlan0 key PASSPHRASE
5. Finally, connect to DHCP server and obtain an IP address:

Code:

sudo dhclient

rkski 09-22-2010 11:26 PM

Did you miss quanta's post? It seems to be what you want.

craigevil 09-23-2010 01:05 AM

ceni
http://manual.aptosid.com/en/interne...#netcardconfig

Ubunoob001 09-23-2010 08:26 AM

Thanks a million!
 
Quote:

Originally Posted by rkski (Post 4106244)
Did you miss quanta's post? It seems to be what you want.

I sure did! Thanks a million Quanta and Craigevil. This is precisely what I was looking for.

Also thanks to prayag_pjs for your help with currently installed configuration/aquire options.


All times are GMT -5. The time now is 07:06 PM.