[SOLVED] Ubuntu 9.10 Wireless [WIFI] Connection Problem
Ubuntu 9.10 [code name : karmic koala ] has lot of bugs comparing previous releases and some of features have been removed in 9.10 version such as Login Screen GDM Manager . Hope Ubuntu community will fix everything soon in coming releases. Wireless connection is also not working in latest broadcom wifi hardware . Due to license problem Ubuntu does not include the broadcom wifi driver by default . User has to update manually using Ethernet internet connection after that they can activate driver in System -> Administration -> Hardware Drivers option. But the problem of this method is internet connection . What the user supposed to do if they do not have Ethernet internet connection. The solution is installing driver from source. Broadcom company providing wifi drivers for Linux . Steps are given here for how to do enable wifi driver using this method
- Download the latest driver from Broadcom website
These packages contain Broadcom's IEEE 802.11a/b/g/n hybrid Linux® device driver for use with Broadcom's BCM4311-, BCM4312-, BCM4321-, and BCM4322-based hardware.
- Setup the directory by untarring the proper tarball:
# mkdir hybrid_wl# cd hybrid_wl# tar xzf <path>/hybrid-portsrc.tar or <path>/hybrid-portsrc-x86_64.tar.gz
- Build the driver as a Linux loadable kernel module (LKM):
# make clean (optional)# make
- Remove any other drivers for the Broadcom wireless.
# lsmod | grep "b43\|ssb\|wl"
# rmmod b43# rmmod ssb# rmmod wl
# echo "blacklist ssb" >> /etc/modprobe.d/blacklist.conf# echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf
- Insmod the driver.
# rmmod wl# mv <path-to-prev-driver>/wl.ko <path-to-prev-driver>/wl.ko.orig# cp wl.ko <path-to-prev-driver>/wl.ko# depmod# modprobe wl
# modprobe lib80211# insmod wl.ko
#vim /etc/profilermmod ssbmodprobe lib80211insmod <path-to-wl.ko-file >/wl.ko
Reference : Broadcom Website

i got some error in installing Eclipse in Ubuntu…please list out the steps to install Eclipse in Ubuntu…. thanking yu
You need to set Java path for installing eclipse in Ubuntu.after that simply unzip the eclipse file to destination folder. please refer the following links for setting Java path and eclipse button problem [if possible send your error details ]
http://www.openpeta.com/index.php/setting-java-path-java_home-and-path-in-linux/
http://www.norio.be/blog/2009/10/problems-eclipse-buttons-ubuntu-910
i have mistakenly installed the jdk into my Document folder can you please list how can i uninstall java and suggest me an appropiate folder to install that
That is not a problem , you just mention the proper path when u set the JAVA_HOME in /etc/profile file.
For Setting Java Path , please refer this link
http://www.openpeta.com/index.php/setting-java-path-java_home-and-path-in-linux/
cool blog!!!
please help me with the commands to uninstall packages that are installed using the .bin extensions on the terminal.
I searched for the programs i installed using binary file in the package manager, however it does not lists those packages.
First find the installation directory of .bin file , surely uninstall script will be in that directory . For example if you installed netbeans using bin file in /opt directory
you can use this command for uninstalling it
#sudo su
#cd /opt/netbeans
#./uninstall
Try This …