LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
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 09-15-2004, 07:40 PM   #1
lnebrown
Member
 
Registered: Sep 2004
Location: Seattle
Distribution: Ubuntu
Posts: 51

Rep: Reputation: 15
Help with intel 536ep modem and Suse 9.1


Hi, I'm new to Linux, running Suse 9.1 (Personal Edition, so i installed gcc on my own), and having problems trying to install my Intel 536ep "winmodem". I know people have been having problems with this modem, but I saw that Intel actually released the driver for Suse 9.1(installed from "intel-536ep-4.69-suse91-smp.tgz")
So following the readme.txt instructions, this is what i get:

linux:/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp # make clean
cd coredrv; make clean
make[1]: Entering directory `/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp/coredrv'
rm -f *.ko *.o *~ core
make[1]: Leaving directory `/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp/coredrv'
rm -f *.o *.ko

linux:/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp # make 536
Module precompile check
Current running kernel is: 2.6.4-52-default
/lib/modules... autoconf.h exists
diff: /boot/vmlinuz.autoconf.h: No such file or directory
autoconf.h matches running kernel
diff: /boot/vmlinuz.version.h: No such file or directory
version.h matches running kernel
uname -r|grep "2.6" && \
cd coredrv && make 536core_26 && \
cp Intel536.ko .. && cd .. && \
strip --strip-debug Intel536.ko && \
exit; \
ls Intel536.ko >/dev/null 2>&1 || uname -r | grep "2.6" && echo "Failed to build driver" && exit; \
if [ ]; then \
cd coredrv; make TARGET=TARGET_SELAH KERNEL_SOURCE_PATH= "PSTN_DEF=-DTARGET_SELAH -DTARGET_LINUX -DLINUX" 536core; \
else \
cd coredrv; make TARGET=TARGET_SELAH KERNEL_INCLUDES=/lib/modules/`uname -r`/build/include \
"PSTN_DEF=-DTARGET_SELAH -DTARGET_LINUX -DLINUX" 536core; \
fi ; \
cp Intel536.o .. ; \
if [ -a /boot/vmlinuz.version.h ]; then \
cp /boot/vmlinuz.version.h /lib/modules/`uname -r`/build/include/linux/version.h;\
fi
2.6.4-52-default
make[1]: Entering directory `/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp/coredrv'
make -C /lib/modules/2.6.4-52-default/build SUBDIRS=/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp/coredrv modules
make[2]: Entering directory `/usr/src/linux-2.6.4-52'
make[2]: *** No rule to make target `stuff/Another'. Stop.
make[2]: Leaving directory `/usr/src/linux-2.6.4-52'
make[1]: *** [536core_26] Error 2
make[1]: Leaving directory `/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp/coredrv'
2.6.4-52-default
Failed to build driver

linux:/home/lnebrown/Desktop/modem stuff/Another try/intel-536EP-4.69-suse91-smp # make install
rm -f /etc/hamregistry.bin
bash Intel536_inst
running kernel 2.6.4-52-default
installing hamregistry, used for persistant storage
installing Intel536 driver
install: cannot stat `Intel536.ko': No such file or directory
make: *** [install] Error 1



So can anybody help me out? I very badly want to ditch windows, but I'd prefer not to buy a new modem.

Much appreciated,

CLB
 
Old 09-16-2004, 07:33 PM   #2
penguin4
Senior Member
 
Registered: May 2004
Location: california
Distribution: mdklinux8.1
Posts: 1,209

Rep: Reputation: 45
inebrown; visit intels web site. request driver
for their modem. that may solve problem.
 
Old 09-17-2004, 06:38 AM   #3
lnebrown
Member
 
Registered: Sep 2004
Location: Seattle
Distribution: Ubuntu
Posts: 51

Original Poster
Rep: Reputation: 15
Thanks, I may try that.

But in the meantime, do the error messages above show that I need to install some package or anything else?

It seems to me that the first error is:
diff: /boot/vmlinuz.autoconf.h: No such file or directory

what do i need to install to get this header file?
 
Old 10-28-2004, 02:39 PM   #4
thegsusfreek
Member
 
Registered: Jul 2004
Posts: 34

Rep: Reputation: 15
Are you doing this as root? That's the only thing I can really think of.

Currently, I'm also having trouble installing (from the source) on FC2. This is strange since I've installed it about four times on FC2 already with absolutely no problems. Anyway, I hope you get this solved
 
Old 10-28-2004, 04:22 PM   #5
penguin4
Senior Member
 
Registered: May 2004
Location: california
Distribution: mdklinux8.1
Posts: 1,209

Rep: Reputation: 45
inebrown; question? how about rechecking entries ,redoing & go slower without making errors in entring commands or misspelling. that may be where error may show problem?
slow down go carefully methodically & step by step.
 
Old 10-28-2004, 08:48 PM   #6
thegsusfreek
Member
 
Registered: Jul 2004
Posts: 34

Rep: Reputation: 15
Ooooooooohhhhh... I figured out your problem. lol! So simple, I should've seen it before.

Okay, when you do "make install" you get the error that there is no intel536.ko The reason for this error is this: "Intel536.ko" is the driver. If you look at the last line of "make 536", you'll see:

Quote:
Failed to build driver
The reason that it failed is because of this line right here:

Quote:
make[2]: *** No rule to make target `stuff/Another'. Stop.
It's because it doesn't work with spaces. It thinks that "linux:/home/lnebrown/Desktop/modem" is the directory and that "stuff/Another" is the file. Just extract the tar to your home directory ("/home/lnebrown") and do it again. It should work just fine. Just be sure that you install while logged in as root. This doesn't work when you're logged in as a user with root priveleges. I just figured that out today.

Let me know if this helps.
 
Old 10-29-2004, 12:28 PM   #7
penguin4
Senior Member
 
Registered: May 2004
Location: california
Distribution: mdklinux8.1
Posts: 1,209

Rep: Reputation: 45
thegsusfreek; thank you with that info, last time i tried that got chewed by mod.
yeah some times little thngs do get overlooked. thank you again.
 
Old 10-29-2004, 11:02 PM   #8
thegsusfreek
Member
 
Registered: Jul 2004
Posts: 34

Rep: Reputation: 15
Quote:
last time i tried that got chewed by mod.
Tried what? Running a program in a dir with spaces? Helping someone? Sry, I'm confused. :P
 
Old 10-30-2004, 12:32 PM   #9
penguin4
Senior Member
 
Registered: May 2004
Location: california
Distribution: mdklinux8.1
Posts: 1,209

Rep: Reputation: 45
thegsusfreek; sry; attempting to help another. guess it was difference of opinion between mod & my reply.
 
Old 11-08-2004, 01:16 PM   #10
lnebrown
Member
 
Registered: Sep 2004
Location: Seattle
Distribution: Ubuntu
Posts: 51

Original Poster
Rep: Reputation: 15
it works!

It worked! Now I'm one step closer to being windows-free! I just need to find some good support for my miniDV camcorder....
 
Old 11-08-2004, 01:35 PM   #11
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
lnebrown - congrats on finding the solution. It would be helpful to future readers if you described what you did to achieve these results. (I assume it was thegsusfreak's advice that led to the solution; spaces in directory names IMO should be avoided)

penguin4 - if you have an issue or problem with a mod, please take it up with the mod directly or contact the site admin (aka jeremy). -- J.W.
 
Old 11-08-2004, 08:11 PM   #12
lnebrown
Member
 
Registered: Sep 2004
Location: Seattle
Distribution: Ubuntu
Posts: 51

Original Poster
Rep: Reputation: 15
the modem installed correctly when I extracted the install files into the ...home\username\ directory as thegsusfreak suggested. I previously tried running the files from another directory, and the folder names had spaces, and that is what gave me the initial error. I'm not sure if it would have run in the original location if I had taken out the spaces in the directory name.
 
  


Reply



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
intel 536ep modem with suse 9.3 pro pcandpc Linux - Newbie 46 09-20-2005 12:51 AM
SUSE 9.3 Pro: Intel 536EP Modem anjum Linux - Software 2 07-29-2005 02:54 PM
SuSE 9.2 Pro & Intel 536ep modem DavidAndrews Linux - Hardware 0 06-29-2005 02:56 AM
Intel 536ep modem problem SuSE 9.2 (no dialtone - but works in Windows!) AtSymbol SUSE / openSUSE 3 05-27-2005 09:21 AM
536ep Intel modem Joe47 Linux - Newbie 18 11-24-2003 12:22 AM

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

All times are GMT -5. The time now is 03:56 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