This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
user:tgalpin2:portfolio:lmdewireless [2012/01/26 20:05] – [Project: Setting Up Wireless On Linux Mint Debian Edition] tgalpin2 | user:tgalpin2:portfolio:lmdewireless [2012/05/10 18:20] (current) – [References] tgalpin2 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ======Project: | ||
+ | This is a project for Matt Haas' HPC II class in the Spring 2012 Semester. | ||
+ | |||
+ | =====Background===== | ||
+ | |||
+ | I will be writing a guide detailing how to set up a wireless connection on a laptop running [[http:// | ||
+ | |||
+ | * Asus EeePC 1215T | ||
+ | *AMD Athlon II Neo K125 @ 1.7GHz | ||
+ | *4 GB RAM | ||
+ | *320 GB HDD | ||
+ | *ATI Radeon HD 4250 integrated | ||
+ | | ||
+ | * Linux Mint Debian Edition | ||
+ | * 64-bit | ||
+ | * Xfce | ||
+ | |||
+ | As previously stated, that does not mean that this guide is useless for anyone using any other hardware, necessarily. This guide should be most useful to the people with systems using the same (or any) Broadcom wireless controller on some sort of recent Debian edition. | ||
+ | |||
+ | =====Procedure===== | ||
+ | |||
+ | ====Things To Try==== | ||
+ | |||
+ | ===Check For Drivers=== | ||
+ | |||
+ | Using Synaptic to check for wireless drivers is always a good place to start. After all, in this instance, wireless connections do not seem to show up by default. Use the search bar to look for these using obvious words like " | ||
+ | |||
+ | Even if installing these drivers " | ||
+ | |||
+ | ===Install Wicd==== | ||
+ | |||
+ | Wicd is an alternative to the default NetworkManager (note that is the name of the actual program). A good place to try would be removing NetworkManager through apt-get or Synaptic. Make sure all related packages for it are removed, then install wicd and its related packages, and reboot. wicd's tray icon should appear. Click it to adjust settings and choose connections. | ||
+ | |||
+ | Now, this may solve your problems outright. However, it may not. It will get you a step closer, but still not where it should be. Some issues may include errors such as " | ||
+ | |||
+ | ===Have system remove then replace wireless module in the kernel on startup=== | ||
+ | |||
+ | Use " | ||
+ | |||
+ | To make sure that your system does this on startup to ensure a working wireless connection, add these commands to your "/ | ||
+ | |||
+ | < | ||
+ | #!/bin/sh -e | ||
+ | # | ||
+ | # rc.local | ||
+ | # | ||
+ | # This script is executed at the end of each multiuser runlevel. | ||
+ | # Make sure that the script will "exit 0" on success or any other | ||
+ | # value on error. | ||
+ | # | ||
+ | # In order to enable or disable this script just change the execution | ||
+ | # bitso | ||
+ | # | ||
+ | # By default this script does nothing. | ||
+ | |||
+ | mkdir -p / | ||
+ | mount -t cgroup cgroup / | ||
+ | mkdir -m 0777 / | ||
+ | echo "/ | ||
+ | modprobe -r brcmsmac | ||
+ | modprobe brcmsmac | ||
+ | |||
+ | exit 0 | ||
+ | </ | ||
+ | |||
+ | =====Reflection===== | ||
+ | |||
+ | This was the first real project I did this semester. It was necessary, really, since I needed a working laptop for school, and I needed it to be wireless. Before I figured it out, I was about to install a different operating system, which was disappointing considering this was the sole issue I had with Debian Mint with Xfce. Luckily, it got solved, and my troubleshooting skill improved that much! | ||
+ | =====References===== | ||
+ | |||
+ | * Matt Haas | ||
+ | * Hours of troubleshooting |