Archive for the 'issues' Category
WPA 1 on Ubuntu 7.10 Gutsy
After trying the gnome network configuration tool with little success, I tried the hardcore version, changing by hand the /etc/network/interfaces file again with little success.
First search for your AP:
$ iwlist eth1 scanning
If you have a working wireless network adapter (eth1) and your AP in range, your configuration file should look something like this:
auto eth1 iface eth1 inet dhcp wpa-driver wext wpa-ssid SSID wpa-ap-scan 1 wpa-proto WPA wpa-pairwise TKIP wpa-group TKIP wpa-key-mgmt WPA-PSK wpa-psk XXXXXXXXXXXXXXXXXXXXf4b3cff05d8ebf483435050268bxxxxxxxxxx
Your key for wpa-psk can be generated using:
sudo wpa_passphrase SSID "passphrase"
So what can actually make you nuts is that if you used an hidden SSID, it will not work until you make the SSID visible once… and then you can go back into being hidden again.
Another way is to use the command iwconfig:
sudo iwconfig eth1 essid "hidden_ssid"No comments
opacity bugs on Ubuntu with Beryl
If you are experiencing opacities issues with some windows just go to Beryl Settings Manager, pick Window Management and then check “Set Window Attribs by various criteria” selecting “Disable ARGB visual” add to the inclusion list an entry, example for Terminal Server Client:
c:rdesktop:1No comments
Blank window on java applications under Beryl on Ubuntu
If you are getting a blank (grey) window with some java applications under Beryl, that once you change Metacity work fine, just add the following line to your .bashrc and it should work.
export AWT_TOOLKIT=MToolkitNo comments