How to enable wireless lan in Ubuntu 11.10
Tech-Today

How to enable wireless lan in Ubuntu 11.10


This page contains a set of bash commands that will enable a wireless interface on ubuntu 11.10.

List all network interfaces with wireless extensions

sudo iwconfig

Enable wlan0 interface
sudo ip link set wlan0 up

Scan for available access point
sudo iwlist wlan0 scan

Know the hex equivalent of the wifi password
wpa_passphrase MY-WIFI xyz1234

Which will output:

network={
ssid="MY-WIFI"
#psk="xyz1234"
psk=abcdefghijkl12345678
}
Take note of the psk
Edit network interfaces config and add wlan0
sudo nano /etc/network/interfaces

Using DHCP
auto wlan0
iface wlan0 inet dhcp
wpa-ssid MY-WIFI
wpa-psk abcdefghijkl12345678

Using Static IP
auto wlan0
iface wlan0 inet static
netmask 255.255.255.0
gateway 192.168.0.1
address 192.168.0.10
network 192.168.0.0
broadcast 192.168.0.255
wpa-driver wext
wpa-ssid MY-WIFI
wpa-ap-scan 1
wpa-proto RSN
wpa-pairwise CCMP
wpa-group CCMP
wpa-key-mgmt WPA-PSK
wpa-psk abcdefghijkl12345678

Restart networking service
sudo /etc/init.d/networking restart

List all modules and look for your wireless card
lsmod

To enable wireless module upon boot time, edit /etc/default/grub file to look like something below:
sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX="insmod rt1234ef"




- Install And Configure Mariadb On Ubuntu
I. Installation In your terminal execute the following commands: sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 sudo add-apt-repository 'deb [arch=amd64] http://mirror.zol.co.zw/mariadb/repo/10.3/ubuntu...

- Operating Systems
How to show all startup items in Ubuntu 12.04How to install artifactory and jenkins on ubuntu 12.04How to dual boot Windows 7 and Ubuntu 12.04 on Lenovo G480How to setup an OpenVPN client on an Ubuntu machineHow to setup a DNS Server on ubuntu 12.04How...

- How To Block Nvidia Driver In Ubuntu 12.04
This page is a series of bash commands to block nvidia in your linux system: >cd /etc/modprobe.d/ >sudo vi blacklist-nvidia.conf //create if not exists ->write: blacklist nvidia-current >sudo update-initramfs -u >sudo reboot A bonus is...

- How To Dual Boot Windows 7 And Ubuntu 12.04 On Lenovo G480
Finally after trying out several configurations that didn't work I am now able to successfully boot a Windows 7 and Ubuntu 12.04 OS on a Lenove G480 laptop. First here's what didn't work: 1.) easyBCD doesn't work, Windows 7 will just...

- How To Install Subversion And Websvn On Ubuntu 12.04
This write-up contains a set of instruction on how to install and configure svn as well as setup websvn on an ubuntu 12.04 machine. 1.) Install subversion and apache2 sudo apt-get install subversion sudo apt-get install apache2 sudo apt-get install libapache2-svn...



Tech-Today








.