Wednesday, September 23, 2009

Saturday, October 11, 2008

Connection with BSNL broadband using ZXDSL 531B modem in Ubuntu

Since last few weeks me and my friends are trying to connect with broadband connection of BSNL in Ubuntu 7.04

It was working perfectly in Windows-XP but not In Ubuntu 7.04
But Now Its working fine in also in Ubuntu 7.04

Many wireless cards are automatically detected by Ubuntu during installation. But some cards may not work automatically with Ubuntu.

A reliable way of getting a wireless card to work is to use the ndiswrapper tool which allows Ubuntu to use the Microsoft Windows driver for the wireless card. To do this, follow the instructions below.

  1. To install ndiswrapper, install the package ndiswrapper-utils (see Add Applications). This package is provided on the Ubuntu CD. If you have access to the Internet, you can also optionally install a graphical tool, ndisgtk from the Universe repository (see ../../add-applications/C/#extra-repositories)

  2. Open ApplicationsAccessoriesTerminal and type:

    sudo ndiswrapper -i ~/Desktop/drivername.inf


    The above command assumes that your .INF file is named drivername.inf and was copied to your Desktop. Replace these values if necessary.

  3. To check if it is working correctly, type:

    ndiswrapper -l

    If it is working correctly, you should see:

    Installed ndis drivers:
    {name of driver} driver present, hardware present

  4. For ndiswrapper to function, you need to load a module. To do this, type:

      sudo depmod -a
    sudo modprobe ndiswrapper
  5. To ensure that the module is loaded each time you boot the computer, type:

    sudo ndiswrapper -m
  6. Configure your wifi network and Restart your network
sudo /etc/init.d/networking restart


I hope you also will connecting with BSNL Broadband Internet Connection

BSNL Best Hai Mere Liye

Wednesday, January 30, 2008

Format Pen Drive or create partition in pen drive on Linux

To format a pen drive or Create a new partition in pen drive using the command line in Linux platform, please follow the following steps.

  • Type sudo su for the super user access
  • Type fdisk -l to list available drives/partitions.Note which device is your flash drive (Example: /dev/sda).Here i have place the x as a drive later, so replace it as per your drive latter. For example: if your pen drive is sdb then replace x with b.
  • Type umount /dev/sdx1
  • Type fdisk /dev/sdx . This will ask you commands you want tobe perform. so please follow the following steps
    • type p to show the existing partition.
    • type d to delete the existing partition.
    • type p again to show any remaining partitions (if partitions exist, repeat previous steps)
    • type n to make a new partition. It will ask for partition type
      • e for extended partition
      • p for primary partition
    • type p for primary partition
    • type 1 to make first partition (partition no. starts from 1 to 4)
    • type starting cylinder for a partition or just Hit the Enter to use default 1st cylinder
    • type ending cylinder to set the partition size or just hit Enter for the default last cylinder (so you have only one partition)
    • type a to make this partition active, it will ask for partition number to active
    • type 1 to select partition 1
    • type t to select the change the partition File System. it will ask you for file system
    • type 6 to select FAT16 file system
    • type w to write a new partition table
  • Type umount /dev/sdx1 to ensure the 1st partition is unmounted
  • Type mkfs.vfat -F 16 -n ubuntu710 /dev/sdx1 to format the first partition
  • Remove and Re-insert your flash drive