LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Solved: intel536ep internal modem on Slackware 11 (https://www.linuxquestions.org/questions/slackware-14/solved-intel536ep-internal-modem-on-slackware-11-a-498014/)

dh2k 11-02-2006 03:50 PM

Solved: intel536ep internal modem on Slackware 11
 
This post has been created for the little to medium experienced linux user to get the intel536ep internal modem working on Slackware 11.

Download the intel536ep driver from intel website download centre.
(www.intel.com).


As root user extract the tarball to /root/intel_internal_modem_driver/ (create dir intel_internal_modem_driver)
Do:
Code:

make clean
make 536
make install

At this point the install failed on my Slackware 11 system.
So, create a file named "modem_boot_sc" in directory /root/admin_scripts (create dir admin_script)
add this code to the file:

Code:

#!/bin/sh
#
#

insmod -f /root/intel_internal_modem_driver/Intel-536/Intel536.o
hamregistry&
rm /dev/536ep
mknod /dev/536ep c 240 1
ln -s /dev/536ep /dev/modem


Now make the file executable with:
Code:

cd /root/admin_scripts
chmod +x modem_boot_sc

Now add this to rc.local found in /etc/rc.d/
Code:

cd /root/admin_scripts/
./modem_boot_sc

Reboot, and now the modem should work. Feel free to give feedback on this post.
Note 1, all directories and paths are "as is" on my system. Change to what you want but remember to change the script code to match.

Note 2, the driver/module "Intel536.o" is created if you have kernel 2.4.x. I believe kernel 2.6.x creates "Intel536.ko", therefore amend the script code above for your kernel.
Check your kernel with:
Code:

uname -r

Simon Bridge 11-04-2006 01:30 AM

Well done, this is a notoriously difficult modem to get going.

It would be interesting to see how this goes in other distros. For eg - selinux users will probably have to set the secrity context in the mknod step...


All times are GMT -5. The time now is 03:14 AM.