From: Liam O'Toole on 15 Jul 2010 07:00 On 2010-07-15, Paul Scott <waterhorse(a)ultrasw.com> wrote: > On Thu, Jul 15, 2010 at 11:40:27AM +0200, Sven Joachim wrote: <SNIP> >> It might be better to put away wicd for a moment and invoke >> wpa_supplicant directly with the -d switch. You may have to set the >> ssid first with iwconfig(8). > > I have read the man page. I apparently need a valid wpa_supplicant.conf file. The only one > I can find (/etc/dbus-1/system.d/wpa...) doesn't seem to be valid. I get lots of errors > about that file when I supply the -D -i and -c parameters. > I haven't used wicd for a while, but I recall that it writes its own wpa_supplicant.conf file based on the settings you provide in the UI. Try looking under /etc/wicd. -- Liam O'Toole Cork, Ireland -- To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org Archive: http://lists.debian.org/slrni3tq2q.66g.liam.p.otoole(a)dipsy.selfip.org
From: Bob McGowan on 16 Jul 2010 12:50 On 07/15/2010 03:28 AM, Paul Scott wrote: > On Thu, Jul 15, 2010 at 12:25:26PM +0200, Sven Joachim wrote: >> On 2010-07-15 12:15 +0200, Paul Scott wrote: >> >>> On Thu, Jul 15, 2010 at 11:40:27AM +0200, Sven Joachim wrote: >>>> >>>> It might be better to put away wicd for a moment and invoke >>>> wpa_supplicant directly with the -d switch. You may have to set the >>>> ssid first with iwconfig(8). >>> >>> I have read the man page. I apparently need a valid wpa_supplicant.conf file. The only one >>> I can find (/etc/dbus-1/system.d/wpa...) doesn't seem to be valid. I get lots of errors >>> about that file when I supply the -D -i and -c parameters. >> >> There are several sample configuration files in the >> /usr/share/doc/wpasupplicant/examples directory. The wpa-psk-tkip.conf >> file could be a good starting point. >> > > Thanks. I'll try that in a few hours. > > Paul > One thing I've done a few times, that may help here, is to create a temporary wrapper script to run some command. That is, go to the executable file location, rename it, say xx.orig, and create a short script named xx, that will start the xx.orig with the debug options you want. You probably want to use as the last arg the form "$@" (include the quotes), which will supply any arguments from the script to the real program exactly as they were given to the script. In case there's some std* output from the original that doesn't get written to a log file, you can add this at the top of the script, to capture that output in your own log file: exec >/tmp/xx.orig.$$.log 2>&1 Or just put everything after the 'exec' above, after the xx.orig command line. The advantage of using the 'exec' form is that any output the script generates for any problem will also be written to the file (syntax errors, other commands failing, etc). -- Bob McGowan -- To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org Archive: http://lists.debian.org/4C408B61.2080505(a)symantec.com
First
|
Prev
|
Pages: 1 2 3 Prev: Conclusion: FAT mount, UTC and localtime Next: udev not assigning group correctly for scanner |