New noobs is out with sonic pi 2.5 get it now! Volume control!
Customize your desktop! Run wpa_gui for WiFi!
Recently when they changed the way wifi worked, I installed NetworkManager and have been using that instead. So far it's been working better for me than wpa_gui ever did.metalj wrote:Well I'm on this forum every day and just noticed so I thought I'd mention it. I'm sorry it's not in the form of a question. Plus nobody knows how to setup their WiFi so I mentioned that too.
metalj wrote:How do you sudo apt-get network manager?
Code: Select all
sudo apt-get install network-manager
Code: Select all
sudo nano /etc/NetworkManager/dispatcher.d/02cifs.sh
Code: Select all
#! /bin/sh -e
case "$2" in
up)
mount -at cifs
;;
down)
umount -alt cifs
;;
esac