Re: [gentoo-user] IDE recommendations for writing C?

2011-02-06 Thread Vortex 3
2011/2/5 Mark Knecht markkne...@gmail.com Can someone recommend a good IDE to write C code in? 1) Something that can display multiple files in a project. 2) Something that have some sort of version control built into it? 3) If possible, I can compile right in the IDE. I've starting

Re: [gentoo-user] how to forbid dhcp for eth0

2011-01-14 Thread Vortex 3
If your eth0 is a wired interface, you could use ifplugd[1] (on portage's sys-apps) as mentioned on chapter 6 of the gentoo linux x86 handbook [2]. Basically, it keep the interface down while the cable is unplugged, so you won't wait dhcp at startup. Additionally, it will bring it up when you plug

Re: [gentoo-user] config with wireless

2011-01-14 Thread Vortex 3
ctrl_interface=/var/run/wpa_supplicant ctrl_interface_group=0 ap_scan=1 network={ ssid=huang proto=WPA2 psk=Xda111524*^ } This lines don't belog to the /etc/conf.d/net file, but to the /etc/wpa_supplicant/wpa_supplicant.conf Take a look here:

Re: [gentoo-user] config with wireless

2011-01-14 Thread Vortex 3
Pete, wpa_supplicant_wlan0=-Dmadwifi From your previous message, your are using the madwifi driver. However, you are executing wpa_supplicant -Dwext -iwlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf Where now you specify the wext driver. Maybe that's the problem (?)