Thread: Problem Installing Wireless Drivers In Linux

  1. #1
    Dr Dipshi++ mike_g's Avatar
    Join Date
    Oct 2006
    Location
    On me hyperplane
    Posts
    1,218

    Problem Installing Wireless Drivers In Linux

    I installed Ubuntu the other day and found some drivers that should work for my wireless card. I'm following the instrructions in the readme which basically says to go to the unzipped directory in the command line and type 'make' to compile the source.

    I did that but I get these errors:
    !!! WARNING: Module file much too big (>1MB)
    !!! Check your kernel settings or use 'strip'
    As the source is all compiled in C my best guess is that its blowing the stack. Theres quite a lot of files in the directory (9.3 MB worth). Anyone know what I should do to get this to work?

    Cheers.

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    The 'size' command tells you how much real information there is (as opposed to debug information), and the 'strip' command removes unnecessary fluff from a module.

    Eg.
    $ ls -l a.exe
    -rwxr-xr-x 1 usr None 9933 Dec 5 11:50 a.exe
    $ size a.exe
    text data bss dec hex filename
    1072 808 64 1944 798 a.exe

    $ strip a.exe
    $ ls -l a.exe
    -rwxr-xr-x 1 usr None 4096 Dec 5 11:50 a.exe
    $ size a.exe
    text data bss dec hex filename
    1072 808 64 1944 798 a.exe
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Compile problem on linux
    By cnb in forum C Programming
    Replies: 3
    Last Post: 09-29-2008, 04:14 AM
  2. Major wireless problem
    By joeprogrammer in forum Tech Board
    Replies: 1
    Last Post: 07-21-2006, 05:29 PM
  3. Why Linux, for the average user?
    By Hunter2 in forum A Brief History of Cprogramming.com
    Replies: 32
    Last Post: 07-07-2006, 02:36 PM
  4. ATI Linux display drivers
    By psychopath in forum Tech Board
    Replies: 2
    Last Post: 03-23-2006, 12:35 PM
  5. problem with installing visual studio.net!!!!!!
    By moemen_ahmed in forum Windows Programming
    Replies: 1
    Last Post: 06-15-2002, 11:54 PM