LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-11-2006, 11:04 AM   #1
rupert97212
LQ Newbie
 
Registered: Mar 2006
Posts: 2

Rep: Reputation: 0
Angry ndiswrapper problem w FC4


I am running FC4 with 2.6.15-1.1833_FC4 kernel,

I am trying to install WUSB11 USB wireless card using ndiswrapper. I have downloaded and tar'ed ndiswrapper, but when I try to "make install" I get the following response from terminal:

[root@localhost ndiswrapper-1.11rc2]# make install
make -C driver install
make[1]: Entering directory `/home/rupert/Desktop/ndiswrapper-1.11rc2/driver'
make -C /lib/modules/2.6.15-1.1833_FC4/build SUBDIRS=/home/rupert/Desktop/ndiswrapper-1.11rc2/driver \
DRIVER_VERSION=1.11rc2
/usr/src/kernels/2.6.15-1.1833_FC4-i686/scripts/gcc-version.sh: line 11: gcc: command not found
/usr/src/kernels/2.6.15-1.1833_FC4-i686/scripts/gcc-version.sh: line 12: gcc: command not found
make[2]: gcc: Command not found
make[2]: Entering directory `/usr/src/kernels/2.6.15-1.1833_FC4-i686'
CC [M] /home/rupert/Desktop/ndiswrapper-1.11rc2/driver/hal.o
/bin/sh: gcc: command not found
make[3]: *** [/home/rupert/Desktop/ndiswrapper-1.11rc2/driver/hal.o] Error 127
make[2]: *** [_module_/home/rupert/Desktop/ndiswrapper-1.11rc2/driver] Error 2
make[2]: Leaving directory `/usr/src/kernels/2.6.15-1.1833_FC4-i686'
make[1]: *** [default] Error 2
make[1]: Leaving directory `/home/rupert/Desktop/ndiswrapper-1.11rc2/driver'
make: *** [install] Error 2

As far as I can determine gcc is present in the folder /home/rupert/Desktop/ndiswrapper-1.11rc2/driver/hal.o
/bin/sh

I installed gcc 3.2 using Yum as I read gcc 4.0 can cause some problems.

I am stuck Any help ?

Rupert
 
Old 03-11-2006, 11:49 AM   #2
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 683Reputation: 683Reputation: 683Reputation: 683Reputation: 683Reputation: 683
Try entering "gcc -v" to verify that it is installed.
 
Old 03-11-2006, 12:33 PM   #3
rupert97212
LQ Newbie
 
Registered: Mar 2006
Posts: 2

Original Poster
Rep: Reputation: 0
Thanks for the reply.

It doesn't look like it thinks gcc is installed:


[rupert@localhost ~]$ gcc -v
bash: gcc: command not found

But.. when I use "locate" command I get this :

[root@localhost rupert]# locate gcc
/lib/libgcc_s.so.1
/lib/libgcc_s-4.0.2-20051126.so.1
/var/cache/yum/updates-released/headers/libgcc-4.0.2-8.fc4.i386.hdr
/var/cache/yum/updates-released/packages/libgcc-4.0.2-8.fc4.i386.rpm
/usr/lib/gcc-lib
/usr/lib/openoffice.org2.0/program/libcppuhelper3gcc3.so
/usr/lib/openoffice.org2.0/program/libsalhelpergcc3.so.3
/usr/lib/openoffice.org2.0/program/libstlport_gcc.so
/usr/lib/openoffice.org2.0/program/libcppuhelpergcc3.so
/usr/lib/openoffice.org2.0/program/libuno_salhelpergcc3.so.3
/usr/lib/openoffice.org2.0/program/libcppuhelpergcc3.so.3
/usr/lib/openoffice.org2.0/program/libuno_salhelpergcc3.so
/usr/lib/openoffice.org2.0/program/libgcc3_uno.so
/usr/lib/openoffice.org2.0/program/libuno_cppuhelpergcc3.so.3
/usr/lib/openoffice.org2.0/program/libucbhelper3gcc3.so
/usr/lib/openoffice.org2.0/program/libi18nregexpgcc3.so
/usr/lib/openoffice.org2.0/program/libsalhelper3gcc3.so
/usr/lib/openoffice.org2.0/program/libcomphelp4gcc3.so
/usr/lib/openoffice.org2.0/program/libuno_cppuhelpergcc3.so
/usr/lib/openoffice.org2.0/program/libsalhelpergcc3.so
/usr/lib/openoffice.org2.0/program/libjvmaccessgcc3.so.3
/usr/lib/openoffice.org2.0/program/libi18nutilgcc3.so
/usr/lib/openoffice.org2.0/program/libvos3gcc3.so
/usr/lib/openoffice.org2.0/program/libjvmaccessgcc3.so
/usr/share/doc/libgcc-4.0.2
/usr/share/doc/libgcc-4.0.2/COPYING.LIB
/usr/share/locale/es/LC_MESSAGES/msgcc
/usr/share/locale/fr/LC_MESSAGES/msgcc
/usr/share/locale/C/LC_MESSAGES/msgcc
/usr/share/locale/it/LC_MESSAGES/msgcc
/usr/share/locale/de/LC_MESSAGES/msgcc
/usr/share/locale/pt/LC_MESSAGES/msgcc
/usr/share/ghostscript/Resource/ac14/CMap/HKgccs-B5-H
/usr/share/ghostscript/Resource/ac14/CMap/HKgccs-B5-V
/usr/share/ghostscript/Resource/CMap/HKgccs-B5-H
/usr/share/ghostscript/Resource/CMap/HKgccs-B5-V
/usr/sbin/libgcc_post_upgrade
/usr/libexec/gcc
/usr/libexec/gcc/i386-redhat-linux
/usr/libexec/gcc/i386-redhat-linux/4.0.2
/usr/libexec/gcc/i386-redhat-linux/4.0.2/cc1


Where do I go from here ?

Thanks in advance
 
Old 03-15-2006, 06:05 AM   #4
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 683Reputation: 683Reputation: 683Reputation: 683Reputation: 683Reputation: 683
If you had the gcc package installed you would see these files and more:
~> rpm -q gcc --filesbypkg
gcc /lib64/32
gcc /usr/bin/cc
gcc /usr/bin/gcc
gcc /usr/bin/gccbug
gcc /usr/bin/gcov
gcc /usr/bin/protoize
gcc /usr/bin/unprotoize

You need to install the gcc package.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
FC4 ndiswrapper error booting onthefritz Linux - Wireless Networking 9 01-03-2006 02:48 PM
FC4 eMachines ndiswrapper problem (don't think it has anything to do with FC4) unknownmosquito Linux - Laptop and Netbook 2 12-04-2005 11:50 AM
FC4 ndiswrapper help kman2045 Linux - Wireless Networking 2 11-09-2005 04:19 AM
ndiswrapper compile problem FC4 totenengel Fedora 1 06-27-2005 07:38 AM
ndiswrapper, TrueMobile 1300, and FC4 tommcfarlin4 Fedora 3 06-19-2005 04:50 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 10:50 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration