So I installed Linux Mint 14, cinnamon x64 and quickling noticed an issue: The wifi dongle was picking up my wireless router, but not able to successfully connect. I spent a few days logging back and forth between my dual boot, trying this and that and the other. Due to my newness with linux, I was unable to successfully install the driver I pulled directly from the Edimax website. A bit more digging, however, allowed me to navigate through to the Realtek website where I grabbed the newest driver.
I followed some more instructions, but shifted them up a bit. Eseentially, I saw that the drivers were runnning (but obviously not working) so I closed them, installed the new driver, and everything worked like a charm. Until I rebooted.
Now, in order to get the wireless to work, I have to jump into the terminal and do the following:
iiri@JKGIIRI ~ $ lsmod | grep 8192
rtl8192cu 67616 0
rtl8192c_common 48779 1 rtl8192cu
rtlwifi 74705 1 rtl8192cu
mac80211 539908 3 rtl8192cu,rtl8192c_common,rtlwifi
iiri@JKGIIRI ~ $ sudo modprobe 8192cu
[sudo] password for iiri:
WARNING: /etc/modprobe.d/rt2800usb.conf line 1: ignoring bad line starting with 'sudo'
FATAL: Error inserting 8192cu (/lib/modules/3.5.0-17-generic/kernel/drivers/net/wireless/8192cu.ko): Device or resource busy
(I figured out that I couldn't start the new driver while the two others that I had shut down innitially were running, so I shut them down)
iiri@JKGIIRI ~ $ sudo rmmod -f rtl8192cu
iiri@JKGIIRI ~ $ sudo rmmod -f rtl8192c_common
iiri@JKGIIRI ~ $ lsmod | grep 8192
iiri@JKGIIRI ~ $ sudo modprobe 8192cu
WARNING: /etc/modprobe.d/rt2800usb.conf line 1: ignoring bad line starting with 'sudo'
And again, all is right in the world, and I have internet.
What can I do to either automate this process on startup, or fix the issue?

