-
نصب مودم و برقراری ارتباط با اینترنت در توزیعهای خانواده اوبونتو گنو/لینوکس
از آنجایی که نصب مودم در اوبونتو یا هر گنو/لینوکس دیگر جزو اولین مشکلاتی است که یک کاربر ایرانی با آن مواجه میشود، در این انجمن نیز تصمیم گرفته شد تا بخشی خاص به سوالات و جوابها و راهنماییها در خصوص نصب انواع مودم در اوبونتو اختصاص یابد.
راهنمای جامع نصب مودم و برقراری اتصال به اینترنت (http://wiki.ubuntu-ir.org/DialupModemHowto)
از کلیه کاربران محترم درخواست میکنیم پیش از باز کردن یک عنوان و طرح پرسشی جدید در رابطه با مودم این نوشتار و سایر پرسش و پاسخها را مطالعه نموده و سپس اقدام به طرح مسئله نمایند.
با تشکر
-
با سلام من يك مودم ADSL مدل COMTREND دارم به صورت اكسترنال . ميخواستم چگونگي نصب آن را در لينوكس دبيان بدانم ممنون از راهنماييتان
سلام دوست عزیز. خوش آمدی :)
بهتر بود برای مطرح کردن مشکلتون یک تاپیک جدید درست میکردین، چون اینجا جای مناسبی نیست ;)
موفق باشی !
-
all cleared due to friends persisting on deleting my phone no. ! & now be relaX
-
اینم از مودم ما.حالا چی کار کنم؟
#!/bin/bash
# scanModem maintainer is Marvin Stodolsk y
# SETDATE must be 4th line for following sed "4s/ action
SETDATE="SETDATE=2008_11_06,week_44"
cat<<END>>/dev/null
Browse http://linmodems.technion.ac.il and download scanModem.gz .
Within a Linux partition
gunzip scanModem.gz
To make it executable:
chmod +x scanModem
Run diagnositics with:
./scanModem
Only the ouput ModemData.txt should be sent to Discuss@linmodems.org
== to do stuff ====
8086:27d8 1025:0110, has cases of both 11c11040 AND 11c13026
http://tuxmobil.org/phones_linux.html cellphone guidance
slamr reload on 2.6.24
EQUADOR=USA modem code
Spanish - Carlos Marcano <c.marcano@gmail.com>
Amjad <isstaif@gmail.com> fluent in English Arab, Syria
scanModem under RAM boot
fake mode without modem
Please subscibe to the List at www.linmodems.org and email to the List rather than direct to me, as I am only on line irregularly.
Syed Karim <kolosus2@hotmail.com> uses USA pclinuxos
http://www.cisco.com/warp/public/471/debug_ppp_negotiation.html
END
PATH=/usr/sbin:/usr/bin:/sbin:/bin
CMD_PATH="/bin /usr/bin /sbin /usr/sbin"
# processing alternatives
if test "$1" = up ; then
FLD=.updates
mkdir -p $FLD
DATED=$(date +%Y%m%d%M)
NEWDATE=SETDATE=$(date +"%Y_%m_%d,week_%U")
# echo SETDATE=$SETDATE changed to $NEWDATE
sed "4s/$SETDATE/$NEWDATE/" scanModem > $FLD/scanModem.$DATED
chmod +x $FLD/scanModem.$DATED
cp -a $FLD/scanModem.$DATED ./scanModem
gzip $FLD/scanModem.$DATED
cp -a $FLD/scanModem.$DATED.gz ./scanModem.gz
echo New SetDate is:
grep -m 2 SETDATE scanModem
ls scanModem $FLD/scanModem.*
UPDATE=$(echo $NEWDATE | cut -b9-18)
# because $UPDATE is used several times in the script body
echo UPDATE=$UPDATE
echo
exit
elif test "$1" = skip ; then
echo "Skipping to scanout parsing stage."
SKIP=1
elif test "$1" = fake ; then
# for script testing and faking inputs, with $2 and $3 format VendorID:DeviceI
if test -z "$2" ; then
cat<<END
fake mode syntax is: ./scanModem fake PCIid PCIidSubsystem Distro KernelVersion GCC CPU"
with a minimum of: ./scanModem fake PCIid"
END
exit
fi
TST=1
PCIDEV="$2"
SUBSYS="$3"
ISSUER="$4"
SYS="$5"
GCC123="$6"
CPU="$7"
else
# Calculate revision age from SETDATE
UPDATE=$(echo $SETDATE | cut -b9-18)
echo UPDATE=$UPDATE
wk=$(echo $SETDATE| awk -F_ '{ print $4 }' | sed 's/0*//')
# echo wk=$wk
SETDATE=
WeekDiff=$(( $(echo $(date +%U) | sed 's/0*//') - $wk ))
if test "$WeekDiff" -ge 4 ; then
cat<<END
There are weekly updates of scanModem. Your copy is more than
$WeekDiff weeks old!!
If decisive guidance is not provided by this scanModem of $UPDATE,
download an update from http://linmodems.technion.ac.il
Continuing in 10 seconds.
END
sleep 10
else
cat<<END
Continuing as this update is only $WeekDiff weeks old,
but the current Update is always at: http://linmodems.technion.ac.il
END
sleep 2
fi
wk=
WeekDiff=
fi
# if test "$UID" != 0 ; then
# echo Run with Root permission:
# if test -n "$SUDO" ; then
# echo sudo $0
# else
# echo $ su - root
# echo # $0
# fi
# echo
# exit
# fi
if test -z "$SYS" ; then
# SYS maybe provided by prior script
SYS=$(uname -r)
fi
KRPM=$(uname -r | sed -e 's/-/_/g')
# KRPM needed for rpm underscore syntax
# SYS=2.6.8.1-+3-686 , difficult parsing case
KVER=$(uname -r | cut -d- -f1 | cut -d+ -f1 | cut -d. -f1-3)
KMAJOR=$(echo $SYS | cut -d. -f1-2)
KRELEASE=$(echo $KVER | cut -d. -f3)
KEXT=$(echo $SYS | sed -e 's/'$KVER'//g')
# Short term files have names 0tmpfile.1 2 3 etc.
rm $TMPM 2>/dev/null
#if test -z "$TMPM" ; then
# TMPM=0tmpfile
# if test -d /dev/shm ; then
# use /dev/shm RAM space if possible for transient writes
# SHM=$(ls -dl /dev/shm | cut -d' ' -f1)
# if test "$SHM" = drwxrwxrwt ; then
# TMPM=/dev/shm/0tmpfile
# fi
# SHM=
# fi
# fi
if test -z "$BN" ; then
# BN may be inherited from an earlier script
BN=$(basename $0)
if test "$BN" != scanModem ; then
echo " Please rename this script scanModem, or some files will not print out."
echo " Abort with Ctrl-C, or wait 5 seconds to continue."
echo
sleep 5
fi
fi
if test -d Modem ; then
if test -z "$SKIP" ; then
/bin/rm -r Modem 2>/dev/null
else
rm Modem/ModemData.txt
fi
fi
mkdir -p Modem
RECORD=Modem/ModemData.txt
DOCs=Modem/DOCs
mkdir -p $DOCs
RECORD2=Modem/DOCs/YourSystem.txt
mkdir -p Modem/tmp
TMPM=Modem/tmp/0tmpfile
cat<<END>$RECORD2
This file should NOT be sent to Discuss@Linmodems.org
It has common guidance for modem usage after setup.
END
## A few environmental variables governing ouputs
DPKG=$(ls /usr/bin/dpkg /usr/sbin/dpkg 2>/dev/null)
# recognizes Debian like Systems
if test -z "$DPKG" ; then
# Debians may include RPM sector
RPM=$(ls /usr/bin/rpm /usr/sbin/rpm 2>/dev/null)
fi
if test "$(pwd)" = "/" -a -z "$RPM" ; then
cat<<END
$0 should NOT be run in the / directory!!
Copy scanModem to /root/ or /tmp/ of some /home/User/ folder.
Exiting now.
END
exit
fi
if test -z "$SKIP"; then
# Skip to scanout analyses
if test -f /etc/issue ; then
if grep buntu /etc/issue >/dev/null ; then
# covering Kubuntu, Ebuntu ete
ISSUER=Ubuntu
# Ubuntu related distros using sudo rather than "su - root"
SUDO=sudo
elif grep SuSE /etc/issue >/dev/null ; then
# SuSE is not the first word in /etc/issue
ISSUER=SuSE
elif grep "Red Hat" /etc/issue >/dev/null ; then
# SuSE is not the first word in /etc/issue
ISSUER=redhat
elif grep edora /etc/issue >/dev/null ; then
# SuSE is not the first word in /etc/issue
ISSUER=fedora
elif grep .[fc:digit:]. /etc/issue >/dev/null ; then
# SuSE is not the first word in /etc/issue
ISSUER=fedora
else
ISSUE=$(cut -d'\' -f1 /etc/issue)
ISSUER=$(cut -d' ' -f1 /etc/issue | cut -d_ -f1 | cut -d- -f1)
fi
elif test -f /etc/slackware-version ; then
ISSUER=Slackware
else
ISSUER="Linux distro not identified"
fi
echo>$TMPM
# Here to reveal installed software
if test -L /dev/modem ; then
link=" The modem symbolic link is /$(ls -l /dev/modem | cut -d/ -f2- 2>/dev/null)"
echo $link > $TMPM
fi
if test -L /dev/ttySL0 ; then
link2=" The slmodemd set symbolic link is /$(ls -l /dev/ttySL0 | cut -d/ -f2- 2>/dev/null)"
echo $link2 >>$TMPM
fi
link=
link2=
CPU=$(uname -m)
cat<<END>>$RECORD
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry $ISSUE kernel $(uname -r)
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=$CPU, $ISSUE
$(cat /proc/version)
scanModem update of: $UPDATE
$(cat $TMPM)
END
if grep -i slack /etc/issue >/dev/null ; then
echo "Mike Mohr <akihana@gmail.com> can provide assistance with Slackware related issues.">>$RECORD
echo >>$RECORD
fi
if test "$CPU" = x86_64 ; then
cat<<END>>$RECORD
Some modem drivers can only be used in 32 bit modem on x86_64 systems,
while some others are competent on x86_64 Systems. Cases are:
1) http://linmodems.technion.ac.il/bigarch/archive-seventh/msg03119.html
for the snd-hda-intel audio+modem driver. Also applicable to AC97 modem controllers.
In both cases, 32 bit libraries must be installed to support the slmodemd helper having a precompiled 32 bit component.
2) For USB modems using the slusb.ko driver. 32 bit libraries must be installed to support the slmodemd helper having a precompiled 32 bit component
3) The hsfmodem and hcfpcimodem drivers for Conexant chipsest modes are x86_64 competent.
END
fi
LSMOD=$(lsmod | grep Module)
if test -z "$LSMOD" ; then
echo "lsmod utility not found! Install the package modutils">>$RECORD
fi
# preparing to grep CONFIG
if test -f /boot/config-$SYS ; then
CONFIG=/boot/config-$SYS
elif test -f CONFIG=/boot/config-$SYS-default ; then
CONFIG=/boot/config-$SYS-default
else
CONFIG=
fi
## GCC analysis
# sed replace s ( and ) with spaces
GCC_INPUT=$(cat /proc/version | sed -e 's/)/ /g' | sed -e 's/(/ /g')
# Picks our version # following gcc
if test -z "$GCC123" ; then
GCC123=$(for i in $GCC_INPUT ; do echo $i ; done | grep -A2 gcc | grep -A1 ersion | grep -v ersion)
fi
# last cut for rare names like: MyCompiler-3.3.5
GCC12=$(echo $GCC123 | cut -d. -f1-2 | cut -d- -f2)
GCC1=$(echo $GCC12 | cut -d. -f1)
GCC2=$(echo $GCC12 | cut -d. -f2)
# for later package name output
SLMODEMD=SLMODEMD.gcc$GCC12.tar.gz
# Check resident compiler
GCCtests=$(ls /usr/bin/gcc /usr/bin/gcc-?.? 2>/dev/null)
if test -z "$TST" -a -n "$GCCtests" ; then
for i in $GCCtests
do
GCCt=$($i -dumpversion | grep $GCC12 2>/dev/null)
if test -n "$GCCt" ; then
GCC=$GCCt
GCCs=$(echo $GCCt | cut -d. -f1-2)
GCCt=
fi
done
fi
if test -z "$GCC" ; then
GCC=none
fi
GCCtests=
BL1=$(grep -rs modem /etc/modprobe* | grep blacklist | grep -v "#" 2>/dev/null)
BL2=$(grep -rs snd-intel8x0m /etc/modprobe* | grep blacklist | grep -v "#" 2>/dev/null)
if test -z "$TST" -a -n "$BL1" -o "$BL2" ; then
cat<<END>>$RECORD
Modem drivers blocked from loading during bootup are listed in /etc/modprobe* file lines:
$BL1
$BL2
END
else
echo " There are no blacklisted modem drivers in /etc/modprobe* files ">>$RECORD
fi
BL1=
BL2=
# modem covers ALSA snd-*-modem drivers
cat<<END>$TMPM
modem
intel8x0m
hsf
hcf
slam
slusb
snd-hda-intel
agrmodem
agrserial
martian_dev
END
DLOADED=$(lsmod | grep -f $TMPM | cut -d' ' -f1 | grep -f $TMPM)
if test -z "$TST" -a -n "$LOADED" ; then
cat<<END>>$RECORD
Potentially useful modem drivers now loaded are:
$DLOADED
END
fi
DLOADED=
for i in $CMD_PATH
do
if test -x $i/lspci ; then
LSPCI=$i/lspci
fi
done
if test -z "$TST" -a -z "$LSPCI" ; then
cat<<END | tee -a $RECORD
WARNING: lspci not found - exiting
lspcidrake is not adequate for scanmodem
Please install the package: pciutils
END
exit 1
echo
fi
for i in $CMD_PATH
do
if test -x $i/dmesg ; then
DMESG=$i/dmesg
fi
done
for i in $CMD_PATH
do
if test -x $i/aplay ; then
APLAY=$i/aplay
fi
done
# Known High Definition Audio cards, possibly hosting soft modems
cat<<END>$TMPM.hda
10de:026a
10de:026c
10de:03f0
10de:0371
10de:055c
8086:2668
8086:27d8
8086:284b
8086:284d
8086:293e
10b9:5461
1106:3288
1002:4383
1002:437b
1002:aa08
1039:7502
END
if test -z "$TST" ; then
if ! test -d /proc/asound ; then
cat<<END>$TMPM.HDA
Packages needed for support of Advanced Linux Sound Architecture (ALSA) support should be installed: alsa-base and alsa-utilities!!
They are necessary for support of ALSA modem drivers, many Conexant chipset modems and success of modem diagnostics for modems requiring slmodemd actions.
END
else
cat<<END>>$TMPM.HDA
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
END
ALSAver=$(cat /proc/asound/version | grep Version | cut -d' ' -f7 | cut -b1-6 )
ALSArel=$(echo $ALSAver | cut -d. -f3)
if test -n "$ALSArel" -a "$ALSArel" -ge 13 -a "$GCC12" = 4.0 ; then
SLMODEMD=SLMODEMD-1.0.13.tar.gz
fi
if test "$APLAY" ; then
SomeModem=$($APLAY -l | grep -i modem)
if test -z "$SomeModem" ; then
None=None
fi
cat<<END>>$TMPM.HDA
The ALSA verion is $ALSAver
The modem cards detected by "aplay -l" are: $None
$SomeModem
END
SomeModem=
None=
fi # APLAY
PCM=/proc/asound/pcm
if test -f $PCM ; then
PAC=/proc/asound/cards
cat<<END>>$TMPM.HDA
The $PCM file reports:
-----------------------
$(cat $PCM)
about $PAC:
------------------------
$(cat $PAC)
END
if grep Conexant $PCM >/dev/null ; then
HSF=1
fi
HDAbus=$($LSPCI -n | grep "0403: " | cut -d' ' -f1)
if test -n "$HDAbus" ; then
HDA=1
cat<<END>>$TMPM.HDA
PCI slot $HDAbus has a High Definition Audio Card
The drivers are in the kernel modules tree at:
$(find /lib/modules -name snd-hda-intel.ko)
END
if $LSPCI -n 2>/dev/null | grep $HDAbus | grep Class >/dev/null ; then
HDAdev=$($LSPCI -n 2>/dev/null | grep $HDAbus | cut -d' ' -f4)
else
HDAdev=$($LSPCI -n 2>/dev/null | grep $HDAbus | cut -d' ' -f3)
fi
HDAold=$(grep $HDAdev $TMPM.hda 2>/dev/null)
if test -z "$HDAold" ; then
cat<<END>>$TMPM.HDA
New HDA card type:
$($LSPCI-s $HDAbus 2>/dev/null)
$($LSPCI-s $HDAbus -n 2>/dev/null)
END
fi
## High Definition Audio card lines from /proc/asound/pcm
# 00-00 is the Audio card, the modem line is like:
# 00-06: Si3054 Modem : Si3054 Modem : playback 1 : capture 1
# IDENT=
# Driver=snd-hda-intel
Si3054Files=$(grep -rsl Si3054 /proc/asound/card?/codec#[1-6] 2>/dev/null)
# Now identied in ALSA patch_si3054, the HDA soft modem chips
# 163c3055 163c3155 11c11040 11c13026 11c13055 11c13155
# 10573055 10573057 10573155 11063288 15433155 18540018
# 14f12bfa 14f12c06 are Conexant chips not in patch_si3054
if test -z "$Si3054Files" ; then
ODD="11c11040 14f12bfa 14f12c06"
for odd in $ODD
do
OddCase=$(grep -rsl $odd /proc/asound/card?/codec#[1-6] 2>/dev/null)
if test "$OddCase" ; then
Si3054Files=$OddCase
fi
done
ODD=
Oddcase=
fi
if test "$Si3054Files" ; then
for SF in $Si3054Files
do
cat<<END>>$TMPM.HDA
The modem codec file for the HDA card is: $SF
--------------------------------------------------------
$(cat $SF)
END
SoftChip=$(grep Vendor $SF | cut -dx -f2)
if test "$SoftChip" ; then
CHIP=0x$SoftChip
echo " The audio card hosts a softmodem chip: $CHIP">>$TMPM.HDA
# cat $TMPM.HDA
VendorID=$(echo $SoftChip | cut -b1-4)
# Guidance for particular chips:
if test "$SoftChip" = 14f12bfa -o "$SoftChip" = 14f12c06 ; then
IDENT=hsfmodem
Driver=hsfmodem-drivers
HSF=1
cat<<END>>$TMPM.HDA
14f1 is the Conexant Vendor ID, and $CHIP a softmodem chipset.
Get a hsfmodem package through http://www.linuxant.com
END
elif test "$SoftChip" = 11c11040 ; then
IDENT=11c11040
Driver=agrmodem+agrserial+patched_snd-hda-intel
elif test "$SoftChip" = 11c13026 -o "$SoftChip" = 11c13126 -o "$SoftChip" = 163c3055 -o "$SoftChip" = 163c3155 -o "$SoftChip" = 10573055 -o "$SoftChip" = 10573155 -o 15433155 ; then
IDENT=slmodemd
cat<<END>>$TMPM.HDA
The softmodem chip $CHIP is in principle supported by the COMM support of slmodemd
and the joint snd-hda-intel audio+modem driver, begun with ALSA version 1.0.13.
For HDA cards with ALC883 chips, an upgrade to ALSA verions 1.0.15 way be necessary. Instructions for Upgrading snd-hda-intel and its dependent driver set are at:
http://linmodems.technion.ac.il/bigarch/archive-eighth/msg00838.html
END
else
echo Future alternatives >/dev/null
fi # Chip guidance
fi # softchip
done # cf
if test -z "$IDENT" ; then
hsfMaybe=$(grep -rsl 14f1 /proc/asound/card?/codec#? 2>/dev/null)
if test "$hsfMaybe" ; then
cat<<END>>$TMPM.HDA
Though a Conexant modem chipset has not been directly detected,
the present of Vendor 14f1 Conexant audio chips, strongly suggests
that if no other modem is detected, than a Conexant modem chip is hosted
on the Subsystem of the High Definition Audio card.
END
fi
fi
Si3054Files=
fi # Si3054 files
if test "$ALSArel" -le 15 ; then
if grep STAC92xx $PCM >/dev/null ; then
cat<<END>> $TMPM.HDA
Modem support under STAC92xx audio card hosts may require upgrade
of snd-hda-intel + its dependent drivers to ALSA version 1.0.16.
The following modem only worked after the upgrade from to 1.0.16 from 1.0.14
PCI ID SubsystemID Name
--------- --------- --------------
8086:27d8 107b:0366 Audio device: Intel Corporation 82801G
with ALSA diagnostics
00-00: STAC92xx Analog : STAC92xx Analog : playback 1 : capture 2
00-06: Si3054 Modem : Si3054 Modem : playback 1 : capture 1
Codec: Motorola Si3054
for 107b:0366 hosted modem chip: 0x10573057
For a standard Ubuntu system needed to support the driver compilation were
END
fi
fi
fi # HDAbus
lineModem=$(grep -i modem $PCM)
#lineModem=something
#echo lineModem=$lineModem
if test "$lineModem" -o -n "$HDA" ; then
# there are a few cases, not mutually exclusive?
# An AC'97 modems, but having the 00-0[1-9] device descriptor
ALI5451=$(grep "ALI 5451 modem" $PCM | cut -d' ' -f1)
if test "$ALI5451" ; then
# 00-01: ALI 5451 modem : ALI 5451 modem : playback 1 : capture 1
# 00-00: ALI 5451 : ALI 5451 : playback 32 : capture 1
DRIVER_=snd_ali5451
Driver=snd-ali5451
SLMODEMD_DEVICE=hw:0,1
OPTS="-s "
IDENT=slmodemd
Driver=snd-ali5451
echo " Driver snd-ali5451 supports both audio and modem functions of the ALI5451 card.">>$TMPM.HDA
else
HDAmodem=$(grep -i Modem $PCM | grep "00-0[1-9]: " 2>/dev/null)
if test "$HDAmodem" ; then
Driver=snd-hda-intel
DRIVER=snd_hda_intel
# cases hw:0,1 and hw:0,6 thus far observed
cA=$(grep -i Modem $PCM | cut -b4)
cM=$(grep -i Modem $PCM | cut -b5)
SLMODEMD_DEVICE=hw:$cA,$cM
fi
fi # ALI5451 and HDA devices
if test "$Driver" ; then
cat<<END>>$TMPM.HDA
If not a Conexant modem, the driver $Driver with its dependent drivers:
$(lsmod | grep $DRIVER)
----------
provide audio + modem support with the modem chip residing on the subsystem.
Any particular card can host any one of several soft modem chips.
END
fi
## typical mc97 codec modem, proc/asound/pcm modem line
# 01-00: VIA 82XX modem : VIA 82XX modem : playback 1 : capture 1
# there are rare cases where modem:0 is necessary because a non-ALSA audio
# driver is used, so hw:0 is the modem rather that the audio device.
n97=$(grep -i Modem $PCM | grep "0[01]-00: "| cut -b2 2>/dev/null)
# n97=n97
# echo n97=$n97
if test "$n97" ; then
# Identify mc97 the driver
if grep VIA82XX-MODEM $PAC >/dev/null ; then
Driver=snd-via82xx-modem
DRIVER=snd_via82xx_modem
elif grep ATIXXP-MODEM $PAC >/dev/null ; then
DRIVER=snd_atiixp_modem
Driver=snd-atiixp-modem
elif grep ICH-MODEM $PAC >/dev/null ; then
DRIVER=snd_intel8x0m
Driver=snd-intel8x0m
else
echo Future cases >/dev/null
fi
# Read out the soft modem codec for AC'97 modems, if card activated.
REGISTERS=$(find /proc/asound -name 'mc97#[0-3]-[0-3]+regs')
# REGISTERS=$(find dl/ALSAmichael -name mc97#0-0+regs)
# echo REGISTERS=$REGISTERS
# This analysis may reveal a Conexant chip, for revealed in the prior section
# REGISTERS=$(find pkg/HDA/ALI5451/ -name 'mc97#[0-3]-[0-3]+regs')
if test -n "$REGISTERS" ; then
for REG in $REGISTERS
do
# echo REG=$REG
mc97=$(echo $REG | cut -d+ -f1)
# mc97=$mc97
mc97line=$(cat $mc97 | grep Extended)
if test "$mc97line" ; then
cat<<END>>$TMPM.HDA
Modem firmware information is in $mc97
-----------------------------------------------
$mc97line
END
fi
hex1=$(grep 0:7c $REG | cut -b 8-9)
hex2=$(grep 0:7c $REG | cut -b 10-11)
hex3=$(grep 0:7e $REG | cut -b 8-9)
num=$(grep 0:7e $REG | cut -b 10-11)
echo num=$num
cat<<END>$TMPM
41 A
42 B
43 C
44 D
45 E
46 F
47 G
48 H
49 I
4a J
4b K
4c L
4d M
4e N
4f O
50 P
51 Q
52 R
53 S
54 T
55 U
56 V
57 W
58 X
59 Y
5a Z
END
B1=$(grep $hex1 $TMPM | cut -b4)
B2=$(grep $hex2 $TMPM | cut -b4)
B3=$(grep $hex3 $TMPM | cut -b4)
CodecDiagnosed=$B1$B2$B3$num
CodecClass=$B1$B2$B3
# echo CodecClass=$CodecClass
# echo CodecDiagnosed=$B1$B2$B3$num
B1=
B2=
B3=
num=
cat<<END>>$TMPM.HDA
Lines in: $REG
-------------------------------
$(grep 0:7c $REG) and $(grep 0:7e $REG)
are translated from hexadecimal code into the modem chip identifier: $CodecDiagnosed
END
if test "$CodecClass" = CXT ; then
IDENT=hsfmodem
HSF=1
elif grep -i Conexant $mc97 >/dev/null ; then
IDENT=hsfmodem
HSF=1
elif test -n "$CodecDiagnosed" ; then
IDENT=slmodemd
TYPE=ALSA
if test "$DRIVER" ; then
DRIVERDdone=1
cat<<END>>$TMPM.HDA
The driver $Driver with its dependent drivers:
$(lsmod | grep $DRIVER)
----------
provide modem + audio support.
END
fi
else
echo No decision>/dev/null
fi
if test "$HSF" ; then
echo " Support is provided only through hsfmodem drivers. Read DOCs/Conexant.txt">>$TMPM.HDA
fi
done
fi # REGISTERS
fi # n97 devices
fi # lineModem
fi # PCM
fi # proc/asound
PAC=
fi # TST
# MARV
if test "$DMESG" ; then
HSFboot=$($DMESG | grep HSF:)
if test -n "$HSFboot" ; then
cat<<END>>$RECORD
A Linuxant bootup diagnostic reported:
$($DMESG | grep HSF:)
END
fi
# if the slamr.ko driver is installed, take advantage of its diagnostic
SLAMR=$(find /lib/modules/ -mindepth 3 -maxdepth 5 -name slamr.* | grep $SYS)
if test -n "$SLAMR" ; then
$DMESG | grep -v "SmartLink AMRMO modem" | grep slamr > $TMPM
### typical output
# slamr: SmartLink AMRMO modem.
# slamr: probe 8086:24c6 ICH4 card...
# slamr: mc97 codec is SIL27
# slamr: slamr0 is ICH4 card.
if grep slamr $TMPM >/dev/null ; then
SLAMRout=1
elif test "$UID" = 0 ; then
/sbin/modprobe -r slamr
/sbin/modprobe slamr
$DMESG | grep -v "SmartLink AMRMO modem" | grep slamr > $TMPM
if grep slamr $TMPM >/dev/null ; then
SLAMRout=1
fi
else
cat<<END
Please rerun scanModem after login as
# su - root
Within Modem/DOCs/Smartlink.txt, see the slamr test for an explanation.
END
sleep 3
fi
if test -n "$SLAMRout" ; then
echo " ------ dmesg slamr filtered -------">/dev/null
cat $TMPM >/dev/null
slamrTest=$($DMESG | grep slamr | grep codec | cut -d' ' -f6)
echo slamrTest=$slamrTest>>$OP
if test -n "$slamTest" ; then
CodecClass=$(echo $slamrTest | cut -b 1-3)
echo CODslamr=$CodecClass>>$OP
echo " The slamr diagnostic reports a codec: $slamrTest" >>$RECORD
fi
fi
fi
# end SLAMR actions, not PCI ID dependent
PNP=$($DMESG | grep "IRQ XX")
if test -z "$TST" -a -n "$PNP" ; then
cat<<END>> $RECORD
If after boot up
# dmesg | grep "IRQ XX"
displays:
IRQ XX nobody cared
a change in the bootup BIOS may to a non-PNP choice is likely necessary.
END
fi
fi # DMESG
for i in $CMD_PATH
do
if test -x $i/lsusb
then
LSUSB=$i/lsusb
fi
done
# https://atr2.ath.cx/~jayjwa/documents/LGVX8300-ACM-linux-dialup.txt
# 22b8:4902 Motorola PCS E398 GSM Phone
# 0409:011d NEC Corp. e228 Mobile Phone
# Bus 004 Device 004: ID 1004:1fae LG Electronics, Inc. U8120 3G Cellphone
if test -z "$TST" -a -n "$LSUSB" -a -x $LSUSB &>/dev/null ; then
USBdevs=$($LSUSB | grep -v 0000:0000 | cut -d' ' -f6 )
if test "$USBdevs" ; then
cat<<END>> $RECORD
Attached USB devices are:
$($LSUSB | grep -v 0000:0000 | cut -d: -f2-)
END
cat<<END>$TMPM
hsfmodem 0572:1300 0572:1301 0572:1302 0572:1303 08e3:0111 0803:1300 0803:1301 145f:0106 148d:1671 148d:1672
dgcmodem 0572:1320 0572:1321 0572:1322 0572:1323 0572:1324 0572:1328 0572:1329 0803:3095
agrsm 047e:2828 047e:2892
slusb 0483:7554
usbserial 0421:0428_6230i_Modem
hcfusbmodem 0572:1290 05AC:8202_apple
END
for usb in $USBdevs
do
USBdriver=$(grep $usb $TMPM | cut -d' ' -f1 2>/dev/null)
if test "$USBdriver" ; then
USBmodem=1
USBbus=$($LSUSB | grep $usb | cut -d' ' -f2)
NAME=$($LSUSB | grep $usb | cut -d' ' -f7-)
SLOT=$($LSUSB | grep $usb | cut -d' ' -f1-4)
cat<<END>>Modem/scanout.$USBbus
bus=$USBbus
SLOT="$SLOT"
NAME="$NAME"
USBmodemID=$usb
IDENT=$USBdriver
Driver=$USBdriver
END
fi
done
USBdevs=
fi
if test -z "$USBdriver" ; then
echo "USB modems not recognized">>$RECORD
echo >>$RECORD
fi
else
echo "Checking /proc/bus/usb/devices">>$RECORD
if test -f /proc/bus/usb/devices ; then
USBproc=$(grep -i modem /proc/bus/usb/devices)
if test "$USBproc" ; then
echo $USBproc >> $RECORD
USBproc=
else
echo " USB modem not detected among /proc/bus/usb/devices.">> $RECORD
fi
else
echo " /proc/bus/usb/devices file not present, barring USB modem query. ">> $RECORD
fi
echo >> $RECORD
fi
# echo USBid=0483:7554>Modem/scanout.004
# echo IDENT=slmodemd>>Modem/scanout.004
cat<<END>>/dev/null
Modem/scanout.004
USBid=0483:7554
IDENT=slmodemd
SLMODEMD_DEVICE=/dev/slusb0
Driver=slusb
DRIVER=slusb
END
LSUSB=
USBmodemID=
bus=
SLOT=
NAME=
USBdriver=
if test -z "$TST" ; then
echo
echo Identifying PCI bus slots with candidate modems.
BUS1=$($LSPCI -n 2>/dev/null | grep " 07..: " | grep -v "FIR Port" | grep -v arallel | grep -v SmartCard | grep -v HECI | cut -d' ' -f1)
#older 07xx: Modem family
BUS2=$($LSPCI -n 2>/dev/null | grep " 0403: " | cut -d' ' -f1)
# 0403: 8086:2668 Intel Corp. 82801FB/FBM/4/FW/FRW (ICH6 Family) High Definition Audio
BUS3=$($LSPCI -n 2>/dev/null | grep 5451 | cut -d' ' -f1)
# special ALI5451 sound modem case.
PCIBUS="$BUS1 $BUS2 $BUS3"
BUS1=
BUS2=
BUS3=
if test -z "$PCIBUS" ; then
cat<<END | tee -a $RECORD
A candidate modem card was not detected among the PCI bus devices:
-------------------------------------------------------------------
$($LSPCI | grep -v USB | grep -v ridge | grep -v RAM)
-------------------------------------------------------------------
with exclusion of USB, RAM and bridge devices.
If your modem is external,try detecting it with Admin/root command:
$ $SUDO wvdialconf /etc/wvdial.conf
END
fi
fi # TST
cat<<END>/dev/null
# this is the older filter used
Modem
modem
erial controller
ommunication controller
M5451
High Definition Audio
HDA
ATI Technologies Inc: Unknown device
END
class=`${LSPCI} -n | head -1 | cut -d' ' -f2`
if [ ${class} = "Class" ] ; then
fid=4
else
fid=3
fi
if test -z "$TST" -a "$PCIBUS" ; then
# Do a preliminary PCI ID readout, in case of a later script failure.
for buS in $PCIBUS
do
bus=$(echo $buS | sed -e 's/ //g')
# to remove leading space
echo "For candidate card in slot $bus, firmware information and bootup diagnostics are:">>$RECORD
cat<<END>>$RECORD
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
END
if $LSPCI -n 2>/dev/null | grep $bus | grep Class >/dev/null ; then
PCIDEV=$($LSPCI -n 2>/dev/null | grep $bus | cut -d' ' -f4)
else
PCIDEV=$($LSPCI -n 2>/dev/null | grep $bus | cut -d' ' -f3)
fi
SUBSYS=$($LSPCI -nv 2>/dev/null | grep -A1 $bus | grep Subsystem | cut -d' ' -f2-)
IRQ=$($LSPCI -v 2>/dev/null | grep -A2 $bus | grep IRQ | cut -dQ -f2 | cut -d' ' -f2)
NAME=$($LSPCI | grep $bus | cut -d' ' -f2- | cut -d'(' -f1)
echo " $bus $PCIDEV $SUBSYS $NAME">>$RECORD
echo >>$RECORD
echo " Modem interrupt assignment and sharing: ">>$RECORD
if test $IRQ: -a -f /proc/interrupts ; then
grep -m 1 $IRQ: /proc/interrupts>>$RECORD
BLOCKED=$(grep -m 1 $IRQ: /proc/interrupts | grep $bus)
fi
IRQ=$($LSPCI -v 2>/dev/null | grep -A2 $bus | grep IRQ | cut -dQ -f2 | cut -d' ' -f2)
if test "$IRQ" = 0 -o "$IRQ" = 255 ; then
cat<<END>>$RECORD
===================================
The modem interrupt (IRQ) is $IRQ . IRQs of 0 or 255 are not functional!!
The CPU cannot control the modem until this situation is corrected!!
Possible corrections are:
1) Within the boot up BIOS, change from a Windows to a non-PNP/Other Operating System type.
Instructions for accessing BIOS are at:
http://linmodems.technion.ac.il/resources.html within: Additional Resourcces.
2a) Add an option "pci=routeirq" to the kernel boot up line.
Here is an example paragraph from /boot/grub/menu.lst :
title Ubuntu, kernel 2.6.15-26-686
root (hd0,6)
kernel /boot/vmlinuz-2.6.15-26-686 root=/dev/hda7 ro pci=routeirq
initrd /boot/initrd.img-2.6.15-26-686
savedefault
2b) Same as above, but use "pollirq" instead of "pci=routeirq".
3) Within some BIOS setups, IRQ assignments can be changed.
4) On non-laptop systems, moving the modem card to another slot has helped.
5) Sometimes upgrading the kernel changes IRQ assignment.
=====================================
END
fi # IRQ
if test "$DMESG" ; then
echo " --- Bootup diagnostics for card in PCI slot $bus ----">>$RECORD
$DMESG | grep $bus>>$RECORD
DISABLED=$($DMESG | grep $bus | grep -i disabl)
if test "$DISABLED" -o "$BLOCKED" ; then
cat<<END>>$RECORD
The PCI slot $bus of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
END
cat /proc/interrupts >Modem/dmesg.txt
echo >>Modem/dmesg.txt
$DMESG>>Modem/dmesg.txt
echo >>Modem/dmesg.txt
lsmod >>Modem/dmesg.txt
cat<<END>Modem/Bootup.txt
A modem device/card may be disabled at bootup, due to a variety of causes.
Look at the bootup diagnostics record dmesg.txt and try to garner some
understanding from it. Attach it to your query to discuss@linmodems.org
Possibilities therein are too diverse to be automagically processed by
scanModem. A line including the PCI
bus slot $bus of your modem, and "disable" or "disabling" predicts problems,
though sometimes corrected later in the bootup. Similarly a line with "@"
in the interrupt (IRQ) for your $bus slot is predictive of problems.
Possible corrections are:
1) Within the boot up BIOS, change from a Windows to a non-PNP/Other Operating System type.
Instructions for accessing BIOS are at:
http://linmodems.technion.ac.il/resources.html within: Additional Resourcces.
2a) Add an option "pci=routeirq" to the kernel boot up line.
Here is an example paragraph from /boot/grub/menu.lst :
title Ubuntu, kernel 2.6.15-26-686
root (hd0,6)
kernel /boot/vmlinuz-2.6.15-26-686 root=/dev/hda7 ro pci=routeirq
initrd /boot/initrd.img-2.6.15-26-686
savedefault
2b) Same as above, but use "pollirq" instead of "pci=routeirq".
3) Within some BIOS setups, IRQ assignments can be changed.
4) On non-laptop systems, moving the modem card to another slot has helped.
5) Blacklist as many drivers as possible. See
http://linmodems.technion.ac.il/bigarch/archive-eighth/msg01593.html
6) Sometimes upgrading the kernel solves the problem.
7) Sometimes downgrading the kernel solves the problem.
Sometimes changing the Linux distribution solves the problem.
9) Get unloading.gz from http://linmodems.technion.ac.il/linmodems/
This script unloads excess drivers which may be competing for resources.
Before trying to set up the modem, do:
$ gunzip unloading.gz
$ chmod +x unloading
$ su - root
# ./unloading
Or for Ubuntu related Distros
$ sudo ./unloading
END
fi #Disabled
fi # DMESG
bus=
buS=
PCIDEV=
SUBSYS=
NAME=
DISABLED=
BLOCKED=
IRQ=
echo>> $RECORD
done # first round
fi # TST & BUS
if test -n "$TST" ; then
NAME=FakeName
if test -z "$SUBSYS" ; then
SUBSYS=some:thing
fi
PCIBUS=FakeBus
fi # TST
if test -n "$PCIBUS" ; then
echo Running PCIbus cases
# >/dev/null
for buS in $PCIBUS
do
bus=$(echo $buS | sed -e 's/ //g')
if test ! "$bus" = FakeBus ; then
echo "Analysing card in PCI bus $bus, writing to scanout.$bus"
OP=Modem/scanout.$bus
if $LSPCI -n 2>/dev/null | grep $bus | grep Class >/dev/null ; then
CLASS0=$($LSPCI -n 2>/dev/null | grep $bus | cut -d' ' -f3-4)
else
CLASS0=$($LSPCI -n 2>/dev/null | grep $bus | cut -d' ' -f2-3)
fi
# $LSPCI -n 2>/dev/null | grep $i | cut -d' ' -f2-4 > $TMPM
CLASS="Class $CLASS0"
PCIDEV=$(echo $CLASS | cut -d' ' -f3)
# PCIDEV=134d:7891
class=$($LSPCI | grep $bus | cut -d' ' -f2- | grep ' 0403: ' >/dev/null)
if test -n "$class" ; then
NAME=$($LSPCI 2>/dev/null | grep $bus | cut -d' ' -f3- | cut -d'(' -f1 )
else
NAME=$($LSPCI 2>/dev/null | grep $bus | cut -d' ' -f2- | cut -d'(' -f1)
fi
IRQ=$($LSPCI -v 2>/dev/null | grep -A2 $bus | grep IRQ | cut -dQ -f2 | cut -d' ' -f2)
else
IRQ=fake
CLASS=FakeClass
NAME=FakeName
OP=Modem/scanout.fake
cat<<END
Substituted test inputs:
PCIDEV=$PCIDEV
SUBSYS=$SUBSYS
END
fi # FakeBus
if test "$PCIDEV" = 10b9:5451 -a "$KMAJOR" = 2.6 -a "$KRELEASE" -le 12 ; then
echo " Driver $Driver includes modem support beginning within 2.6.12 kernels.">>$RECORD
fi
# PCIDEV=for Faking
Vendor=$(echo $PCIDEV | cut -d: -f1)
Device=$(echo $PCIDEV | cut -d: -f2)
if test -z "$TST" -a -z "$SUBSYS" ; then
SUBSYS=$($LSPCI -nv 2>/dev/null | grep -A1 $bus | grep Subsystem | cut -d' ' -f2-)
SUBNAME=$($LSPCI -v 2>/dev/null | grep -A1 $bus | grep Subsystem | cut -d: -f2-)
fi
if test -n "$SUBSYS" ; then
SUBven=$(echo $SUBSYS | cut -d: -f1)
SUBdev=$(echo $SUBSYS | cut -d: -f2)
$LSPCI -nv 2>/dev/null | grep -A2 $bus | grep Flags: >/dev/null
else
SUBSYS=none
echo PCIbus=$bus>>$RECORD
$LSPCI -v 2>/dev/null | grep -A4 $bus>>$RECORD
echo >>$RECORD
fi
CLASS=$(echo $CLASS | cut -d' ' -f2 | cut -d: -f1)
cat<<END>>$OP
CLASS=$CLASS
NAME="$NAME"
PCIDEV=$PCIDEV
SUBSYS=$SUBSYS
IRQ=$IRQ
END
SOFT=
## Recognizing soft modems
if test -n "$PCIDEV" ; then
# are AC97 softmodem controllers
echo "8086:2416 8086:2426 8086:7186 8086:7196 8086:2446 8086:2486 8086:24c6 8086:25a7 8086:24d6 8086:8280 8086:266d 8086:2669 8086:27dd 8086:2a07 1039:7013 1039:7018 10de:01c1 10de:00d9 1106:3068 1022:7446 10b9:5450 10b9:5451 10b9:5453 1025:5453 10b9:5457 1025:5457 1002:434d 1002:4378" >>$TMPM
if grep $PCIDEV $TMPM>/dev/null ; then
if test -z "$IDENT" ; then
IDENT=mc97
fi
SOFT=$PCIDEV.MC97
echo SOFT=$SOFT>>$OP
cat<<END>/dev/null
AC97 ARCHIVE
=========
In the Archive below, the first field is the mc97 codec for cards with a AC97/MC97 compatible register, read from the 0:7c and 0:7e fields and then translated.
Following are the SubSystem PCI IDs of cards with that codec,
which is grep filtered ppon. This field accepts comments diverse.
The HDA cards are first listed.
END
if test -f $TMPM.2 ; then
rm $TMPM.2>/dev/null
fi
if test "$PCIDEV" = 8086:2416 ; then
# 8086:2416 82801AA ICHAA
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 107b:0012
SIL21 109f:7140 5349:4c21
SIL22 14c0:0012 COMPAL Electronics Inc Smartlink
SIL26 152d:8801
SIL27 8086:2416_maybe
EOF
# cat $TMPM.2
elif test "$PCIDEV" = 8086:2426 ; then
# 8086:2426 82801AB ICHAB
cat<<END>TMPM.2
SIL21 134d:4c21
END
elif test "$PCIDEV" = 8086:2446 ; then
# 8086:2446 82801BA ICH2
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 104d:80df 1025:1027, 104d:80e0 104d:8111 CXT21
SIL21 10cf:10d2 CitiCorp
SIL27 1179:0001 10cf:10d1
EOF
elif test "$PCIDEV" = 8086:2486 ; then
# 8086:2486 82801CA/CAM AC97 CAM AC'97 ICH3
cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 1668:5421 14f1:5421 104d:80e7 104d:8100
SIL27 1025:0020 , 1014:0223 1014:0503 IBM 1014:0227 103b:0757 Tatung Co ,10cf:10d1, 1179:0001 , 144d:2115 Samsung,
BCM64 14e4:4d64
SIL24 144f:1050
SIL21 134d:4c21 1043:1496
SIL22 14c0:0012 COMPAL Electronics Inc
END
elif test "$PCIDEV" = 8086:24c6 ; then
# 8086:24c6 82801DB ICH4 AC'97 Modem Controller, CXT & SIL27 mix??
cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 1014:0559_23 1025:0064 103c:3084 103c:30b2 103c:3080_30 1014:055a 104d:8129 104d:818c_23 104d:816a 104d:80fa 14f1:5422_22 161f:2030_23 1043:1826 107b:0360
SIL27 0e11:0860 1014:0227 1014:0544 1014:051e 1014:0524 1014:0525 1019:d553 1019:d551 1025:0035 1025:0038 1025:003c 1025:003d 1025:0051 1025:0061 1025:0071 1025:001f 103c:3089 103c:0890 1043:1716 1071:8051 1071:8089 107b:0200 10cf:10d1 1179:0001 144d:2115 152d:0706 152d:6601 161f:202d 1734:1033 1734:1079 17c0:1069 17c0:1089 1854:0005 1854:000a
AGR 107b:0405
SIL21 1071:8050 1071:8052 1071:8160 134d:4c21 1734:1055 4c21:5349
SIL22 14ff:1008 1584:4007 1584:400b 1631:d004 1734:102a 1734:106b
BCM64 14e4:4d64
SIL24 144f:1050 Askey Comp. with BroadCom,
MOT66 14ff:100f
1179:ff31 probably conexant
END
elif test "$PCIDEV" = 8086:24d6 ; then
# 8086:24d6 82801EB ICH5
cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 103c:006a
SIL27 1179:0001 104d:8128 104d:8129 1468:0601
BCM64 14e4:4d64
SIL22 1558:0800 1584:400b
END
elif test "$PCIDEV" = 8086:266d ; then
# SIL2f 1179:0001
cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 1014:0574 1014:0576 103c:3082 103c:3080 103c:30c4 1025:0066 1025:006a 1025:0081 107b:0610 1179:ff31 14f1:5423 14f1:5423 17aa:207c 152d:0745_probably_Conexant
SIL22 1584:400c
SIL27 1509:3670 17c0:10bb 103c:3081 103c:099c 27/2f 103c:309d 103c:0944 , 10cf:10d1 14c0:0012 1025:005e 144d:2115 103c:309d 144d:2116
SIL2f 1025:007a 1179_0001_also_SIL27
AGR02 1991:2901
END
elif test "$PCIDEV" = 8086:2a07 ; then
# Serial controller: Intel Corporation Mobile PM965/GM965 KT Controller
cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 103c:30c3
END
elif test "$PCIDEV" = 8086:7196 ; then
# 8086:7196 82440 Banister ICH1
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
SIL27 10cf:10d1 1014:01a2
EOF
elif test "$PCIDEV" = 1039:7013 ; then
# 1039:7013 SIS 630 , there is a SIL21 no Subsystem case.
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 104d:814e 1025:0082_23 161f:2038_23 , 1043:1816 CXT22 1558:4201 1043:1816
SIL27 1043:1736 104d:8129 17c0:1059 1033:8216 1028:0195 1025:0028
SIL2f 1025:0083
SIL23
INTEL537 1509:3170 Si3036,8 rev 5 ;
SIL22 1631:3003 NorthBridge , 1584:4003 1734:1055 1734:105f 1558:2202 1558:0360 1734:1031 1734:106c 1019:b713 17c4:3001 1558:4201 with, HAMR,http://linmodems.technion.ac.il/archive-fourth/msg01957.html
SIL21 Pctel 1039:7013 (one SIL23 case) , 1019:0a14 , 1849:9739 13bd:102f 1019:0c04 1071:8575 1043:10c3 156d:b900 1043:1696 13e0:0270 1043:1457 1071:7522 1019:b732 1849:7013
AGR02 14a4:1027 01-00: Intel ICH - Modem : SiS SI7013 Modem - Modem : playback 1 : capture 1
MOT66 1584:4603
EOF
elif test "$PCIDEV" = 1039:7018 ; then
# 1039:7018 SIS 960
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
none
EOF
elif test "$PCIDEV" = 10de:01c1 ; then
# 10de:01c1 Nvidia Corp
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
none
EOF
elif test "$PCIDEV" = 10de:00d9 ; then
# 10de:00d9 Nvidia Corp
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 1043:1856 Asustek
SIL27 103c:006d HP , 1025:0059 Acer
EOF
## Continue PCI ID deposit
elif test "$PCIDEV" = 1106:3068 ; then
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 104d:8143 104d:80f6 , 1025:0030 CXT41
SIL27 1025:0046 1025:0033 1025:003e 1025:0046 AMD64, 1734:1078 1509:2870 , 1102:0033 CreativeLabs 1071:8889 1071:8965 1509:2170
SIL22 1743:1032 , 10cf:118e , 1734:1054 , 1462:309e , 1631:e004 , 1543:4c22 , 161f:2032 1584:4005 1558:4701 14ff:100b 14ff:1005
SIL21 10cf:118e , 13bd:1022 , 1543:4c21 1071:8375 1019:0c04 1458:1543 1019:b320 1106:4161
SML 1631:3054 26 ,
MOT66 1734:109b is a "custom" AgereSystems codec
INT65 17c0:109d
AGR02_possibly none
EOF
elif test "$PCIDEV" = 1022:7446 ; then
# 1022:7446 AMD AC_LINK
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
none
EOF
elif test "$PCIDEV" = 10b9:5451 ; then
# Audio card with modem Subsystem
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 103c:0850 103c:0024
SIL21 1179:0221
SIL27 1179:0001 10cf:10ff 10cf:1177
EOF
elif test "$PCIDEV" = 10b9:5453 ; then
# 10b9:5453 ALI 5453
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
none
EOF
elif test "$PCIDEV" = 1025:5453 ; then
# 1025:5453 ALI 5453
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
none
EOF
elif test "$PCIDEV" = 1025:5457 ; then
# 10b9:5457 ALI 5457
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
SIL27 10cf:1130
EOF
elif test "$PCIDEV" = 10b9:5457 ; then
# 10b9:5457 ALI 5457
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 103c:002a 103c:0024 103c:0029 103c:0850 161f:2027 152d:0705 104d:8175
SIL27 1179:0001 , 1033:81f3 1019:df56
SIL22 1631:c00e
EOF
elif test "$PCIDEV" = 10b9:5459 ; then
# 10b9:5459 ALI 5459
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
SIL26 10a5:5459 Smart Link Ltd.
EOF
elif test "$PCIDEV" = 1002:434d ; then
# 1002:434d ATI Technologies Inc:
cat<<EOF | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
CXT 1025:0080
SIL27 103c:006b 1179:0001 1025:0052 144d:2115
EOF
-
۱- لطفاً عبارت های انگلیسی رو در تگ کد قرار بدین. (پست قبلیتون رو ویرایش کردم و در داخل تگ مناسب قرارش دادم)
۲- محتوای فایل Modemdata.txt رو برامون بزارین.
-
اینا چیه گذاشتین ...
تا جایی که من می دونم :
بعد از این که برنامۀ Scan modem را اجرا می کنی یک فولدر با نام modem در کنار همون فایل برنامۀ scan modem ساخته می شه که درونش یه فایل به نام Scan out وجود داره که نوع Chipset , اطلاعات دیگری در مورد مودم شما نوشته.
شما نوع موع رو بخونید ، که احتمالا یکی از گزینه های [http://wiki.ubuntu-ir.org/DialupModemHowto]اینجاست[http://wiki.ubuntu-ir.org/DialupModemHowto] .
گزینه ها :
کامپایل کد منبع و نصب GCC3.4
نصب و پیکربندی مودمهای Intel536EP
نصب و پیکربندی مودمهای Intel537EP
نصب و پیکربندی مودمهای Alsa
نصب و پیکربندی مودمهای Smartlink
ن
دانلودش کنید و نصبش کنید .
توجه کنید که حتما باید مدلی که از لیست انتخاب کردید همونی باشه که در فایل Scan out نوشته شده.
صب و پیکربندی مودمهای Conexant
لینک راهنمای کانل : http://wiki.ubuntu-ir.org/DialupModemHowto
-
سلام
مودم من conexant hsf هست ولی هیچ کدوم از درایورها روش جواب ندادو فعلا سرعتم ۱۴.۴ هست.
-
آقا سلام چشتون روز بد نبینه
این سایت منو دیوانه کرد درست مثل اوبونتو
این پیغام خطا چیه که نمی زاره من 95% صفحاتو ببینومWarning:
You triggered the wiki's surge protection by doing too many requests in a short time.
Please make a short break reading the stuff you already got.
When you restart doing requests AFTER that, slow down or you might get locked out for a longer time!
هر کاری کردم نتونستم این مطلبی که بالا لینکشو گزاشتین یه دید بزنم
این بماند
من درایو مدمو دارم اما ابونتو نمی تونه نسبش کنه ینی تا حالا من هیچی نتونستم روی اوبنتو نصب کنم
این دیگه جای خود دارد
دستی هم نتونستم
کمک کمک کمک کمک کمک کم...ک ک.. کم ........
](*,) ](*,)
-
sسلام دوستان من لپ تاپ دل 1525 دارم مودم رو چه جوری نصب کنم ؟ بخرم ؟ یا کمکم کنید یا بگید چه مودم یو اس بی بخرم . ببیند من از زمان رد هت 6 سال 83 با لینوکس کار کردم دوستان قدیمی میدونن محیطی مثل ویندوز 98 داره .
-
۱- لطفاً عبارت های انگلیسی رو در تگ کد قرار بدین. (پست قبلیتون رو ویرایش کردم و در داخل تگ مناسب قرارش دادم)
۲- محتوای فایل Modemdata.txt رو برامون بزارین.
lدوست عزيز من مودمم را نصب كردم اما چون license ميخواست و من نداشتم بيشتر از 14kbps بيشتر سرعت بهم نميده آيا ترفندي هست كه آبونتو رو بپيچونيمش؟
-
۱- لطفاً عبارت های انگلیسی رو در تگ کد قرار بدین. (پست قبلیتون رو ویرایش کردم و در داخل تگ مناسب قرارش دادم)
۲- محتوای فایل Modemdata.txt رو برامون بزارین.
lدوست عزيز من مودمم را نصب كردم اما چون license ميخواست و من نداشتم بيشتر از 14kbps بيشتر سرعت بهم نميده آيا ترفندي هست كه آبونتو رو بپيچونيمش؟
اگه باشه هم تو این انجمن نمی شه گذاشت. بهتره خودت بقیه جاها جستجو کنی.
-
ممنون
-
۱- لطفاً عبارت های انگلیسی رو در تگ کد قرار بدین. (پست قبلیتون رو ویرایش کردم و در داخل تگ مناسب قرارش دادم)
۲- محتوای فایل Modemdata.txt رو برامون بزارین.
lدوست عزيز من مودمم را نصب كردم اما چون license ميخواست و من نداشتم بيشتر از 14kbps بيشتر سرعت بهم نميده آيا ترفندي هست كه آبونتو رو بپيچونيمش؟
اوكي الان تو ويستا بودم كه پست شما را ديديم تا كه رفتم داخل آبونتو براتون ميفرستم باتشكر از دوست عزيز سيد مهدي
-
اینم همون فایل که خواستید
حالا یکی کمک کنه بی زحمت
-
۱- لطفاً عبارت های انگلیسی رو در تگ کد قرار بدین. (پست قبلیتون رو ویرایش کردم و در داخل تگ مناسب قرارش دادم)
۲- محتوای فایل Modemdata.txt رو برامون بزارین.
سيد مهدي فايل Modemdata.txt را براتون گذاشتم ي نگاه بكن نتيجشو برام بذار تازه الان كه رفتم كانكت بشم شماره گيري و همه مراحل قبلي را ميرفت اما هر چي فايرفاكس را باز مي كردم مثل اينكه كانكت نباشه اصلا هيچ سايتي نمي رفت؟!!!!!!!!!!!!!!!!!!!!
-
بابا شرمندم کردین ! یه نفرتونم جواب میداد کافی بود
این بود اون پشتیبانی که میگفتین ؟
-
بابا شرمندم کردین ! یه نفرتونم جواب میداد کافی بود
این بود اون پشتیبانی که میگفتین ؟
اینو امتحان کن:
http://www.linuxant.com/drivers/hsf/full/archive/hsfmodem-7.80.02.02full/hsfmodem_7.80.02.02full_k2.6.27_7_generic_ubuntu_i386.deb.zip
-
بابا شرمندم کردین ! یه نفرتونم جواب میداد کافی بود
این بود اون پشتیبانی که میگفتین ؟
به نام خدا
سلام مهندس ميشه يبار ديگه ي پست برام بذاري ببينم چي شده؟ممنون
-
مودم من hcfنه hsf
اینو نصب کردم اما هیچ اتفاقی نیفتاد:
hcfpcimodem_1.18full_k2.6.27_7_generic_ubuntu_i386.deb
-
چرا هیشکی هیچی نمیگه؟
مثلا کمک خواستیما !
](*,)
-
بابا شرمندم کردین ! یه نفرتونم جواب میداد کافی بود
این بود اون پشتیبانی که میگفتین ؟
این انجمن یه انجمن هست که کاملا کاراش ر داوطلبانه و رایگان انجام میده. دوستان هم در حدی که می دونن یا به انجمن سر می زنن، دارن کمک می کنن به همدیگه. لطفا رعایت کنید.
-
چه به درد میخوره انجمنی که نمیتونین یه مودم نصب کنین ؟
-
با سلام به اساتید محترم.
خدمتتون عرض کنم که من خیلی از لینوکس خوشم میاد ولی یه سد بزرگ برای کار کردن با اون برام وجود داره و اون اتصال به اینترنته.
مودم من intel536ep است و با استفاده از درایور ارایه شده در http://wiki.ubuntu.ir/DialupModemHowto/Intel536EP بنام intel536ep-intrepid_3-Philippe.Vouters_i386.deb استفاده کرده ام اما باز هم نتونستم وصل بشم. محتویات wvdial و خروجی ترمینال پس از اتصال ناموفق براتون میذارم. لطفا کمکم کنید. خیلی برام ضروریه چون از ویندوز متنفرم ولی متاسفانه بخاطر اینترنت نمیتونم ازش جدا شم.
محتویات wvdial
[Dialer Defaults]
#Modem = /dev/modem
Modem = /dev/536ep0
Baud = 115200
Init = ATZ
New PPPD = yes
Stupid Mode = 1
Auto Reconnect = off
#Carrier Check = no
Dial Attempts = 1
# MODIFY THE FOLLOWING 3 SECTIONS FOR YOUR CONNECTION
Phone = 2202900
Username = ********
Password = ********
و خروجی ترمینال پس از اتصال ناموفق
azee@azee-desktop:~$ wvdial
--> WvDial: Internet dialer version 1.60
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Modem initialized.
--> Sending: ATDT2202900
--> Waiting for carrier.
ATDT2202900
CONNECT 46666
--> Carrier detected. Starting PPP immediately.
--> Starting pppd at Sat Feb 21 13:17:52 2009
--> Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
--> --> PAP (Password Authentication Protocol) may be flaky.
--> Warning: Could not modify /etc/ppp/chap-secrets: Permission denied
--> --> CHAP (Challenge Handshake) may be flaky.
--> Pid of pppd: 5872
--> Using interface ppp0
--> Disconnecting at Sat Feb 21 13:17:57 2009
--> The PPP daemon has died: Authentication error.
--> We failed to authenticate ourselves to the peer.
--> Maybe bad account or password? (exit code = 19)
--> man pppd explains pppd error codes in more detail.
--> I guess that's it for now, exiting
--> The PPP daemon has died. (exit code = 19)
با کامپیوتر محل کارم هم همین مشکل رو دارم. اون مودمم conexant hsf است. اونجا از gnome-ppp_0.3.23-1_i386.deb استفاده میکنم. نزدیک 6 یا 7 ثانیه کانکت میمونه ولی بعدش قطع میشه و بازم همین ارور کد 19 رو میده. خواهش میکنم کمکم کنید.
-
بعد از ذخیره ی تغییرات در فایل wvdial.conf باید دستور sudo wvdialconf /etc/wvdial.conf را اجرا کنید.
به جای wvdial از sudo wvdial استفاده کنید.
در ضمن, از درستی یوزرنیم و پسوورد اطمینان دارید؟
-
من مودمم را نصب کردم ولی الان وقتی که us, pass , phone number, dns را بهش میدم و کانکت میخوام بشمو بعد از کلی سروصدا که آدم فکر میکنه که الان دیگه به اینترنت وصل میشه ، یک مرتبه قطع میشه. اما یک مرتبه قطع نشد ولی چیزی هم باز نمی کرد.
](*,) ???
-
من مودمم را نصب کردم ولی الان وقتی که us, pass , phone number, dns را بهش میدم و کانکت میخوام بشمو بعد از کلی سروصدا که آدم فکر میکنه که الان دیگه به اینترنت وصل میشه ، یک مرتبه قطع میشه. اما یک مرتبه قطع نشد ولی چیزی هم باز نمی کرد.
](*,) ???
اطلاعات بیشتری بذارین. مثل خروجی wvdial, محتویات فایل /etc/wvdial.conf خروجی wvdialconf.
-
مودم من از نوع smartlink ltd. اگه یکی از دوستان می دونه که من درایور مودم رو از کجا میتونم بگیریم ممنونش می شم.
-
سلام
به دنیای بی پایان ازادی خوش اومدید
توی ترمینال با دستور lspci ببینید که مودم شما از چه نوعیه (HSF یا HCF)
بعد با دستور uname -r ورژن هسته خود را شناسایی کنید
در نهایت کار هم به سایت
http://www.linuxant.com/company/
برید و با توجه به اطلاعاتی که بدست اوردید درایور مودم خودتونو دانلود کنید
-
مودم من از نوع smartlink ltd. اگه یکی از دوستان می دونه که من درایور مودم رو از کجا میتونم بگیریم ممنونش می شم.
اول خروجی این دستور رو ببینید.
uname -r
بعد ار اساس ورژن هسته که در خروجی گفته می شه, درایور مورمتون رو از این جا پیدا کنید.
http://linmodems.technion.ac.il/packages/smartlink/Ubuntu/
فایل دانلود شده رو از حالت فشرده خارج کنید.
بعد در محیط ترمینال(Applications > Accessories > Terminal) این دستور رو وارد کنید.
cd path
که به جای path آدرس فولدری که محتویات فایل رو در اون اکسترکت کردید, بذارید.
بعد
sudo chmod +x setup
sudo ./setup
برای اطمینان از نصب درایور مودم, خروجی این دستور رو ببینید.
wvdialconf
-
سلام
من تازه اوبونتو 8.10 رو نصب کردم و احتیاج شدید دارم که به اینترنت وصل شم. اول که مودم رو نمی شناخت که با هزار بدبختی رفع شد. کانکشن دایال آپ رو هم ساختم که با pon جواب نمی داد که هز wvdial استفاده کردم. کانکت شدم ولی صفحه رو باز نمیکنه. تو منوی adminstration هم گزینه ای به نام network ندارم. network tool دارم که اصلا گزینه dial up نداره. من باید چی کار کنم؟
در ضمن وقتی از ubuntu خارج میشم و دوباره بر میگردم باز مودمم رو نمیشناسه و باید مراحل نصب رو از اول طی کنم.
اگر ممکه راهنمایی کنید.
-
سلام
من تازه اوبونتو 8.10 رو نصب کردم و احتیاج شدید دارم که به اینترنت وصل شم. اول که مودم رو نمی شناخت که با هزار بدبختی رفع شد. کانکشن دایال آپ رو هم ساختم که با pon جواب نمی داد که هز wvdial استفاده کردم. کانکت شدم ولی صفحه رو باز نمیکنه. تو منوی adminstration هم گزینه ای به نام network ندارم. network tool دارم که اصلا گزینه dial up نداره. من باید چی کار کنم؟
در ضمن وقتی از ubuntu خارج میشم و دوباره بر میگردم باز مودمم رو نمیشناسه و باید مراحل نصب رو از اول طی کنم.
اگر ممکه راهنمایی کنید.
در مورد ریست شدن درایور نمیدونم ولی اگر که با Wvdial وصل میشه ولی send/receive ندارید مطمئنا نباید با pppconfig این مشکل رو داشته باشید . دوباره pppconfig رو امتحان کنید .
-
من اون روش رو اول از همه امتحان کردم اما error می داد. تو همین انجمن گشتم بچه ها گفته بودن اولش sudo باید گذاشت، گذاشتم اما باز هم جواب نداد.
-
سلام
من تازه اوبونتو 8.10 رو نصب کردم و احتیاج شدید دارم که به اینترنت وصل شم. اول که مودم رو نمی شناخت که با هزار بدبختی رفع شد. کانکشن دایال آپ رو هم ساختم که با pon جواب نمی داد که هز wvdial استفاده کردم. کانکت شدم ولی صفحه رو باز نمیکنه. تو منوی adminstration هم گزینه ای به نام network ندارم. network tool دارم که اصلا گزینه dial up نداره. من باید چی کار کنم؟
در ضمن وقتی از ubuntu خارج میشم و دوباره بر میگردم باز مودمم رو نمیشناسه و باید مراحل نصب رو از اول طی کنم.
اگر ممکه راهنمایی کنید.
مودمتون چیه؟
خروجی این دستورها رو بذارید:sudo wvdial
wvdialconf
lspci
lsusb
ping www.google.com
-
مودم من:
Smart Link Ltd. SmartPCI2800 V.92 PCI Soft DFT
من مودم رو نصب کردم اما هربار که از لینوکس خارج میشم و برمی گردم دوباره مودم رو نمی شناسه.
wvdialconf
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
WvModem<*1>: Cannot set information for serial port.
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan<*1>: S1 S2 S3
ttySL0<Info>: Permission denied
Modem Port Scan<*1>: SL0
Sorry, no modem was detected! Is it in use by another program?
Did you configure it properly with setserial?
Please read the FAQ at http://open.nit.ca/wiki/?WvDial
If you still have problems, send mail to <wvdial-list@lists.nit.ca>.
برای همین با دستورات زیر دوباره نصبش کردم:
tar zxvf slamr*.tar.gz
./._slamr-2.6.27-7-generic
slamr-2.6.27-7-generic/
slamr-2.6.27-7-generic/.#setup
slamr-2.6.27-7-generic/._1st_Read.txt
slamr-2.6.27-7-generic/1st_Read.txt
slamr-2.6.27-7-generic/._CountryList.txt
slamr-2.6.27-7-generic/CountryList.txt
slamr-2.6.27-7-generic/._setup
slamr-2.6.27-7-generic/setup
slamr-2.6.27-7-generic/._sl-modem-daemon_2.9.10+2.9.9d+e-pre2-5ubuntu4_i386.deb
slamr-2.6.27-7-generic/sl-modem-daemon_2.9.10+2.9.9d+e-pre2-5ubuntu4_i386.deb
slamr-2.6.27-7-generic/._slamr.ko
slamr-2.6.27-7-generic/slamr.ko
slamr-2.6.27-7-generic/._slmodemd
slamr-2.6.27-7-generic/slmodemd
slamr-2.6.27-7-generic/._Smartlink.txt
slamr-2.6.27-7-generic/Smartlink.txt
slamr-2.6.27-7-generic/._ungrab-winmodem.ko
slamr-2.6.27-7-generic/ungrab-winmodem.ko
slamr-2.6.27-7-generic/._unloading
slamr-2.6.27-7-generic/unloading
slamr-2.6.27-7-generic/._wvdial.txt
slamr-2.6.27-7-generic/wvdial.txt
:cd slamr*
slamr-2.6.27-7-generic$ sudo ./setup
installing drivers for kernel version 2.6.27-7-generic
driver=slamr
Installing the Debian packages supporting autoloading
(Reading database ... 99833 files and directories currently installed.)
Preparing to replace sl-modem-daemon 2.9.10+2.9.9d+e-pre2-5ubuntu4 (using sl-modem-daemon_2.9.10+2.9.9d+e-pre2-5ubuntu4_i386.deb) ...
Shutting down SmartLink Modem driver normally.
Unloading modem driver from kernel ... slamr.
Unpacking replacement sl-modem-daemon ...
Setting up sl-modem-daemon (2.9.10+2.9.9d+e-pre2-5ubuntu4) ...
The system user `Slmodemd' already exists. Exiting.
update-rc.d: warning: /etc/init.d/sl-modem-daemon missing LSB style header
Starting SmartLink Modem driver for: slamr0.
Creating /dev/modem symlink, pointing to: /dev/ttySL0.
Copying over newer files
Making folder /lib/modules/2.6.27-7-generic/extra
Copying drivers to /lib/modules/2.6.27-7-generic/extra
Checking driver install
slamr.ko ungrab-winmodem.ko
Copying newer slmodemd to /usr/sbin/
Checking slmodemd version. Should be 2.9.11
SmartLink Soft Modem: version 2.9.11 Nov 27 2008 14:36:23
Finished installs.
Informing the System
Starting function tests, loading drivers:
Running diagnostic:
[ 10.721742] slamr: module license 'Smart Link Ltd.' taints kernel.
[ 10.759800] slamr: SmartLink AMRMO modem.
[ 10.759864] slamr: probe 2000:2800 SL2800 card...
[ 10.759877] slamr 0000:04:00.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 10.760534] slamr: slamr0 is SL2800 card.
[ 244.028307] slamr 0000:04:00.0: PCI INT A disabled
[ 245.353119] slamr: SmartLink AMRMO modem.
[ 245.354240] slamr: probe 2000:2800 SL2800 card...
[ 245.354262] slamr 0000:04:00.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 245.358208] slamr: slamr0 is SL2800 card.
echo "ports should be created by:"
echo slmodemd -c USA /dev/"slamr"0
echo "slmodemd was compiled with gcc-4.2, because of a compiled failure under the gcc-4.3 used to compile the drivers."
/usr/sbin/slmodemd -c USA /dev/"slamr"0
echo "Checking for success"
if test -L /dev/ttySL0 ; then
echo Running wvdialconf
wvdialconf /etc/wvdial.conf
if [ -f /etc/wvdial.conf ] ; then
echo Modem detection successful
sleep 2
echo "Carrier check = no" >> /etc/wvdial.conf
echo "Read wdial.txt"
echo "Then edit /etc/wvdial.conf with:"
echo "sudo gedit /etc/wvdial.conf"
echo "at the lines beginning with ; and deleting the ; < > "
echo "Then dialout with:"
echo " sudo wvdial"
echo "Running setup again is NOT necessary. Only for dialout the:"
echo " sudo wvdial"
else
echo "wvdialconf failed"
fi
else
echo "Port creation with slmodemd failed."
fi
echo "Read the Slamr.txt record, other *.txt files and the sample wvdial.conf ."
echo
# END
بعد برای امتحان دوباره دستور زیر رو اجرا کردم:
wvdialconf
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
WvModem<*1>: Cannot set information for serial port.
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan<*1>: S1 S2 S3
WvModem<*1>: Cannot get information for serial port.
ttySL0<*1>: ATQ0 V1 E1 -- OK
ttySL0<*1>: ATQ0 V1 E1 Z -- OK
ttySL0<*1>: ATQ0 V1 E1 S0=0 -- OK
ttySL0<*1>: ATQ0 V1 E1 S0=0 &C1 -- OK
ttySL0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 -- OK
ttySL0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
ttySL0<*1>: Modem Identifier: ATI -- SmartLink Soft Modem
ttySL0<*1>: Speed 4800: AT -- OK
ttySL0<*1>: Speed 9600: AT -- OK
ttySL0<*1>: Speed 19200: AT -- OK
ttySL0<*1>: Speed 38400: AT -- OK
ttySL0<*1>: Speed 57600: AT -- OK
ttySL0<*1>: Speed 115200: AT -- OK
ttySL0<*1>: Speed 230400: AT -- OK
ttySL0<*1>: Speed 460800: AT -- OK
ttySL0<*1>: Max speed is 460800; that should be safe.
ttySL0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
Found a modem on /dev/ttySL0.
Modem configuration written to /etc/wvdial.conf.
/etc/wvdial.conf<Warn>: Can't write '/etc/wvdial.conf.tmp5820': Permission denied
/etc/wvdial.conf<Warn>: Can't write '/etc/wvdial.conf' ('/etc/wvdial.conf'): Bad file descriptor
ttySL0<Info>: Speed 460800; init "ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
"
بعد دستور اتصال به اینترنت:
wvdial
--> WvDial: Internet dialer version 1.60
--> Cannot get information for serial port.
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
OK
--> Modem initialized.
--> Sending: ATDT9711805
--> Waiting for carrier.
ATDT9711805
CONNECT 48000
--> Carrier detected. Waiting for prompt.
--> Connected, but carrier signal lost! Retrying...
--> Sending: ATDT9711805
--> Waiting for carrier.
Welcome to 3Com Total Control HiPer ARC (TM)
Networks That Go The Distance (TM)
login:
ATDT9711805
Password:
فکر میکنم کانکت میشم چون اول صدای قیژ قیژ مودم و بعد هم صدای وصل شدن میاد. من شماره ای که باهاش وصل می شدم هم رو گرفتم و اشغال بود.
بعد باقی دستوراتی که گفته بودید:
lspci
00:00.0 Host bridge: Intel Corporation 82945G/GZ/P/PL Memory Controller Hub (rev 02)
00:01.0 PCI bridge: Intel Corporation 82945G/GZ/P/PL PCI Express Root Port (rev 02)
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)
00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 01)
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01)
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01)
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)
01:00.0 VGA compatible controller: nVidia Corporation G71 [GeForce 7300 GS] (rev a1)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01)
04:00.0 Modem: Smart Link Ltd. SmartPCI2800 V.92 PCI Soft DFT (rev 02)
lsusb
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
ping www.google.com
ping: unknown host www.google.com
البته نمی دونم چه جوری باید دیس کانکت شم اما وقتی log outکردم صدای تق قطع شدن مودم رو شنیدم.
در ضمن من اوبونتو رو کنار ویندوز دارم. یعنی سوایی رو یکی از درایوهام نصب کردم.
-
به جای این که مودم رو نصب کنید, این دستور ها رو اجرا کنید و خروجیشون رو بذارید.
sudo /etc/init.d/sl-modem-daemon start
sudo slmodemd /dev/slamr0
-
[
sudo /etc/init.d start
sudo: /etc/init.d: command not found
sudo slmodemd /dev/slamr0
error: mdm setup: cannot open dev `/dev/slamr0': Device or resource busy
error: cannot setup device `/dev/sla
:( :( :( :( :(
-
آخ ببخشید دستور اول رو اشتباه نوشته بودم. درستش کردم.
ولی خروجی دستور دوم نشون می ده که مودم نصب شده و قابل استفادست. قبل از نصب دوباره ی مودم این کارو کردید؟
در ضمن تو خروجی wvdialconf نوشته بود:
ttySL0<Info>: Permission denied
یعنی این که برنامه اجازه ی دسترسی به فایل dev/ttySL0/(که همون دیوایس مودمه) رو نداره.
به جای wvdialconf از sudo wvdialconf استفاده کنید ببینید چی می شه.
-
سلام منم ubuntu 8.10 نبصیدم ولی network رو پیدا نکردم کلا دارم قاطی می کنم هرکی هم بتونه مشکلم رو حل کنه پول خوبی بهش میدم یه میل بهم بزنه aallahparast@gamail.com
مشکلم هم نصب مودم هست :-X
-
سلام منم ubuntu 8.10 نبصیدم ولی network رو پیدا نکردم کلا دارم قاطی می کنم هرکی هم بتونه مشکلم رو حل کنه پول خوبی بهش میدم یه میل بهم بزنه aallahparast@gamail.com
مشکلم هم نصب مودم هست :-X
خوش اومدید ;D
اول این که ظاهرا ۸.۱۰ به صورت پیشفرض Network نداره باید نصبش کنید.
دوم این که مودم نصب کردن که پول گرفتن نمی خواد ;)
سوم این که بگید خودتون تا چه حد پیش رفتید؟ طبق راهنمای زیر پیش برید.
http://wiki.ubuntu-ir.org/DialupModemHowto
-
اقا اولین مشکل من اینه که بسته درایور مودم من تا کلیک میکنم نصب میشه در حالی تو ورژنهای قبلی اوبونتو 2 دقیقهای برای نصب دراور وقت میزاشت من که احساس میکنم درایورم نصب نمیشه
-
سلام لطف کنید منو راهنمایی کنید من دستور اسکن مودم رو اجرا کردم اون دوتا فایل رو هم ایجاد شد من می زارم اینجا لطف کنید بفرمایید مودم از چه نوعی هست و برای نصب هم کمکم کنید ممنون می شم
If you want help from the email group Discuss@linmodems.org, PLEASE join the List
at http://www.linmodems.org . Otherwise your messages will be delayed until the evening,
waiting for someone to verify it is not junk mail, before forwarding through the List server.
The files in this Modem/ folder have the following roles:
ModemData.txt - Diagnostics and accumulated information cogent to your modem and host system.
This is the ONLY file which should be sent to the List DISCUSS@LINMODEMS.ORG ,
if further help is needed. Send your email and attachments as plain text as
other formats are rejected by the List Server, to avoid virus transmission.
Always send the ENTIRE ModemData.txt, as It includes subtle diagnostic ouputs needed
to best guide you. Please in the covering email mention your Country, to enable Country
specific advice.
Always use the most recent update of scanModem accessed ONLY at
http://linmodems.technion.ac.il/packages/scanModem.gz
to produce ModemData.txt
URLs to cogent advice are regularly updated, so your problem may be solved therein.
Please Do NOT send Do NOT send other files in this folder Modem/
Several informative files without diagnostics are in the DOCs subfolder.
A file(s) specific to your modem chipset will be written, such as:
Smartlink.txt, Conexant.txt, Intel.txt , etc
YourModem.txt - Guidance about operating your particular System, for your benefit
It should NOT be sent to Discuss@linmodems.org
Rational.txt - Motivations of this scanModem package.
DriverCompiling.txt - Explains the roles of additional files which may have to be installed
to support compiling of modem drivers, and the steps to take.
SoftModem.txt - Information and instructions about "soft modems".
For these modems, additional steps may be necessary for choice of supporting software.
The primary PCI ID is that of the host audio or modem controller, which can support diverse Subsystems. It is the chipset of the Subsystem which determines the software needed.
ModemTesting.txt SHOULD be read, but after drivers have been installed.
InfoGeneral.txt has general information about the status of winmodem support under Linux,
Do read it if ModemData.txt reports that your current modem is not supported under Linux.
Unsubscribe.txt - Howto terminate email tranmissions from the List.
If you are Linux newcomer, please do locate your local Linux group through:
http://www.linux.org/groups/index.html . If you are not comfortable with English,
a local Linux user can often be of substantial assistance in getting you on to the Internet.
و این هم مودم دیتا
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.28-11-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686,
Linux version 2.6.28-11-generic (buildd@palmer) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009
scanModem update of: 2009_05_12
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
Attached USB devices are:
ID 03f0:0c17 Hewlett-Packard LaserJet 1010
ID 0a5c:2021 Broadcom Corp.
If a cellphone is not detected, see http://ubuntuforums.org/archive/index.php/t-878554.html
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
For candidate card in slot 00:09.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:09.0 14f1:2f00 14f1:2004 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem
Modem interrupt assignment and sharing:
--- Bootup diagnostics for card in PCI slot 00:09.0 ----
[ 0.564348] pci 0000:00:09.0: reg 10 32bit mmio: [0xf7ff0000-0xf7ffffff]
[ 0.564358] pci 0000:00:09.0: reg 14 io port: [0xec00-0xec07]
[ 0.564399] pci 0000:00:09.0: PME# supported from D3hot D3cold
[ 0.564404] pci 0000:00:09.0: PME# disabled
The PCI slot 00:09.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:09.0:
Modem chipset detected on
NAME="Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem "
CLASS=0780
PCIDEV=14f1:2f00
SUBSYS=14f1:2004
IRQ=11
IDENT=hsfmodem
Driver=hsfmodem-drivers
For candidate modem in: 00:09.0
0780 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem
Primary device ID: 14f1:2f00
Support type needed or chipset: hsfmodem
For owners of a Dell PCs with Conexant HSF modems, a driver source package with full speed enabled is available, but requires driver compiling. Read DOCs/Conexant.txt
Start at http://www.linuxant.com/drivers/hsf/downloads-license.php to find the
hsfmodem package matching your System. For several Linux distros, there are
precompiled drivers matched to specific kernels. These have within the FileName,
your KernelVersion: 2.6.28_11_generic
They can be found through http://www.linuxant.com/drivers/hsf/full/downloads.php
A more precise location may be given a few paragraphs below.
If an EXACT Match with your your KernelVersion is not found, one of the
"Generic packages with source" near the bottom of the page must be used.
Downloaded packages must be moved into the Linux partition (home folder is OK)
and unzipped with:
unzip hsf*.zip
The installation command for a .deb suffic packages is, with root/adm permission:
sudo dpkg -i hsf*.deb
while for .rpm suffix it is, with:
rpm -i hsf*.rpm
From http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php
download hsfmodem-7.80.02.02full_k2.6.28_11_generic_ubuntu_i386.deb.zip
Under Linux unpack with:
$ unzip hsfmodem*.zip
Then install with:
$ sudo dpkg -i hsfmodem*.deb
Subsequently, the modem should be found with
$ sudo wvdialconf /etc/wvdial.conf
Edit in your personal information with:
$ sudo gedit /etc/wvdial.conf
and try dialing out with:
$ sudo wvdial.
See DOCs/Testing.txt for details.
Read DOCs/Conexant.txt
Writing DOCs/Conexant.txt
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.3.3
and the compiler used in kernel assembly: 4.3.3
The patch utility is needed and is needed for compiling ALSA drivers, and possibly others.
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.3
linuc_headers base folder /lib/modules/2.6.28-11-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
ممنون می شم کمک کنید چون واقعا به اینترنت توی محیط لینوکس نیاز دارم من از اوبونتو 9.04 استفاده می کنم
-
این فایل رو دانلود و نصب کنید.
http://www.linuxant.com/drivers/hsf/full/archive/hsfmodem-7.80.02.04full/hsfmodem_7.80.02.04full_k2.6.28_11_generic_ubuntu_i386.deb.zip
و بعد در محیط ترمینال این دستور را وارد کنید.
sudo hsfconfig
بعد برای ساختن کانکشن طبق این راهنما عمل کنید.
http://wiki.ubuntu-ir.org/DialupModemHowto/SetUpDialer?highlight=%28Dialupmodemhowto%29
-
سلام
من بعد از اسکن مودم خروجی رو گذاشتم ( پست 40 ) و اون فایلی که سامان عزیز دادند رو دانلود کردم اما در هنگام نصب ارور می ده و نصب نمی شه باید چیکار کنم ؟؟
-
سلام
من بعد از اسکن مودم خروجی رو گذاشتم ( پست 40 ) و اون فایلی که سامان عزیز دادند رو دانلود کردم اما در هنگام نصب ارور می ده و نصب نمی شه باید چیکار کنم ؟؟
چه اروری داد؟
-
سلام آقا من درايور مودمم رو نصب كردم (زولتريكس hcf)اما نميتونم on بشم
با kppp هر كاري ميكنم نميشه و بعضي وقتها ارورر زير ميده
(http://i43.tinypic.com/2hoe6ox.jpg)
لطفا يه راهي براي on شدن با اوبونتو به dialup به من بديد
ممنون
-
چه اروری داد؟
سلام سامان جان خسته نباشید
آقا من اون فایل رو دانلود کردم وسط ارور می داد رفتم از سایت لینوکس فایل alsa-driver-linuxant_1.0.20.1_k2.6.28_11_generic_ubuntu_i386.deb.zip v رو دانلود کردم نصبش کردم مشکل حل شد بعد اون پکیجی که شما بهم دادید نصب شد بعد رفتم توی ترمینال دستور sudu pppconfig رو اجرا کردم تنضیمات رو هم انجام دادم اما وقتی دستور pon رو برای اتصال می زنم ارور زیر رو می ده من کلش رو قرار می دم لطفا راهنمایی کنید مشکل کجاست
masood@masood-desktop:~$ pon Irangate
Error: only members of the 'dip' group can use this command.
یه مورد دیگه برای پیکر بندی wvdial هم ارور می ده من کلشو می زارم لطفا کمک کنید
masood@masood-desktop:~$ sudo wvdialconf /etc/wvdial.conf
sudo: wvdialconf: command not found
ممنون
-
چه اروری داد؟
سلام سامان جان خسته نباشید
آقا من اون فایل رو دانلود کردم وسط ارور می داد رفتم از سایت لینوکس فایل alsa-driver-linuxant_1.0.20.1_k2.6.28_11_generic_ubuntu_i386.deb.zip v رو دانلود کردم نصبش کردم مشکل حل شد بعد اون پکیجی که شما بهم دادید نصب شد بعد رفتم توی ترمینال دستور sudu pppconfig رو اجرا کردم تنضیمات رو هم انجام دادم اما وقتی دستور pon رو برای اتصال می زنم ارور زیر رو می ده من کلش رو قرار می دم لطفا راهنمایی کنید مشکل کجاست
masood@masood-desktop:~$ pon Irangate
Error: only members of the 'dip' group can use this command.
یه مورد دیگه برای پیکر بندی wvdial هم ارور می ده من کلشو می زارم لطفا کمک کنید
masood@masood-desktop:~$ sudo wvdialconf /etc/wvdial.conf
sudo: wvdialconf: command not found
ممنون
در مورد اولی(pon Irangate) یه sudo بهش اضافه کنید، یعنی:
sudo pon Irangate
یا
http://yeenghelabi.wordpress.com/2009/02/05/%d9%86%da%a9%d8%a7%d8%aa%db%8c-%d8%af%d8%b1%d8%a8%d8%a7%d8%b1%d9%87%e2%80%8c%db%8c-%da%af%d8%b1%d9%88%d9%87%e2%80%8c%d9%87%d8%a7/ (http://yeenghelabi.wordpress.com/2009/02/05/%d9%86%da%a9%d8%a7%d8%aa%db%8c-%d8%af%d8%b1%d8%a8%d8%a7%d8%b1%d9%87%e2%80%8c%db%8c-%da%af%d8%b1%d9%88%d9%87%e2%80%8c%d9%87%d8%a7/)
در مورد دومی هم فکر کنم شما از Jaunty استفاده می کنید و به طور پیش فرض wvdial نصب نیست و باید خودتون نصبش کنید:
http://mirrors.kernel.org/ubuntu/pool/main/w/wvdial/wvdial_1.60.1+nmu2_i386.deb (http://mirrors.kernel.org/ubuntu/pool/main/w/wvdial/wvdial_1.60.1+nmu2_i386.deb)
موفق باشید.
-
سلام
آقا طبق فرمایشات شما
اول رفتم درایور مودم hsf رو دانلود کردم نصب نشد بعد اون لایلری های مورد نیازشو گرفتم و نصبش کردم همینطور wvdial رو اما هنوز مشکل دارم
اینو جوابیه که بعد از ران کردن دستور sudo wvdialconf /etc/wvdial.conf برای پیکر بندی wvdial اجرا کردم
masood@masood-desktop:~$ sudo wvdialconf /etc/wvdial.conf
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
Modem Port Scan<*1>: Scanning ttySHSF0 first, /dev/modem is a link to it.
ttySHSF0<*1>: ATQ0 V1 E1 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 Z -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
ttySHSF0<*1>: Modem Identifier: ATI -- 56000
ttySHSF0<*1>: Speed 4800: AT -- OK
ttySHSF0<*1>: Speed 9600: AT -- OK
ttySHSF0<*1>: Speed 19200: AT -- OK
ttySHSF0<*1>: Speed 38400: AT -- OK
ttySHSF0<*1>: Speed 57600: AT -- OK
ttySHSF0<*1>: Speed 115200: AT -- OK
ttySHSF0<*1>: Speed 230400: AT -- OK
ttySHSF0<*1>: Speed 460800: AT -- OK
ttySHSF0<*1>: Max speed is 460800; that should be safe.
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan<*1>: S1 S2 S3 SHSF1 SHSF2 SHSF3 SHSF4 SHSF5
Modem Port Scan<*1>: SHSF6 SHSF7
Found a modem on /dev/ttySHSF0, using link /dev/modem in config.
Modem configuration written to /etc/wvdial.conf.
ttySHSF0<Info>: Speed 460800; init "ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
بعد از این
در جواب ران کردن wvdial هست باید بگم من از خطوط in استفاده می کنم که بدون کد و پسورد هست شماره رو هم وارد کردم اما باز کانکت نمی شه
masood@masood-desktop:~$ wvdial
--> WvDial: Internet dialer version 1.60
--> Cannot set information for serial port.
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
OK
--> Modem initialized.
--> Configuration does not specify a valid phone number.
--> Configuration does not specify a valid login name.
--> Configuration does not specify a valid password.
بعد از اینکه از این راه به نتیجه نرسیدم دستور sudo pppconfig رو اجاره کردم کانکشن هم ساختم پورت مودم رو هم روی /dev/ttySHSF0 یکبار هم روی /dev/ttyS0تنظیم کردم اما با اجاره دستور pon m ( ام نام کانکشنمه ) و البته sudo pon m رو هم اجرا کردم ارور زیر رو می ده
masood@masood-desktop:~$ sudo pon m
The file /etc/ppp/peers/m does not exist. Please create it or use
a command line argument to use another file in the /etc/ppp/peers/ directory
خواهشا کمک کنید
یه سوال دیگه اوبونتو 9.04 سیستم گرافیکی نداره برای ساخت کانکشن و وصل شدن به اینترنت توی ادمینستراتور فقط گزینه network tools هست که من چیزی در مورد کانکشن داخلش پیدا نکردم
ممنون
-
در مورد دومی باید بگم که شما چنین کانکشنی نساخته اید! مطمئن شوید که پس از طی مراحل Finish رو اینتر کنید. وگرنه ساخته نمی شه.
-
سلام آقا من درايور مودمم رو نصب كردم (زولتريكس hcf)اما نميتونم on بشم
با kppp هر كاري ميكنم نميشه و بعضي وقتها ارورر زير ميده
(http://i43.tinypic.com/2hoe6ox.jpg)
لطفا يه راهي براي on شدن با اوبونتو به dialup به من بديد
ممنون
دوستان كسي نبو د من رو كمك كنه
در ضمن مودم رو با دانلود فايل Deb از سايت conxtant و نصبش و كرك كردنش با كيژن مورد نظر .
حالا با kpppكه ميخوام كانكت بشم صداي مودم مياد اما آخرش گير ميكنه و وصل نميشه نميدونم چرا
تازه گاهي اوقات هم اروري كه تصويرش توي پست قبلي هست رو ميده
ممنون ميشم كمكم كنيد
-
سلام آقا من درايور مودمم رو نصب كردم (زولتريكس hcf)اما نميتونم on بشم
با kppp هر كاري ميكنم نميشه و بعضي وقتها ارورر زير ميده
(http://i43.tinypic.com/2hoe6ox.jpg)
لطفا يه راهي براي on شدن با اوبونتو به dialup به من بديد
ممنون
دوستان كسي نبو د من رو كمك كنه
در ضمن مودم رو با دانلود فايل Deb از سايت conxtant و نصبش و كرك كردنش با كيژن مورد نظر .
حالا با kpppكه ميخوام كانكت بشم صداي مودم مياد اما آخرش گير ميكنه و وصل نميشه نميدونم چرا
تازه گاهي اوقات هم اروري كه تصويرش توي پست قبلي هست رو ميده
ممنون ميشم كمكم كنيد
چرا اینقدر روی kppp مصمم هستید؟ بعضی اوقات kppp برای من هم کار نمی کنه! البته این بیشتر تو گنوم اتفاق می افته. به نظر من بهتره از pppconfig یا wvdial استفاده کنید:
http://wiki.ubuntu.ir/DialupModemHowto/SetUpDialer (http://wiki.ubuntu.ir/DialupModemHowto/SetUpDialer)
-
خروجی فایل scanmodem بنده به این شرحه :
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry Welcome to openSUSE 11.1 - Kernel kernel 2.6.27.7-9-pae
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686, Welcome to openSUSE 11.1 - Kernel
Linux version 2.6.27.7-9-pae (geeko@buildhost) (gcc version 4.3.2 [gcc-4_3-branch revision 141291] (SUSE Linux) ) #1 SMP 2008-12-04 18:10:04 +0100
scanModem update of: 2009_05_31
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:284b 1025:011c Audio device: Intel Corporation 82801H
Modem interrupt assignment and sharing:
22: 955 IO-APIC-fasteoi yenta, ohci1394, tifm_7xx1, mmc0, HDA Intel
00:1b.0 8086:284b 1025:011c Audio device: Intel Corporation 82801H
Modem interrupt assignment and sharing:
22: 955 IO-APIC-fasteoi yenta, ohci1394, tifm_7xx1, mmc0, HDA Intel
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
PCI: 0000:00:1b.0 reg 10 64bit mmio: [fc300000, fc303fff]
pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1b.0: PME# disabled
HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
HDA Intel 0000:00:1b.0: setting latency timer to 64
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
PCI: 0000:00:1b.0 reg 10 64bit mmio: [fc300000, fc303fff]
pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1b.0: PME# disabled
HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
HDA Intel 0000:00:1b.0: setting latency timer to 64
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.17
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-04: ALC268 Analog : ALC268 Analog : capture 1
00-00: ALC268 Analog : ALC268 Analog : playback 1 : capture 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xfc300000 irq 22
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.17
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-04: ALC268 Analog : ALC268 Analog : capture 1
00-00: ALC268 Analog : ALC268 Analog : playback 1 : capture 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xfc300000 irq 22
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.27.7-9-pae/kernel/sound/pci/hda/snd-hda-intel.ko
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.27.7-9-pae/kernel/sound/pci/hda/snd-hda-intel.ko
The modem codec file for the HDA card is: /proc/asound/card0/codec#1
--------------------------------------------------------
Codec: LSI ID 1040
Address: 1
Vendor Id: 0x11c11040
Subsystem Id: 0x10250100
Revision Id: 0x100200
Modem Function Group: 0x1
The modem codec file for the HDA card is: /proc/asound/card0/codec#1
--------------------------------------------------------
Codec: LSI ID 1040
Address: 1
Vendor Id: 0x11c11040
Subsystem Id: 0x10250100
Revision Id: 0x100200
Modem Function Group: 0x1
The audio card hosts a softmodem chip: 0x11c11040
The audio card hosts a softmodem chip: 0x11c11040
If not a Conexant modem, the driver agrsm with its dependent drivers:
----------
provide audio + modem support with the modem chip residing on the subsystem.
Any particular card can host any one of several soft modem chips.
If not a Conexant modem, the driver agrsm with its dependent drivers:
----------
provide audio + modem support with the modem chip residing on the subsystem.
Any particular card can host any one of several soft modem chips.
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.17
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-04: ALC268 Analog : ALC268 Analog : capture 1
00-00: ALC268 Analog : ALC268 Analog : playback 1 : capture 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xfc300000 irq 22
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.17
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-04: ALC268 Analog : ALC268 Analog : capture 1
00-00: ALC268 Analog : ALC268 Analog : playback 1 : capture 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xfc300000 irq 22
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.27.7-9-pae/kernel/sound/pci/hda/snd-hda-intel.ko
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.27.7-9-pae/kernel/sound/pci/hda/snd-hda-intel.ko
The modem codec file for the HDA card is: /proc/asound/card0/codec#1
--------------------------------------------------------
Codec: LSI ID 1040
Address: 1
Vendor Id: 0x11c11040
Subsystem Id: 0x10250100
Revision Id: 0x100200
Modem Function Group: 0x1
The modem codec file for the HDA card is: /proc/asound/card0/codec#1
--------------------------------------------------------
Codec: LSI ID 1040
Address: 1
Vendor Id: 0x11c11040
Subsystem Id: 0x10250100
Revision Id: 0x100200
Modem Function Group: 0x1
The audio card hosts a softmodem chip: 0x11c11040
The audio card hosts a softmodem chip: 0x11c11040
If not a Conexant modem, the driver agrsm with its dependent drivers:
----------
provide audio + modem support with the modem chip residing on the subsystem.
Any particular card can host any one of several soft modem chips.
If not a Conexant modem, the driver agrsm with its dependent drivers:
----------
provide audio + modem support with the modem chip residing on the subsystem.
Any particular card can host any one of several soft modem chips.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset detected on
NAME="Audio device: Intel Corporation 82801H "
NAME="Audio device: Intel Corporation 82801H "
CLASS=0403
PCIDEV=8086:284b
SUBSYS=1025:011c
IRQ=22
CLASS=0403
PCIDEV=8086:284b
SUBSYS=1025:011c
IRQ=22
HDA=8086:284b
HDA=8086:284b
SOFT=8086:284b.HDA
SOFT=8086:284b.HDA
HDAchipVendorID=11c1
CHIP=0x11c11040
IDENT=agrsm
Driver=agrsm
HDAchipVendorID=11c1
CHIP=0x11c11040
IDENT=agrsm
Driver=agrsm
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation 82801H
Primary device ID: 8086:284b
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset detected on
NAME="Audio device: Intel Corporation 82801H "
NAME="Audio device: Intel Corporation 82801H "
CLASS=0403
PCIDEV=8086:284b
SUBSYS=1025:011c
IRQ=22
CLASS=0403
PCIDEV=8086:284b
SUBSYS=1025:011c
IRQ=22
HDA=8086:284b
HDA=8086:284b
SOFT=8086:284b.HDA
SOFT=8086:284b.HDA
HDAchipVendorID=11c1
CHIP=0x11c11040
IDENT=agrsm
Driver=agrsm
HDAchipVendorID=11c1
CHIP=0x11c11040
IDENT=agrsm
Driver=agrsm
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation 82801H
Primary device ID: 8086:284b
Subsystem PCI_id 1025:011c
Softmodem codec or chipset from diagnostics: 0x11c11040
from Archives:
The HDA card softmodem chip is 0x11c11040
Subsystem PCI_id 1025:011c
Softmodem codec or chipset from diagnostics: 0x11c11040
from Archives:
The HDA card softmodem chip is 0x11c11040
Support type needed or chipset: agrsm
Support type needed or chipset: agrsm
Writing DOCs/Intel.txt
Writing DOCs/Intel.txt
The AgereSystems/LSI agrsm code supports compiling of a agrmodem + agrsm driver pair.
One resource site is http://linmodems.technion.ac.il/packages/ltmodem/11c11040/
Thereat get the agrsm_howto.txt and one of the agrsm-tools packages.
The initial agrsm_howto.txt compiling steps are only cogent to modems with PCI IDs:
11c1:0620, 11c1:048c and 11c1:048f chips.
They use the agrsm-20090418.tar.gz package.
The agrsm-tools sets a useful symbolic link and a agrsm-test utlity
For AgereSystems/LSI with Vendor 11c1 chips hosted on High Definition Audio cards, there may be support
through the agrsm resources (providing an agrmodem + agrserial driver pair) as an alternative to usage
of the snd-hda-intel driver + slmodemd helper. For the 11c11040 modem chip, ONLY the agrsm code is competent.
Your Linux distro's dkms package should be first installed, as it directs the installation of modem
specific dkms-agrsm resources, and also directs auto-installation of new drivers upon kernel upgrades.
Currently, the dkms-agrsm code is NOT competent for 2.26.28 and later kernels.
A short term fix is to install linux-image + linux-headers packages for earlier kernels.
For example, for Ubuntu Jaunty with 2.6.28 kernels, linux-image + linux-headers packages
for earlier 2.26.27 series Intrepid kernels can be installed. Search for them at:
http://packages.ubuntu.com
The primary dkms-agrsm resource site is http://linux.zsolttech.com/linmodem/agrsm/
whereat a few different packaging types are available. Debian type installers (supporting Ubuntu too)
are copied to http://linmodems.technion.ac.il/packages/ltmodem/11c11040/ . Thereat the current package
is the dkms-agrsm_2.1.80-6_i386.deb is for Agere/LSI chipsets hosted on High Definition Audio cards.
Read the Modem/DOCs/Agrsm.txt for details.
The AgereSystems/LSI agrsm code supports compiling of a agrmodem + agrsm driver pair.
One resource site is http://linmodems.technion.ac.il/packages/ltmodem/11c11040/
Thereat get the agrsm_howto.txt and one of the agrsm-tools packages.
The initial agrsm_howto.txt compiling steps are only cogent to modems with PCI IDs:
11c1:0620, 11c1:048c and 11c1:048f chips.
They use the agrsm-20090418.tar.gz package.
The agrsm-tools sets a useful symbolic link and a agrsm-test utlity
For AgereSystems/LSI with Vendor 11c1 chips hosted on High Definition Audio cards, there may be support
through the agrsm resources (providing an agrmodem + agrserial driver pair) as an alternative to usage
of the snd-hda-intel driver + slmodemd helper. For the 11c11040 modem chip, ONLY the agrsm code is competent.
Your Linux distro's dkms package should be first installed, as it directs the installation of modem
specific dkms-agrsm resources, and also directs auto-installation of new drivers upon kernel upgrades.
Currently, the dkms-agrsm code is NOT competent for 2.26.28 and later kernels.
A short term fix is to install linux-image + linux-headers packages for earlier kernels.
For example, for Ubuntu Jaunty with 2.6.28 kernels, linux-image + linux-headers packages
for earlier 2.26.27 series Intrepid kernels can be installed. Search for them at:
http://packages.ubuntu.com
The primary dkms-agrsm resource site is http://linux.zsolttech.com/linmodem/agrsm/
whereat a few different packaging types are available. Debian type installers (supporting Ubuntu too)
are copied to http://linmodems.technion.ac.il/packages/ltmodem/11c11040/ . Thereat the current package
is the dkms-agrsm_2.1.80-6_i386.deb is for Agere/LSI chipsets hosted on High Definition Audio cards.
Read the Modem/DOCs/Agrsm.txt for details.
-------------- end Agere Systems section -------------------
-------------- end Agere Systems section -------------------
Completed candidate modem analyses.
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.3.2
and the compiler used in kernel assembly: 4.3
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.3.2
and the compiler used in kernel assembly: 4.3
linux-headers-2.6.27.7-9-pae resources needed for compiling are not manifestly ready!
linux-headers-2.6.27.7-9-pae resources needed for compiling are not manifestly ready!
If compiling is necessary packages must be installed, providing:
kernel-source-2.6.27.7-9-pae
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
If compiling is necessary packages must be installed, providing:
kernel-source-2.6.27.7-9-pae
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking pppd properties:
-rwxr-xr-x 1 root dialout 330764 2008-12-03 11:33 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
Checking pppd properties:
-rwxr-xr-x 1 root dialout 330764 2008-12-03 11:33 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
chmod a+x /usr/sbin/pppd
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
chmod a+x /usr/sbin/pppd
Checking settings of: /etc/ppp/options
noipdefault
noauth
crtscts
lock
modem
asyncmap 0
nodetach
lcp-echo-interval 30
lcp-echo-failure 4
lcp-max-configure 60
lcp-restart 2
idle 600
noipx
file /etc/ppp/filters
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
Checking settings of: /etc/ppp/options
noipdefault
noauth
crtscts
lock
modem
asyncmap 0
nodetach
lcp-echo-interval 30
lcp-echo-failure 4
lcp-max-configure 60
lcp-restart 2
idle 600
noipx
file /etc/ppp/filters
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
/etc/udev/rules.d/77-network.rules:SUBSYSTEM=="net", ENV{INTERFACE}=="ppp*|ippp*|isdn*|plip*|lo*|irda*|dummy*|ipsec*|tun*|tap*|bond*|br*|vlan*|modem*|dsl*", GOTO="skip_ifup"
Within /etc/modprobe.conf files:
/etc/modprobe.conf:# Linux ACP modem (Mwave)
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
/etc/udev/rules.d/77-network.rules:SUBSYSTEM=="net", ENV{INTERFACE}=="ppp*|ippp*|isdn*|plip*|lo*|irda*|dummy*|ipsec*|tun*|tap*|bond*|br*|vlan*|modem*|dsl*", GOTO="skip_ifup"
Within /etc/modprobe.conf files:
/etc/modprobe.conf:# Linux ACP modem (Mwave)
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
کسی میتونه لینک دانلود درایو ترجیحا مخصوص اپن سوزه بذاره ... با عرض پوزش از اینکه مشکلم رو اینجا مطرح کردم . تاپیک اپن سوزه خیلی کم فعاله و سر تیتر اینجا هم نوشته شده بود " راهنمای جامع " برای همین اومدم اینجا.
-
سلام
من مودممو نصبیدم و فکر کنم همیچی اوکیه و wvdial هم درست کار میکنه ولی هیچ صفحه ای رو باز نمیکنه
قبلا address not found میزد ولی الان looking for site میزنه
چی کارش کنم
-
هوراااااااااااااااااااااااا
اینم اولین پستم از ابونتو ;D
ولی خدایی چه سرعت مزخرفی داره
راهی نداره سرعتشو زیاد کنم ???
-
این مطلب رو بخون http://itline.ir/2009/01/install-full-conexant-modem-in-ubuntu/ (http://itline.ir/2009/01/install-full-conexant-modem-in-ubuntu/) فکر کنم چون کرکش نکردی اینجوریه .
-
این مطلب رو بخون http://itline.ir/2009/01/install-full-conexant-modem-in-ubuntu/ (http://itline.ir/2009/01/install-full-conexant-modem-in-ubuntu/) فکر کنم چون کرکش نکردی اینجوریه .
ایول کرک شد
ممنون
-
حالا که مشکل این دوست عزیز بر طرف شد یکی هم به این مشکل دوساله ی بنده برسه .
-
سلام
می خواستم بدونم کسی میدونه چطور ubuntu رو میشه عضو domain کرد؟
-
وقتي دستور wvdial رو مي زنم مي گه مودم توسط يك نرم افزار ديگه در حال استفاده است و يا تنظيم نشده با setserial
لطفا ميشه درباره setserial راهنمايي كنيد.
-
سلام به دنیای لینوکس! (اولین بارمه که تو این انجمن پست میدم)
دوستان من 2 تا سوال خدمتتون داشتم فکر کردم اینجا به عرضتون برسونم
1) مودم من تو ویندوز به صورت Intel 2chips 536A شناخته میشه و از روشی که در ویکی همین سایت گفته شده بود این خروجیم بود :
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.24-19-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686,
Linux version 2.6.24-19-generic (buildd@palmer) (gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)) #1 SMP Wed Jun 18 14:43:41 UTC 2008
scanModem update of: 2009_08_15
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
Attached USB devices are:
ID 058f:6362 Alcor Micro Corp. Hi-Speed 21-in-1 Flash Card Reader/Writer (Internal/External)
If a cellphone is not detected, see http://ubuntuforums.org/archive/index.php/t-878554.html
A sample report is: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg00578.html
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
For candidate card in slot 03:02.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
03:02.0 14f1:2f50 14f1:205f Communication controller: Conexant Unknown device 2f50
Modem interrupt assignment and sharing:
15: 0 IO-APIC-edge libata
--- Bootup diagnostics for card in PCI slot 03:02.0 ----
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:27d8 1849:0888 Audio device: Intel Corporation 82801G
Modem interrupt assignment and sharing:
16: 76331 IO-APIC-fasteoi uhci_hcd:usb4, HDA Intel, i915@pci:0000:00:02.0
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
[ 39.249761] ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 16 (level, low) -> IRQ 16
[ 39.249787] PCI: Setting latency timer of device 0000:00:1b.0 to 64
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.16
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-04: ALC883 Analog : ALC883 Analog : capture 1
00-00: ALC883 Analog : ALC883 Analog : playback 1 : capture 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xfea38000 irq 16
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.24-19-generic/ubuntu/sound/alsa-driver/pci/hda/snd-hda-intel.ko
UNEXPECTED HDA diagnostic outcome.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 03:02.0:
Modem chipset detected on
NAME="Communication controller: Conexant Unknown device 2f50 "
CLASS=0780
PCIDEV=14f1:2f50
SUBSYS=14f1:205f
IRQ=15
IDENT=hsfmodem
Driver=hsfmodem-drivers
For candidate modem in: 03:02.0
0780 Communication controller: Conexant Unknown device 2f50
Primary device ID: 14f1:2f50
Support type needed or chipset: hsfmodem
Writing DOCs/Intel.txt
For owners of a Dell PCs with Conexant HSF modems, a driver source package with full speed enabled is available, but requires driver compiling. Read DOCs/Conexant.txt
Support for the 14f1:2f50 and 14f1:2215 HSF modems is projected early in 2007 from Linuxant.
From http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php
download hsfmodem-7.80.02.02full_k2.6.24_19_generic_ubuntu_i386.deb.zip
Under Linux unpack with:
$ unzip hsfmodem*.zip
Then install with:
$ sudo dpkg -i hsfmodem*.deb
Subsequently, the modem should be found with
$ sudo wvdialconf /etc/wvdial.conf
Edit in your personal information with:
$ sudo gedit /etc/wvdial.conf
and try dialing out with:
$ sudo wvdial.
See DOCs/Testing.txt for details.
The directions following below need only be pursued, if the above procedures are not adequate.
Start at http://www.linuxant.com/drivers/hsf/downloads-license.php to find the
hsfmodem package matching your System. For several Linux distros, there are
precompiled drivers matched to specific kernels. These have within the FileName,
your KernelVersion: 2.6.24_19_generic
They can be found through http://www.linuxant.com/drivers/hsf/full/downloads.php
A more precise location may be given a few paragraphs below.
If an EXACT Match with your your KernelVersion is not found, one of the
"Generic packages with source" near the bottom of the page must be used.
Downloaded packages must be moved into the Linux partition (home folder is OK)
and unzipped with:
unzip hsf*.zip
The installation command for a .deb suffic packages is, with root/adm permission:
sudo dpkg -i hsf*.deb
while for .rpm suffix it is, with:
rpm -i hsf*.rpm
Read DOCs/Conexant.txt
Writing DOCs/Conexant.txt
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset not detected on
NAME="Audio device: Intel Corporation 82801G "
CLASS=0403
PCIDEV=8086:27d8
SUBSYS=1849:0888
IRQ=16
HDA=8086:27d8
SOFT=8086:27d8.HDA
High Definition Audio (HDA) cards MAY host a modem chip in their Subsystem,
and many are supported by the ALSA audio+modem driver snd-hda-intel
A modem was not detected on HDA card 8086:27d8.
If another modem card is present, then most likely 8086:27d8 does not host a modem.
If another modem card has not been detected, then possibilities are:
1) A Conexant modem chip is present on 8086:27d8, as Conexant chips
are frequently not detectable by ALSA diagnostics
2) The modem may be of the older non-PCI Controller Chipset (hardware) type.
Try detection with Root permission:
sudo wvdialconf /etc/wvdial.conf
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation 82801G
Primary device ID: 8086:27d8
Subsystem PCI_id 1849:0888
Softmodem codec or chipset from diagnostics:
from Archives:
Support type needed or chipset:
Support can likely be achieved through two mutually exclusive alternatives:
1) The hsfmodem software for Conexant chipset modems: Read DOCs/Conexant.txt
The following ALSA alternative CANNOT work with Conexant modems.
2) An ALSA modem driver plus slmodemd. Read DOCs/Smartlink.txt for details, and
to test get the package SLMODEMD.gcc4.2.tar.gz from:
http://linmodems.technion.ac.il/packages/smartlink/
Writing DOCs/Smartlink.txt
============ end Smartlink section =====================
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.2.3
and the compiler used in kernel assembly: 4.2.3
The patch utility is needed and is needed for compiling ALSA drivers, and possibly others.
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.2
linuc_headers base folder /lib/modules/2.6.24-19-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking pppd properties:
-rwsr-xr-- 1 root dip 269256 2007-10-04 22:57 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
sudo chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
sudo chmod a+x /usr/sbin/pppd
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/blacklist-modem:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem:# blacklist snd-via82xx-modem
/etc/modprobe.d/alsa-base:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base:options snd-via82xx-modem index=-2
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
فکر کنم conexant بشناسه ??? نمیدونم والا اگه دوستان لطف کنن و بگن چجوری و از کجا درایورشو بگیرم که سرعتم رو محدود نکنه راستی تو فایل ini درایور مودمم نوشته بود ModemName = "Intel(R) 536EP V.92 Modem" اما با دستوری که تو سایت برای تست اینکه مودم intel536EP هست یا نه نوشته شده بود هیچ پاسخی ندیدم.
ببخشید که طولانی شد :oops: خیلی سر در گمم
سوال دوومم اینه که اگه بخوام مودم ADSL بخرم چی بخرم که همچین مشکللاتی برا نصبش تو لینوکس نداشته باشم؟؟؟
ممنون بروبچ
-
سلام خدمت اساتید لینوکس و اوبونتو.
من هنوز خیلی خیلی آماتورم و الان 1-2 روزه به اوبونتو هجرت کردم. :oops:
مدل مودمم creativelab DI5650 بدون hcf و hsf!!!
حالا باید چی کار کنم؟؟؟
میشه به صورت جامع بگید؟
-
کسی جواب مارو نمیده؟؟؟
-
میشه خواهشا یکی راهنماییم کنه؟؟؟
-
دوست عزیز فک کنم رفتن تعطیلات ;D هیچکی نیست جواب مارو بده
-
من نمیتونستم مودم رو نصب کنم
ولی الان شده…قیز قیز هم میکنه !!!!
ولی تا میاد وصل بشه این خطای زیر رو میده..مشکل کجاست ؟؟؟
–> Unable to run /usr/sbin/pppd.
–> Check permissions, or specify a “PPPD Path” option in wvdial.conf.
–> Don’t know what to do! Starting pppd and hoping for the best
-
آقا مشکل بالا با گذاشتن sudo قبلش حل شد
اگه ممکنه اینو جواب بدید :
http://forum.ubuntu.ir/index.php/topic,10893.0.html
-
آقا سلام!
من به طرز افتظاحی از ویندوز متنفرم ولی جه کار کنم که تا نتونم به لین مودممو بفهمونم نمی تونم از وین دست بردارم
من نتیجه ی برنامه ی اسکن مودم رو براتون می ذارم شاید کسی بتونه کمکم کنه چون من هیچی ازش نفهمیدم
در ظمن مودمم اینترنال روی پورت پی سی آی هستش
1stRead.txt:
If you want help from the email group Discuss@linmodems.org, PLEASE join the List
at http://www.linmodems.org . Otherwise your messages will be delayed until the evening,
waiting for someone to verify it is not junk mail, before forwarding through the List server.
The files in this Modem/ folder have the following roles:
ModemData.txt - Diagnostics and accumulated information cogent to your modem and host system.
This is the ONLY file which should be sent to the List DISCUSS@LINMODEMS.ORG ,
if further help is needed. Send your email and attachments as plain text as
other formats are rejected by the List Server, to avoid virus transmission.
Always send the ENTIRE ModemData.txt, as It includes subtle diagnostic ouputs needed
to best guide you. Please in the covering email mention your Country, to enable Country
specific advice.
Always use the most recent update of scanModem accessed ONLY at
http://linmodems.technion.ac.il/packages/scanModem.gz
to produce ModemData.txt
URLs to cogent advice are regularly updated, so your problem may be solved therein.
Please Do NOT send Do NOT send other files in this folder Modem/
Several informative files without diagnostics are in the DOCs subfolder.
A file(s) specific to your modem chipset will be written, such as:
Smartlink.txt, Conexant.txt, Intel.txt , etc
YourModem.txt - Guidance about operating your particular System, for your benefit
It should NOT be sent to Discuss@linmodems.org
Rational.txt - Motivations of this scanModem package.
DriverCompiling.txt - Explains the roles of additional files which may have to be installed
to support compiling of modem drivers, and the steps to take.
SoftModem.txt - Information and instructions about "soft modems".
For these modems, additional steps may be necessary for choice of supporting software.
The primary PCI ID is that of the host audio or modem controller, which can support diverse Subsystems. It is the chipset of the Subsystem which determines the software needed.
ModemTesting.txt SHOULD be read, but after drivers have been installed.
InfoGeneral.txt has general information about the status of winmodem support under Linux,
Do read it if ModemData.txt reports that your current modem is not supported under Linux.
Unsubscribe.txt - Howto terminate email tranmissions from the List.
If you are Linux newcomer, please do locate your local Linux group through:
http://www.linux.org/groups/index.html . If you are not comfortable with English,
a local Linux user can often be of substantial assistance in getting you on to the Internet.
ModemData.txt:
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.28-14-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686,
Linux version 2.6.28-14-generic (buildd@palmer) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #47-Ubuntu SMP Sat Jul 25 00:28:35 UTC 2009
scanModem update of: 2009_07_17
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
Attached USB devices are:
ID 1131:1001 Integrated System Solution Corp. KY-BT100 Bluetooth Adapter
If a cellphone is not detected, see http://ubuntuforums.org/archive/index.php/t-878554.html
A sample report is: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg00578.html
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
For candidate card in slot 01:0b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
01:0b.0 12b9:1007 12b9:00a6 Communication controller: 3Com Corp, Modem Division USR 56k Internal WinModem
Modem interrupt assignment and sharing:
--- Bootup diagnostics for card in PCI slot 01:0b.0 ----
[ 0.508165] pci 0000:01:0b.0: reg 10 32bit mmio: [0xd7fffc00-0xd7fffc3f]
[ 0.508174] pci 0000:01:0b.0: reg 14 32bit mmio: [0xd7fe0000-0xd7feffff]
[ 0.508182] pci 0000:01:0b.0: reg 18 32bit mmio: [0xd7ff0000-0xd7ff7fff]
[ 0.508191] pci 0000:01:0b.0: reg 1c io port: [0xb800-0xb83f]
[ 0.508219] pci 0000:01:0b.0: supports D2
[ 0.508221] pci 0000:01:0b.0: PME# supported from D0 D2 D3hot D3cold
[ 0.508265] pci 0000:01:0b.0: PME# disabled
The PCI slot 01:0b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:2668 1043:81a6 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW
Modem interrupt assignment and sharing:
16: 522800 0 IO-APIC-fasteoi uhci_hcd:usb5, radeon@pci:0000:04:00.0, HDA Intel
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
[ 0.505962] pci 0000:00:1b.0: reg 10 64bit mmio: [0xd6df8000-0xd6dfbfff]
[ 0.505997] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.506040] pci 0000:00:1b.0: PME# disabled
[ 9.622062] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 9.622161] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 1015.032583] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 1015.673045] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[ 1015.673068] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1015.673075] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 6242.360690] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 6242.952532] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[ 6242.952556] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 6242.952563] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 6997.040678] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 6997.620533] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[ 6997.620556] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 6997.620563] HDA Intel 0000:00:1b.0: setting latency timer to 64
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.18
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-00: CMI9880 : CMI9880 : playback 1 : capture 2
00-01: CMI9880 Digital : CMI9880 Digital : playback 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xd6df8000 irq 16
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.28-14-generic/kernel/sound/pci/hda/snd-hda-intel.ko
/lib/modules/2.6.28-11-generic/kernel/sound/pci/hda/snd-hda-intel.ko
/lib/modules/2.6.28-13-generic/kernel/sound/pci/hda/snd-hda-intel.ko
UNEXPECTED HDA diagnostic outcome.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 01:0b.0:
Modem chipset detected on
NAME="Communication controller: 3Com Corp, Modem Division USR 56k Internal WinModem"
CLASS=0780
PCIDEV=12b9:1007
SUBSYS=12b9:00a6
IRQ=10
IDENT=3COM.winmodem
For candidate modem in: 01:0b.0
0780 Communication controller: 3Com Corp, Modem Division USR 56k Internal WinModem
Primary device ID: 12b9:1007
Support type needed or chipset: 3COM.winmodem
Under Linux 2.6.n kernels, the chipset is NOT SUPPORTED . Read DOCs/InfoGeneral.txt about alternatives.
Writing DOCs/Intel.txt
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset not detected on
NAME="Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW "
CLASS=0403
PCIDEV=8086:2668
SUBSYS=1043:81a6
IRQ=16
HDA=8086:2668
SOFT=8086:2668.HDA
High Definition Audio (HDA) cards MAY host a modem chip in their Subsystem,
and many are supported by the ALSA audio+modem driver snd-hda-intel
A modem was not detected on HDA card 8086:2668.
If another modem card is present, then most likely 8086:2668 does not host a modem.
If another modem card has not been detected, then possibilities are:
1) A Conexant modem chip is present on 8086:2668, as Conexant chips
are frequently not detectable by ALSA diagnostics
2) The modem may be of the older non-PCI Controller Chipset (hardware) type.
Try detection with Root permission:
sudo wvdialconf /etc/wvdial.conf
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW
Primary device ID: 8086:2668
Subsystem PCI_id 1043:81a6
Softmodem codec or chipset from diagnostics:
from Archives:
Support type needed or chipset:
Support can likely be achieved through two mutually exclusive alternatives:
1) The hsfmodem software for Conexant chipset modems: Read DOCs/Conexant.txt
The following ALSA alternative CANNOT work with Conexant modems.
2) An ALSA modem driver plus slmodemd. Read DOCs/Smartlink.txt for details, and
to test get the package SLMODEMD.gcc4.3.tar.gz from:
http://linmodems.technion.ac.il/packages/smartlink/
Writing DOCs/Smartlink.txt
============ end Smartlink section =====================
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.3.3
and the compiler used in kernel assembly: 4.3.3
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.3
linuc_headers base folder /lib/modules/2.6.28-14-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking pppd properties:
-rwsr-xr-- 1 root dip 277352 Feb 20 20:55 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
sudo chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
sudo chmod a+x /usr/sbin/pppd
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
Bootup.txt:
A modem device/card may be disabled at bootup, due to a variety of causes.
Look at the bootup diagnostics record dmesg.txt and try to garner some
understanding from it. Attach it to your query to discuss@linmodems.org
Possibilities therein are too diverse to be automagically processed by
scanModem. A line including the PCI
bus slot 00:1b.0 of your modem, and "disable" or "disabling" predicts problems,
though sometimes corrected later in the bootup. Similarly a line with "@"
in the interrupt (IRQ) for your 00:1b.0 slot is predictive of problems.
Possible corrections are:
1) Within the boot up BIOS, change from a Windows to a non-PNP/Other Operating System type.
Instructions for accessing BIOS are at:
http://linmodems.technion.ac.il/resources.html within: Additional Resourcces.
2a) Add an option "pci=routeirq" to the kernel boot up line.
Here is an example paragraph from /boot/grub/menu.lst :
title Ubuntu, kernel 2.6.15-26-686
root (hd0,6)
kernel /boot/vmlinuz-2.6.15-26-686 root=/dev/hda7 ro pci=routeirq
initrd /boot/initrd.img-2.6.15-26-686
savedefault
2b) Same as above, but use "pollirq" instead of "pci=routeirq".
3) Within some BIOS setups, IRQ assignments can be changed.
4) On non-laptop systems, moving the modem card to another slot has helped.
5) Blacklist as many drivers as possible. See
http://linmodems.technion.ac.il/bigarch/archive-eighth/msg01593.html
6) Sometimes upgrading the kernel solves the problem.
7) Sometimes downgrading the kernel solves the problem.
8) Sometimes changing the Linux distribution solves the problem.
9) Get unloading.gz from http://linmodems.technion.ac.il/linmodems/
This script unloads excess drivers which may be competing for resources.
Before trying to set up the modem, do:
$ gunzip unloading.gz
$ chmod +x unloading
$ su - root
# ./unloading
Or for Ubuntu related Distros
$ sudo ./unloading
لطفا به دادم برسید!
-
سلام
میشه خواهشا یکی راهنماییم کنه؟؟؟
ببخشید تا حالا سابقه نداشته بچه ها اینقدر کم کاری کنن انشاا... که شما دلگیر نشده باشید .
قدم اول : به لینک زیر مراجعه کنید دوست عزیز
http://wiki.ubuntu-ir.org/DialupModemHowto
قدم دوم : محتویات فایل modemdata.txt رو بگذارید تا بقیه ی دوستان تحلیل کنند .
منتظریم
-
با سلام به همه دوستان عزیز
این محتویات فایل ModemData.txtمودم منه - من تشخیص دادم که باید hsfmodem_7.80.02.04full_k2.6.28_11_generic_ubuntu_i386.deb رو دانلود کنم و دانلود کردم ولی نصب نشد و به مشکل برخوردم لطفا کمک کنید که فایل رو اشتباهی گرفتم یا مشکل از جایه دیگه است. ::)
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.28-11-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686,
Linux version 2.6.28-11-generic (buildd@palmer) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009
scanModem update of: 2009_09_15
The dialer utility package WVDIAL does not appear to be installed on your System.
For Ubuntu Jaunty users, there are at the bottom of http://linmodems.technion.ac.il/packages/:
wvdial_jaunty_amd64.zip for x86_64, 64 bit bus systems.
wvdial_jaunty_i386.zip for 32 bit systems.
These are about 1 MB in size. After downloaded and copied into your Linux partition:
$ unzip wv*.zip
Within the new folder:
$ sudo dpkg -i *.deb
will complete the wvdial installation
Please read Modem/DOCs/wvdial.txt for usage information.
Presently install your Linux Distributions dkms package. It provides for automated driver updates,
following upgrade of your kernel. For details see http://linux.dell.com/projects.shtml#dkms
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
Attached USB devices are:
ID 058f:6362 Alcor Micro Corp. Hi-Speed 21-in-1 Flash Card Reader/Writer (Internal/External)
ID 0a5c:6300 Broadcom Corp. Pirelli Remote NDIS Device
If a cellphone is not detected, see http://ubuntuforums.org/archive/index.php/t-878554.html
A sample report is: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg00578.html
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
For candidate card in slot 02:00.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
02:00.0 14f1:2f50 14f1:205f Communication controller: Conexant Systems, Inc. Conexant SoftK56 Data/Fax Modem
Modem interrupt assignment and sharing:
9: 0 0 IO-APIC-fasteoi acpi
--- Bootup diagnostics for card in PCI slot 02:00.0 ----
[ 0.488434] pci 0000:02:00.0: reg 10 32bit mmio: [0xfa000000-0xfa00ffff]
[ 0.488442] pci 0000:02:00.0: reg 14 io port: [0xd000-0xd007]
[ 0.488474] pci 0000:02:00.0: PME# supported from D3hot D3cold
[ 0.488479] pci 0000:02:00.0: PME# disabled
The PCI slot 02:00.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 02:00.0:
Modem chipset detected on
NAME="Communication controller: Conexant Systems, Inc. Conexant SoftK56 Data/Fax Modem "
CLASS=0780
PCIDEV=14f1:2f50
SUBSYS=14f1:205f
IRQ=9
IDENT=hsfmodem
Driver=hsfmodem-drivers
For candidate modem in: 02:00.0
0780 Communication controller: Conexant Systems, Inc. Conexant SoftK56 Data/Fax Modem
Primary device ID: 14f1:2f50
Support type needed or chipset: hsfmodem
For owners of a Dell PCs with Conexant HSF modems, a driver source package with full speed enabled is available, but requires driver compiling. Read DOCs/Conexant.txt
Support for the 14f1:2f50 and 14f1:2215 HSF modems is projected early in 2007 from Linuxant.
From http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php
download hsfmodem-7.80.02.02full_k2.6.28_11_generic_ubuntu_i386.deb.zip
Under Linux unpack with:
$ unzip hsfmodem*.zip
Then install with:
$ sudo dpkg -i hsfmodem*.deb
Subsequently, the modem should be found with
$ sudo wvdialconf /etc/wvdial.conf
Edit in your personal information with:
$ sudo gedit /etc/wvdial.conf
and try dialing out with:
$ sudo wvdial.
See DOCs/Testing.txt for details.
The directions following below need only be pursued, if the above procedures are not adequate.
Start at http://www.linuxant.com/drivers/hsf/downloads-license.php to find the
hsfmodem package matching your System. For several Linux distros, there are
precompiled drivers matched to specific kernels. These have within the FileName,
your KernelVersion: 2.6.28_11_generic
They can be found through http://www.linuxant.com/drivers/hsf/full/downloads.php
A more precise location may be given a few paragraphs below.
If an EXACT Match with your your KernelVersion is not found, one of the
"Generic packages with source" near the bottom of the page must be used.
Downloaded packages must be moved into the Linux partition (home folder is OK)
and unzipped with:
unzip hsf*.zip
The installation command for a .deb suffic packages is, with root/adm permission:
sudo dpkg -i hsf*.deb
while for .rpm suffix it is, with:
rpm -i hsf*.rpm
Read DOCs/Conexant.txt
Writing DOCs/Conexant.txt
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.3.3
and the compiler used in kernel assembly: 4.3.3
The patch utility is needed and is needed for compiling ALSA drivers, and possibly others.
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.3
linuc_headers base folder /lib/modules/2.6.28-11-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0 eth1 ppp0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
-
با سلام به همه دوستان عزیز
این محتویات فایل ModemData.txtمودم منه - من تشخیص دادم که باید hsfmodem_7.80.02.04full_k2.6.28_11_generic_ubuntu_i386.deb رو دانلود کنم و دانلود کردم ولی نصب نشد و به مشکل برخوردم لطفا کمک کنید که فایل رو اشتباهی گرفتم یا مشکل از جایه دیگه است. ::)
با یاد او
روز بخیر
https://help.ubuntu.com/community/DialupModemHowto/Conexant
روش ساخت درایور رو مطالعه کنین .
-
با سلام . خيلي به درد خورد .
مرسي
-
اگه مي شه به لينك زير يه سري بزنيد و هر كدوم از مودم ها كه با لينوكس (مخصوصا اپن سوزي يا اوبونتو) سازگاره يا با زحمت كمتري درايورش نصب ميشه به من بگين باتشكر:
http://www.aftabbazar.com/Products.aspx?catid=233 (http://www.aftabbazar.com/Products.aspx?catid=233)
-
سلام. من لپ تاپ دارم. تازه روش ابونتو 9.04 رو نصب کردم. مودمم هم USB هست. برنامه scanModem رو اجرا کردم. خروجیش همینه که زیره. کی می تونه منو کمک کنه تا مودمم رو نصب کنم؟
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.28-11-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=x86_64,
Linux version 2.6.28-11-generic (buildd@crested) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:58:03 UTC 2009
scanModem update of: 2009_09_15
The dialer utility package WVDIAL does not appear to be installed on your System.
For Ubuntu Jaunty users, there are at the bottom of http://linmodems.technion.ac.il/packages/:
wvdial_jaunty_amd64.zip for x86_64, 64 bit bus systems.
wvdial_jaunty_i386.zip for 32 bit systems.
These are about 1 MB in size. After downloaded and copied into your Linux partition:
$ unzip wv*.zip
Within the new folder:
$ sudo dpkg -i *.deb
will complete the wvdial installation
Please read Modem/DOCs/wvdial.txt for usage information.
Presently install your Linux Distributions dkms package. It provides for automated driver updates,
following upgrade of your kernel. For details see http://linux.dell.com/projects.shtml#dkms
Some modem drivers can only be used in 32 bit modem on x86_64 systems,
while some others are competent on x86_64 Systems. Cases are:
1) http://linmodems.technion.ac.il/bigarch/archive-seventh/msg03119.html
for the snd-hda-intel audio+modem driver. Also applicable to AC97 modem controllers.
In both cases, 32 bit libraries must be installed to support the slmodemd helper having a precompiled 32 bit component.
2) For USB modems using the slusb.ko driver. 32 bit libraries must be installed to support the slmodemd helper having a precompiled 32 bit component
3) The hsfmodem and hcfpcimodem drivers for Conexant chipsest modes are x86_64 competent.
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
Attached USB devices are:
ID 058f:6387 Alcor Micro Corp. Transcend JetFlash Flash Drive
ID 0572:1329 Conexant Systems (Rockwell), Inc.
ID 04f3:0217 Elan Microelectronics Corp.
ID 0c45:63ee Microdia
ID 0bda:0158 Realtek Semiconductor Corp. Mass Stroage Device
If a cellphone is not detected, see http://ubuntuforums.org/archive/index.php/t-878554.html
A sample report is: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg00578.html
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:293e 1028:02aa Audio device: Intel Corporation 82801I
Modem interrupt assignment and sharing:
21: 1465 1459 IO-APIC-fasteoi uhci_hcd:usb4, uhci_hcd:usb7, HDA Intel
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
[ 0.592769] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf6afc000-0xf6afffff]
[ 0.592808] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.592813] pci 0000:00:1b.0: PME# disabled
[ 12.760842] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[ 12.760924] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 12.797475] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input11
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.18
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-00: STAC92xx Analog : STAC92xx Analog : playback 1 : capture 2
00-01: STAC92xx Digital : STAC92xx Digital : playback 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xf6afc000 irq 21
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.28-11-generic/kernel/sound/pci/hda/snd-hda-intel.ko
UNEXPECTED HDA diagnostic outcome.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 006:
Modem chipset detected on
SLOT="Bus 006 Device 003:"
NAME="Conexant Systems (Rockwell), Inc. "
bus=006
USBmodemID=0572:1329
IDENT=dgcmodem
Driver=dgcmodem
For a detailed USB cellphone usage report, see http://linmodems.technion.ac.il/bigarch/archive-eighth/msg03240.html
For candidate modem in: 006
Conexant Systems (Rockwell), Inc.
Primary device ID: 0572:1329
Support type needed or chipset: dgcmodem
Writing DOCs/Intel.txt
For owners of a Dell PCs with Conexant HSF modems, a driver source package with full speed enabled is available, but requires driver compiling. Read DOCs/Conexant.txt
The modem requires a dgcmodem package.
From http://www.linuxant.com/drivers/dgc/downloads-ubuntu-x86.php
download dgcmodem-7.80.02.02full_k2.6.28_11_generic_ubuntu_i386.deb.zip
Under Linux unpack with:
$ unzip dgcmodem*.zip
Then install with:
$ sudo dpkg -i dgcmodem*.deb
Subsequently, the modem should be found with
$ sudo wvdialconf /etc/wvdial.conf
Edit in your personal information with:
$ sudo gedit /etc/wvdial.conf
and try dialing out with:
$ sudo wvdial.
See DOCs/Testing.txt for details.
The directions following below need only be pursued, if the above procedures are not adequate.
006
Read DOCs/Conexant.txt
Writing DOCs/Conexant.txt
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset not detected on
NAME="Audio device: Intel Corporation 82801I "
CLASS=0403
PCIDEV=8086:293e
SUBSYS=1028:02aa
IRQ=21
HDA=8086:293e
SOFT=8086:293e.HDA
High Definition Audio (HDA) cards MAY host a modem chip in their Subsystem,
and many are supported by the ALSA audio+modem driver snd-hda-intel
A modem was not detected on HDA card 8086:293e.
If another modem card is present, then most likely 8086:293e does not host a modem.
If another modem card has not been detected, then possibilities are:
1) A Conexant modem chip is present on 8086:293e, as Conexant chips
are frequently not detectable by ALSA diagnostics
2) The modem may be of the older non-PCI Controller Chipset (hardware) type.
Try detection with Root permission:
sudo wvdialconf /etc/wvdial.conf
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation 82801I
Primary device ID: 8086:293e
Subsystem PCI_id 1028:02aa
Softmodem codec or chipset from diagnostics:
from Archives:
Support type needed or chipset:
Support can likely be achieved through two mutually exclusive alternatives:
1) The hsfmodem software for Conexant chipset modems: Read DOCs/Conexant.txt
The following ALSA alternative CANNOT work with Conexant modems.
2) An ALSA modem driver plus slmodemd. Read DOCs/Smartlink.txt for details, and
to test get the package SLMODEMD.gcc4.3.tar.gz from:
http://linmodems.technion.ac.il/packages/smartlink/
Writing DOCs/Smartlink.txt
============ end Smartlink section =====================
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.3.3
and the compiler used in kernel assembly: 4.3.3
The patch utility is needed and is needed for compiling ALSA drivers, and possibly others.
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.3
linuc_headers base folder /lib/modules/2.6.28-11-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking pppd properties:
-rwsr-xr-- 1 root dip 321600 2009-02-20 21:56 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
sudo chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
sudo chmod a+x /usr/sbin/pppd
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0 eth1
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
-
سلام
1- يه لپ تاب 4230 ايسر هست كه مودمش hsf هست، اما درايور نمي تونه اونو پبدا كنه
خروجي نصب پكيج و modemdata عكس گرفتم
http://sites.google.com/site/uisalso/Screenshot.png (http://sites.google.com/site/uisalso/Screenshot.png)
هركي ايده اي داره، خواهشن كمك؟
----------------------------------------------------
2- يه چيز ديگه! تا حالا كسي با virtualBox ويندوز ريخته توي اوبونتو، تونسته با dailUp ويندوز كانكت بشه؟
-
سلام.
من که نفهمیدم اسم مدم اینترنالم چیه؟؟؟
میشه کمکم کنید؟
اینم فایل scan modem
http://www.4shared.com/file/187245375/6727ba80/Modem.html
-
سلام
اول یه خواهش از اساتید که اگه میشه بیشتر سر بزنن
آخه واقعا من یکی که رو کمکشون تو مهاجرتم به سوی آزادی حساب کرده بودم.
دوم اینکه من اوبونتو ۹.۱۰ هستم و یه سری خروجیها رو میدم لطفا کمک کنن:
مودم دیتا:
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.31-17-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686,
Linux version 2.6.31-17-generic (buildd@palmer) (gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #54-Ubuntu SMP Thu Dec 10 16:20:31 UTC 2009
scanModem update of: 2010_01_13
The modem symbolic link is /dev/modem -> ttySL0
The slmodemd set symbolic link is /dev/ttySL0 -> /dev/pts/0
The dialer utility package WVDIAL does not appear to be installed on your System.
For Ubuntu users, there are at the bottom of http://linmodems.technion.ac.il/packages/
packages with the files necessary to install wvdial, with names like:
wvdial_jaunty_amd64.zip for x86_64, 64 bit bus systems.
wvdial_jaunty_i386.zip for 32 bit systems.
wvdial_karmic_i386.zip for 32 bit systems.
These are about 1 MB in size. After downloaded and copied into your Linux partition:
$ unzip wv*.zip
Within the new folder:
$ sudo dpkg -i *.deb
will complete the wvdial installation
Please read Modem/DOCs/wvdial.txt for usage information.
The dkms driver upgrade utilities are installed,
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
Attached USB devices are:
ID 0483:2016 SGS Thomson Microelectronics Fingerprint Reader
ID 046d:c521 Logitech, Inc. MX620 Laser Cordless Mouse
If a cellphone is not detected, see http://ubuntuforums.org/archive/index.php/t-878554.html
A sample report is: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg00578.html
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:27d8 1179:0001 Audio device: Intel Corporation 82801G
Modem interrupt assignment and sharing:
22: 9574 0 IO-APIC-fasteoi HDA Intel
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
[ 0.180674] pci 0000:00:1b.0: reg 10 64bit mmio: [0x000000-0x003fff]
[ 0.180821] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.180826] pci 0000:00:1b.0: PME# disabled
[ 24.668304] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0
[ 24.668313] HDA Intel 0000:00:1b.0: enabling device (0000 -> 0002)
[ 24.668330] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 24.668370] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 24.945202] input: HDA Intel Line In at Sep Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The ALSA verion is 1.0.20
The modem cards detected by "aplay -l" are:
card 0: Intel [HDA Intel], device 6: Si3054 Modem [Si3054 Modem]
The /proc/asound/pcm file reports:
-----------------------
00-00: STAC92xx Analog : STAC92xx Analog : playback 1 : capture 1
00-06: Si3054 Modem : Si3054 Modem : playback 1 : capture 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0x8a000000 irq 22
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.31-17-generic/kernel/sound/pci/hda/snd-hda-intel.ko
/lib/modules/2.6.31-16-generic/kernel/sound/pci/hda/snd-hda-intel.ko
/lib/modules/2.6.31-14-generic/kernel/sound/pci/hda/snd-hda-intel.ko
The modem codec file for the HDA card is: /proc/asound/card0/codec#1
--------------------------------------------------------
Codec: LSI Si3054
Address: 1
Function Id: 0x2
Vendor Id: 0x11c13026
Subsystem Id: 0x11790001
Revision Id: 0x100700
Modem Function Group: 0x1
The audio card hosts a softmodem chip: 0x11c13026
The softmodem chip 0x11c13026 is in principle supported by the COMM support of slmodemd
and the joint snd-hda-intel audio+modem driver, begun with ALSA version 1.0.13.
For HDA cards with ALC883 chips, an upgrade to ALSA verions 1.0.15 way be necessary. Instructions for Upgrading snd-hda-intel and its dependent driver set are at:
http://linmodems.technion.ac.il/bigarch/archive-eighth/msg00838.html
If not a Conexant modem, the driver snd-hda-intel with its dependent drivers:
snd_hda_intel 26920 5
snd_hda_codec 75708 3 snd_hda_codec_si3054,snd_hda_codec_idt,snd_hda_intel
snd_pcm 75296 6 snd_hda_codec_si3054,snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd 59204 21 snd_hda_codec_si3054,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
snd_page_alloc 9156 2 snd_hda_intel,snd_pcm
----------
provide audio + modem support with the modem chip residing on the subsystem.
Any particular card can host any one of several soft modem chips.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset detected on
NAME="Audio device: Intel Corporation 82801G "
CLASS=0403
PCIDEV=8086:27d8
SUBSYS=1179:0001
IRQ=22
HDA=8086:27d8
SOFT=8086:27d8.HDA
HDAchipVendorID=11c1
CHIP=0x11c13026
IDENT=slmodemd
SLMODEMD_DEVICE=hw:0,6
Driver=snd-hda-intel
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation 82801G
Primary device ID: 8086:27d8
Subsystem PCI_id 1179:0001
Softmodem codec or chipset from diagnostics: 0x11c13026
from Archives:
The HDA card softmodem chip is 0x11c13026
Support type needed or chipset: slmodemd supporting the snd-hda-intel audio+modem driver
An ALSA (Advanced Linux Sound Architecture) modem driver: snd-hda-intel
provides Low Level support enabling contact with the modem hardware.
For all BUT Conexant chip soft modems (using hsfmodem software)
complementary High Level support is through a Smartlink utility: slmodemd
Download from http://linmodems.technion.ac.il/packages/smartlink/
the package SLMODEMD.gcc4.4.tar.gz having a compiled slmodemd. Unpack under Linux with:
$ tar zxf SLMODEMD.gcc4.4.tar.gz
and read instructions therein. But briefly, the modem is setup with command:
sudo slmodemd -c YOUR_COUNTRY --alsa hw:0,6
reporting dynamic creation of ports:
/dev/ttySL0 --> /dev/pts/N , with N some number
Read DOCs/Smartlink.txt and Modem/DOCs/YourSystem.txt for follow through guidance.
Writing DOCs/Intel.txt
Writing DOCs/Smartlink.txt
============ end Smartlink section =====================
The AgereSystems/LSI agrsm code supports compiling of a agrmodem + agrserial driver pair.
There are a few different chipsets which use this driver pair, but they use different code resources:
Chipsets KV* PackageNames (most current as of November 2009)
----------------------------------------------------------------------------------------------
11c1:048c and 11c1:048f 2.6.29 agrsm048pci-2.1.60_20100108_i386.deb or agrsm048pci-2.1.60_20100108.tar.gz
11c1:0620 2.6.31 agrsm06pci-2.1.80_20100106_i386.deb or agrsm06pci-2.1.80~20100106.tar.gz !!
11c11040 (on HDA audio cards) 2.6.31 agrsm-11c11040-2.1.80~20091225.tar.bz2 !!
All available at: http://linmodems.technion.ac.il/packages/ltmodem/11c11040/ , whereat additionally
automation & testing agrsm-tools_0.0.1_all.deb or agrsm-tools-0.0.1-2.noarch.rpm
General background agrsm_howto.txt
for rpm variants of dkms-agrsm , see http://linux.zsolttech.com/linmodem/agrsm/
------------------------------------------------------------------------------------------------
* KV == latest kernel release with a reported success
!! Latest update with major credit to Nikolay Zhuravlev
But see conflict issue: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg02753.html
Report from Bjorn Wielens:
Please note- trying to load the modules on a OpenSuSE 11.2 system gives
an error about the module_version symbol. Using:
# modprobe --force agrmodem
# modprobe --force agrserial
is necessary to load the drivers, and does not appear to cause ill effects.
All of the above packages are dkms competent. This means that if your Linux distros dkms package
is previously installed, if provides for future updates matching forthcoming kernels.
-------------- end Agere Systems section -------------------
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.4.1
and the compiler used in kernel assembly: 4.4.1
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.4
linuc_headers base folder /lib/modules/2.6.31-17-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
For guidance on FAX usage, get from http://linmodems.technion.ac.il/packages/ get faxing.tar.gz
It has samples for a modem using port /dev/ttySL0, which must be changed to match your modem's port.
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0 wlan0 wmaster0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link: lrwxrwxrwx 1 root root 6 2010-01-15 16:07 /dev/modem -> ttySL0
slmodemd created symbolic link /dev/ttySL0: lrwxrwxrwx 1 root root 10 2010-01-15 16:07 /dev/ttySL0 -> /dev/pts/0
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
و
ali@Can3r:~$ uname -r
2.6.31-17-generic
وali@Can3r:~$ lspci
00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03)
00:01.0 PCI bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express PCI Express Root Port (rev 03)
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)
01:00.0 VGA compatible controller: nVidia Corporation G72M [Quadro NVS 110M] (rev a1)
02:00.0 Ethernet controller: Intel Corporation 82573L Gigabit Ethernet Controller
05:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)
06:0b.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller
06:0b.1 FireWire (IEEE 1394): Texas Instruments PCIxx12 OHCI Compliant IEEE 1394 Host Controller
06:0b.3 SD Host controller: Texas Instruments PCIxx12 SDA Standard Compliant SD Host Controller
حالا اگه میشه بگید نوع مودمم چیه.
-
سلام دوستان
من می خوام مودم که از نوع smartlink هستش رو تو دبیان 5 نصب کنم شرمنده این انجمن مربوط به ubuntu هستش ولی من همین مودم رو تو ubuntu با کمک دوستان یه جوری نصب کردم ولی حالا می خوام تو دبیان 5 نصب کنم نمیشه
ممنون میشم اگه کمک کنید
-
سلام دوستان ،
من تازه اوبونتو رو نصب کردم ، اشتباهی 2 بار تنظیمات PPPoE رو نصب کردم ! ( یوزر نیم هم اشتب شده )
کسی میتونه بهم کمک کنه که چطوری میتونم تمامی تنظیمات رو پاک کنم ؟
لطفا" خیلی آسان و قابل فهم برای یه تازه کار توضیح بدید !
ممنونم ...
-
سلام
آقا واقا دستون درد نکنه خیلی عالی بود برای اولین بار تو لینوکس به اینترنت وصل شدم!!!!!!!!!!!!!!!!!!!!!!!!!!! \\:D/ \\:D/ \\:D/ \\:D/ \\:D/
-
تنظیمات وایرلس روتوضیح میدین؟
من وایرلسم پسورد میخواد فقط تو ویندوز
اما اینجا 7-8تا تنظیمات داره
فایل cer میخواد چندتا
یوزر ندمم کانکت روشن نمیشه
(وایرلسم یوزر نداره)
-
wvdial در اوبونتو10.4 به طور پیش فرض نصب نیست؟من ازروی دی وی دی نصب کردم! ???
-
اینم مودم دیتا:
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.32-22-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=x86_64, Ubuntu , ALSA_version=1.0.21
Linux version 2.6.32-22-generic (buildd@yellow) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #36-Ubuntu SMP Thu Jun 3 19:31:57 UTC 2010
scanModem update of: 2010_05_29
Distrib_ID=Ubuntu
DistribCodeName=lucid
AptRepositoryStem=http://archive.ubuntu.com/ubuntu
The dkms driver upgrade utilities are installed,
Some modem drivers can only be used in 32 bit modem on x86_64 systems,
while some others are competent on x86_64 Systems. Cases are:
1) http://linmodems.technion.ac.il/bigarch/archive-seventh/msg03119.html
for the snd-hda-intel audio+modem driver. Also applicable to AC97 modem controllers.
In both cases, 32 bit libraries must be installed to support the slmodemd helper having a precompiled 32 bit component.
2) For USB modems using the slusb.ko driver. 32 bit libraries must be installed to support the slmodemd helper having a precompiled 32 bit component
3) The hsfmodem and hcfpcimodem drivers for Conexant chipsest modes are x86_64 competent.
4) agrsm packages for LSI/AgereSystems softmodems are not competent on x86_64 systems.
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
Attached USB devices are:
ID 0a5c:2101 Broadcom Corp. A-Link BlueUsbA2 Bluetooth
ID 064e:a103 Suyin Corp.
If a cellphone is not detected, see http://ubuntuforums.org/archive/index.php/t-878554.html
A sample report is: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg00578.html
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
Candidate PCI devices with modem chips are:
00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
High Definition Audio cards can host modem chips.
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:293e 1025:0205 Audio device: Intel Corporation 82801I
Modem interrupt assignment and sharing:
21: 3056 410 IO-APIC-fasteoi HDA Intel
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
[ 0.371737] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf3400000-0xf3403fff]
[ 0.371784] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.371788] pci 0000:00:1b.0: PME# disabled
[ 17.167078] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0
[ 17.167100] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[ 17.167135] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 17.421975] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
[ 4881.430090] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 4881.450105] HDA Intel 0000:00:1b.0: power state changed by ACPI to D3
[ 4881.450110] PM: suspend of drv:HDA Intel dev:0000:00:1b.0 complete after 350.002 msecs
[ 4883.380486] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[ 4883.380501] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[ 4883.380507] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100102)
[ 4883.635350] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[ 4883.635355] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 5045.840480] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 5045.860100] HDA Intel 0000:00:1b.0: power state changed by ACPI to D3
[ 5045.860106] PM: suspend of drv:HDA Intel dev:0000:00:1b.0 complete after 129.998 msecs
[ 5047.830584] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[ 5047.830600] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[ 5047.830605] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100102)
[ 5048.087001] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[ 5048.087006] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 5269.600484] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 5269.620101] HDA Intel 0000:00:1b.0: power state changed by ACPI to D3
[ 5269.620106] PM: suspend of drv:HDA Intel dev:0000:00:1b.0 complete after 130.003 msecs
[ 5271.550587] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[ 5271.550602] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[ 5271.550608] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100102)
[ 5271.805667] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[ 5271.805672] HDA Intel 0000:00:1b.0: setting latency timer to 64
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
===== Advanced Linux Sound Architecture (ALSA) diagnostics =====
The ALSA packages provide audio support and also drivers for some modems.
ALSA diagnostics are written during bootup to /proc/asound/ folders.
The modem cards detected by "aplay -l" are: None
The /proc/asound/pcm file reports:
-----------------------
00-00: ALC888 Analog : ALC888 Analog : playback 1 : capture 1
00-01: ALC888 Digital : ALC888 Digital : playback 1
00-02: ALC888 Analog : ALC888 Analog : capture 1
00-03: NVIDIA HDMI : NVIDIA HDMI : playback 1
about /proc/asound/cards:
------------------------
0 [Intel ]: HDA-Intel - HDA Intel
HDA Intel at 0xf3400000 irq 21
PCI slot 00:1b.0 has a High Definition Audio Card
The drivers are in the kernel modules tree at:
/lib/modules/2.6.32-21-generic/kernel/sound/pci/hda/snd-hda-intel.ko
/lib/modules/2.6.32-22-generic/kernel/sound/pci/hda/snd-hda-intel.ko
The modem codec file for the HDA card is: /proc/asound/card0/codec#1
--------------------------------------------------------
Codec: LSI ID 1040
Address: 1
Function Id: 0x2
Vendor Id: 0x11c11040
Subsystem Id: 0x11c10001
Revision Id: 0x100200
Modem Function Group: 0x1
The audio card hosts a softmodem chip: 0x11c11040
The softmodem chip 11c11040 is hosted on the Subsytem of the High Definition Audio card,
and is supported by the AgereSystems/LSI driver pair agrmodem + agrserial, which is provided by
the most current package agrsm-11c11040-version at http://linmodems.technion.ac.il/packages/ltmodem/11c11040/
If not a Conexant modem, the driver agrsm with its dependent drivers:
----------
provide audio + modem support with the modem chip residing on the subsystem.
Any particular card can host any one of several soft modem chips.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset detected on
NAME="Audio device: Intel Corporation 82801I "
CLASS=0403
PCIDEV=8086:293e
SUBSYS=1025:0205
IRQ=21
HDA2=00:1b.0
SOFT=8086:293e.HDA
HDAchipVendorID=11c1
CHIP=0x11c11040
IDENT=agrsm
Driver=agrsm
package=agrsm-11c11040
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation 82801I
Primary device ID: 8086:293e
Subsystem PCI_id 1025:0205
Softmodem codec or chipset from diagnostics: 0x11c11040
from Archives:
The HDA card softmodem chip is 0x11c11040
Support type needed or chipset: agrsm
Writing DOCs/Intel.txt
There is no agrsm software support for x86_64 systems, through the modem may be
supported on Intel/i386 installations, which do more slowly servce x86_64 processors.
The AgereSystems/LSI agrsm code supports compiling of a agrmodem + agrserial driver pair.
There are a few different chipsets which use this driver pair, but they use different code resources:
Chipsets KV* PackageNames (most current as of November 2009)
----------------------------------------------------------------------------------------------
11c1:048c and 11c1:048f 2.6.29 agrsm048pci-2.1.60_20100108_i386.deb or agrsm048pci-2.1.60_20100108.tar.gz
11c1:0620 2.6.31 agrsm06pci-2.1.80_20100106_i386.deb or agrsm06pci-2.1.80~20100106.tar.gz !!
11c11040 (on HDA audio cards) 2.6.31 agrsm-11c11040_20091225_i386.deb or agrsm-11c11040-2.1.80~20091225.tar.bz2 !!
All available at: http://linmodems.technion.ac.il/packages/ltmodem/11c11040/
Additionally there are;
automation & testing agrsm-tools_0.0.1_all.deb or agrsm-tools-0.0.1-2.noarch.rpm
General background agrsm_howto.txt
------------------------------------------------------------------------------------------------
* KV == latest kernel release with a reported success
!! Latest update with major credit to Nikolay Zhuravlev
But see conflict issue: http://linmodems.technion.ac.il/bigarch/archive-nineth/msg02753.html
For the 11c11040 chip with kernels 2.6.31 and later a change in a modules loading settingmay be necessary.
Within the file /etc/modprobe.d/alsa-base.conf (or equivalent for your Distro), change the phrase:
options snd-hda-intel power_save=10
to:
options snd-hda-intel power_save=0
or the agrsm drivers will not function. For Ubuntu related systems this can be done with:
$ sudo gedit /etc/modprobe.d/alsa-base.conf
Report from Bjorn Wielens:
Please note- trying to load the modules on a OpenSuSE 11.2 system gives
an error about the module_version symbol. Using:
# modprobe --force agrmodem
# modprobe --force agrserial
is necessary to load the drivers, and does not appear to cause ill effects.
All of the above packages are dkms competent. This means that if your Linux distros dkms package
is previously installed, if provides for future updates matching forthcoming kernels.
-------------- end Agere Systems section -------------------
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.4.3
and the compiler used in kernel assembly: 4.4.3
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.4
linuc_headers base folder /lib/modules/2.6.32-22-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking pppd properties:
-rwsr-xr-- 1 root dip 321680 2010-03-07 09:07 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
sudo chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
sudo chmod a+x /usr/sbin/pppd
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
For guidance on FAX usage, get from http://linmodems.technion.ac.il/packages/ get faxing.tar.gz
It has samples for a modem using port /dev/ttySL0, which must be changed to match your modem's port.
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0 wlan0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
لطفا کمک کنید
فقط لطفا برام پیام بفرستین و تو فروم جوابمو نذارین
کار مال معلممه لطفا کمک کنید!
عزت زیاد!
arf1372
-
سلام سلام سلام
من هم یه دنیای متن باز ها اومدم.
من یک هفته ایی هست که ابونتو 10.04 رو روی pc در کنار windows xp نصب کردم.
ولی برخی از مشکلات ابونتو دوره واقعا دیوونه ام میکنه.یک هفته دنبال مشکل نصب مودمش بودم هنوزم که هنوزه نتونستم مشکلشو حل کنم.باورتون نمیشی بیش از 100 بار تو این یک هفته هی رفتم به ویندوز هی رفتم به ابونتو .
اول میرفتم تو ویندوز و درباره مشکل مودم تو اینترنت سرچ میکردم و بعد میومدم تو ابونتو تا ببینم راه حل جواب میده یا نه هر کاری کردم نشد تا اینکه مجبور شدم یه پیام اینجا بزارم تا شما کمکم کنید.خوب من میگم چیکار کردم و چه به چه مشکلاتی بر خوردم:
اولین و مهم ترین مشکل من که خواهش میکنم اینو حداقل حل کنید در استفاده از terminal است :
ببینید مثلا من یه دستور میدم(مثلا: sudo pppconfig ) به شکل زیر:
[code]
Hamed@Softkade:~$ sudo pppconfig
و بعد از من پسورد میخواد.به شکل زیر:
Hamed@Softkade:~$ sudo pppconfig
[sudo] password for Hamed:
ببینید مشکل من دقیقا اینجاست.توضیح میدم خوب دقت کنید.
وقتی پیام میاد که پسورد رو وارد کن من تایپ می کنم ولی چیزی تایپ نمیشه(هر کاری کردم نشد) بعد فهمیدم حتما بعد این پیام باید Enter رو بزنی.خوب منEnter رو میزنم وقتی زدم شروع به تایپ میکنم ولی سیستم بدونه اینکه به تایپ من توجه کنه خودش دستور بعد رو میده.دستور بعد به این شکله:
Hamed@Softkade:~$ sudo pppconfig
[sudo] password for Hamed:
h243Sorry, try again.
[sudo] password for Hamed:
اون h243 پسوردییه که من داشم تایپ میکردم (والبته نه به طور کامل.)که پسورد رو تایپ نکرده پیام بالا اومد.خوب من تصمیم گرفتم بعد از زدن Enter سریع پسورد رو تایپ کنم و موفق هم شدم ولی بازم بدون اینکه به پسوردی که دادم توجه کنه پیام بالا رو میده .بالای 20 بار این کار رو کردم ولی نشد.(و این رو هم میدونم که وقتی که از root میخوای این دستور رو اجرا کنی این پیام میاد)
خوب حالا سوال من اینجاست که چطور این مشکل رو حل کنم .و یا راهی هست که این پیام دیگه نیاد و بدون اینکه از من پسورد بخواد دستور ها رو اجرا کنه؟(سرچ هم کردم چیزی پیدا نشد)من فقط میخوام بدونم چطور باید این پیام رو حذف کرد همین.؟؟؟؟؟؟؟؟؟؟؟؟
خوب من اول این سوال رو پرسیدم چون وقتی میخوام تنضیمات مودم و نصب درایور رو انجام بدم هم این پیام میاد.شاید با حل شدن این مشکل ,مشکل نصب مودم هم حل بشه,پس خواهشن هر کاری میکنید فقط جوابمو بدید.؟؟؟؟؟؟؟؟؟!!!!!!!!!!!!!!!!
خوب اگر به این سوال جواب دادید حالا مشکل بعد:
من scanmodem رو اجرا کردم خوب اطلاعات ModemData.txt من این است:
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.32-21-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686, Ubuntu , ALSA_version=1.0.21
Linux version 2.6.32-21-generic (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #32-Ubuntu SMP Fri Apr 16 08:10:02 UTC 2010
scanModem update of: 2010_05_29
Distrib_ID=Ubuntu
DistribCodeName=lucid
AptRepositoryStem=http://ir.archive.ubuntu.com/ubuntu/
Presently install your Linux Distributions dkms package. It provides for automated driver updates,
following upgrade of your kernel. For details see http://linux.dell.com/projects.shtml#dkms
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
Candidate PCI devices with modem chips are:
00:0b.0 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem (rev 01)
High Definition Audio cards can host modem chips.
For candidate card in slot 00:0b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:0b.0 14f1:2f00 14f1:2004 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem
Modem interrupt assignment and sharing:
11: 173 XT-PIC-XT ehci_hcd:usb1, uhci_hcd:usb3, uhci_hcd:usb4, VIA8233
--- Bootup diagnostics for card in PCI slot 00:0b.0 ----
[ 0.085103] pci 0000:00:0b.0: reg 10 32bit mmio: [0xdfff0000-0xdfffffff]
[ 0.085113] pci 0000:00:0b.0: reg 14 io port: [0xec00-0xec07]
[ 0.085162] pci 0000:00:0b.0: PME# supported from D3hot D3cold
[ 0.085171] pci 0000:00:0b.0: PME# disabled
The PCI slot 00:0b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:0b.0:
Modem chipset detected on
NAME="Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem "
CLASS=0780
PCIDEV=14f1:2f00
SUBSYS=14f1:2004
IRQ=11
IDENT=hsfmodem
Driver=hsfmodem-drivers
For candidate modem in: 00:0b.0
0780 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem
Primary device ID: 14f1:2f00
Support type needed or chipset: hsfmodem
For owners of a Dell PCs with Conexant HSF modems, a driver source package with full speed enabled is available, but requires driver compiling. Read DOCs/Conexant.txt
For all code packages from Linuxant.com, either a driver set matching the boot kernel will be installed,
or the drivers will first be compiled and then installed. The expert on modem software for Linux is
"Support (Jonathan)" <modem.support@linuxant.com>
From http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php
download hsfmodem-7.80.02.06full_k2.6.32_21_generic_ubuntu_i386.deb.zip
Under Linux unpack with:
$ unzip hsfmodem*.zip
Then install with:
$ sudo dpkg -i hsfmodem*.deb
Subsequently, the modem should be found with
$ sudo wvdialconf /etc/wvdial.conf
Edit in your personal information with:
$ sudo gedit /etc/wvdial.conf
and try dialing out with:
$ sudo wvdial.
See DOCs/Testing.txt for details.
The directions following below need only be pursued, if the above procedures are not adequate.
Start at http://www.linuxant.com/drivers/hsf/downloads-license.php to find the
hsfmodem package matching your System. For several Linux distros, there are
precompiled drivers matched to specific kernels. These have within the FileName,
your KernelVersion: 2.6.32_21_generic
They can be found through http://www.linuxant.com/drivers/hsf/full/downloads.php
A more precise location may be given a few paragraphs below.
If an EXACT Match with your your KernelVersion is not found, the needed drivers
will be auto compiled anyway. Alternatively, one of the
"Generic packages with source" near the bottom of the page must be used.
Downloaded packages must be moved into the Linux partition (home folder is OK)
and unzipped with:
unzip hsf*.zip
The installation command for a .deb suffic packages is, with root/adm permission:
sudo dpkg -i hsf*.deb
while for .rpm suffix it is, with:
rpm -i hsf*.rpm
Read DOCs/Conexant.txt
Writing DOCs/Conexant.txt
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.4.3
and the compiler used in kernel assembly: 4.4.3
The patch utility is needed for compiling ALSA drivers, and possibly others.
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.4
linuc_headers base folder /lib/modules/2.6.32-21-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
For guidance on FAX usage, get from http://linmodems.technion.ac.il/packages/ get faxing.tar.gz
It has samples for a modem using port /dev/ttySL0, which must be changed to match your modem's port.
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
من از این اطلاعات فهمیدم که باید فایل hsfmodem-7.80.02.06full_k2.6.32_21_generic_ubuntu_i386.deb.zip رو از http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php دانلود کنم .و چون وقتی به این صفحه روفتن فایلی با ورژن k2.6.32_21 وجود نداشت من k2.6.31_17 رو گرفتم(سوال :این کار من اشکالی نداره؟؟) .خوب این تموم .حالا رفتم تو ابونتو تا دستوراتی که در فایل ModemData که به شکل زیر هست رو اجرا کنم:
Under Linux unpack with:
$ unzip hsfmodem*.zip
Then install with:
$ sudo dpkg -i hsfmodem*.deb
Subsequently, the modem should be found with
$ sudo wvdialconf /etc/wvdial.conf
Edit in your personal information with:
$ sudo gedit /etc/wvdial.conf
and try dialing out with:
$ sudo wvdial.
که من اول ادرس فایل مورد نظر رو که تو دسکتاپ بود دادم و بعد دستور اول رو اجرا کردم یعنی این:
Under Linux unpack with:
$ unzip hsfmodem*.zip
خوب این دستور به درستی اجرا شد ومن فایل رو unzip کردم ولی وقتی به دستور دوم رسیدم چون از root باید اجرا میشد دوباره با مشکل اول یعنی درخواست پسورد مواجه شدم که نتونستم کاری بکنم و بی خیال شدم تا اینکه این پست رو دادم.
حال اول مشکل اول منو حل کنید(ممنون میشم)؟ و دوم اینکه میخوام بدونم کار هایی که برای نصب مودم میخواستم انجام بدم (که نشد) درسته یا نه ؟اگه نه , بگید درستش چه راهی هست.
جوابو اگه میتونید به ایمیل hamedkhandar[at]gmail[dot]com بفرستید یه اینکه همین جا جواب بدید .خیلی ممنونم.
-----------------------------------------------------
با هزاران تشکر از دوستان متن باز ایرانی که واقعا دارن تلاش خودشونو در حد عالی برای انتشار فرهنگ متن باز و برنامه نویسی به این شکل رو به کار بستن.[/code]
-
دوست عزيز hamedafb خوش آمديد
اولا اون قسمت كدتون رو توي تگ كد بذاريد تا پستتون درست بشه خيلي طولاني شده.
در مورد مشكل اولتون بايد بگم كه در اين قسمت چيزي رو كه شما تايپ ميكنيد قابل رويت نيست يعني وقتي اون پيغام درخواست پس اومد بايد پس رو بزنيد و enter كنيد چيزي نميبيند اگر پس درست باشه كه دستورتون اجرا ميشه اگر نه دوباره ازتون ميخواد.
در مورد مودم هم توي انجمن زياد بحث شده جستجو كنيد.
-
سلام دوستان ،
من تازه اوبونتو رو نصب کردم ، اشتباهی 2 بار تنظیمات PPPoE رو نصب کردم ! ( یوزر نیم هم اشتب شده )
کسی میتونه بهم کمک کنه که چطوری میتونم تمامی تنظیمات رو پاک کنم ؟
لطفا" خیلی آسان و قابل فهم برای یه تازه کار توضیح بدید !
ممنونم ...
سلام و خوش اومدی ;)
شما با آی پی وارد تنظیمات بشید
در قسمت advanced کانکشن های ساخته شده شما موجوده
همه را انتخاب کنید و remove کنید بعد از اول پیکر بندی کنید
اگه جواب نداد اسم و مدل کامل مودمتون رو بگذارید تا راهنماش رو بخونم ببینم چطوری میشه که بشه :D
-
اول از همه از برادر محترم آقا AliRezaiMi تشکر کنم که مشکل اولم رو حل کردن.
خوب من چند تا مشکل دیگه هم دارم که امروز باهاشون برخوردم.امیدوارم به طور دقیق بهم توضیح بدید.(من از ubuntu 10.04 استفاده میکنم)
مشکل اول:من از دستور pppconfig برای ساخت کانکشن استفاده کردم تمام مراحل رو هم انجام دادم ولی در این روش به دو مشکل بر خوردم اولی مربوط به شناسایی درگاه مودم هست.که وقتی دستور sudo wvdialconf /etc/wvdial.conf رو میدم به من این پیامو میده:
hamed@Softkade:~$ sudo wvdialconf /etc/wvdial.conf
sudo: wvdialconf: command not found
میشه دلیلشو توضیح بدین و راه حلی برای حل این مشکل بهم بدین؟؟؟؟؟؟؟؟؟؟؟؟
مشکل دوم:من برای مشکل اول یه پورتی رو همین طوری بهش دادم( که نمیدونم درسته یا غلط)بعد مراحل رو طی کردم و یه کانکشن ساختم بعد برای کانکت شدن دستور pon hamed رو دادم ولی با پیام زیر روبرو شدم:
hamed@Softkade:~$ pon hamed
Error: only members of the 'dip' group can use this command.
خوب میشه توضیح بدید این ارور چیه و باید از کجا حلش کرد؟؟؟؟؟؟؟؟؟؟؟؟؟
مشکل سوم: من میخوام از روش گرافیکی gnome-ppp به اینترنت متصل بشم .خوب چون این برنامه روی ununtu 10.04 نصب نبود باید با دستور sudo apt-get install gnome-ppp نصبش میکردم و وقتی دستور رو اجرا کردم با پیام زیر روبرو شدم:
hamed@Softkade:~$ sudo apt-get install gnome-ppp
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package gnome-ppp
hamed@Softkade:~$
خوب از این ارور معلومه که پکیج برنامه رو پیدا نکرده .خوب برای حل این مشکل باید چیکار کنم؟؟؟؟؟؟؟؟؟؟؟
در صورتی که باید به صورت دستی نصب کنم لینک دانلود نرم افزار و مراحل دقیق نصبشو بهم بدید(من گشتم لینک دانلود اصلی خود ununtu خرابه) پس خواهشن کمکم کنید؟؟؟؟؟؟؟؟؟؟؟؟؟
مشکل چهارم : این مشکل مثل مشکل قبله فقط برای دستور wvdial .ارور زیر رو میده:
hamed@Softkade:~$ sudo apt-get install wndial
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package wndial
hamed@Softkade:~$
خوب این ارور رو چطور برطرف کنم؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟
چند نکته ی مهم:
من کل اینترنت رو به مدت یک هفته برای مشکل وصل شدن به اینترنت در ابونتو گشتم ولی هنوز تو ارزوی وصل شدن به اینترنت در ابونتو موندم پس خواهشن هر جوری که میتونید بهم کمک کنید.دیگه دورم گریه میوفتم :'( :'( :'( :'( :'( :'( :'( :'( :'( :'(
بعد اینکه من یه سوال دارم .اخه این برنامه نویسان ابونتو یک چیز به این مهمی رو چرا روش بیشتر کار نکردن که این چنین مشکلاتی پیش نیاد.خوب مثلا gnome ppp رو به صورت پیش فرض نصب میکردن. یا بخش networking رو تو ubuntu 10.04 قرار میدادن که ندادن.اخه چرا؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟ >:( >:( >:( >:( >:( >:( :'( :'( :'( :'( :'( :'(
خواهشن یه کاری کنید که این لینوکس رو بی خیال نشم چون خیلی بهش نیاز دارم .
-
سلام و خوش اومدی
مشکل اول : شما اصلا wvdial رو نصب نکردی و وقتی نصبش کنی درست میشه
مشکل دوم : شما یه sudo قبل دستور بگذار تا با اجازه کاربر ریشه برنامه رو به راحتی اجرا کنه
مشکل سوم و چهارم هم با اجرای دستور زیر درست میشه sudo apt-get update
ولی نمی تونی این دستور رو اجرا کن چون دسترسی به اینترنت نداری
پس چیکار میکنی ؟
اول از لینک زیر wvdial و پیش نیاز هاش رو نصب میکنی
http://packages.ubuntu.com/lucid/wvdial
بعد با wvdial به اینترنت وصل میشی ( البته باید قبلش sudo بگذاری )
بعد دستور زیر را برای آپدیت اجرا میکنی
sudo apt-get update
الان با دستور sudo apt-get install gnome-ppp این برنامه هم به راحتی نصب میشه
پانوشت : شما دستور آخری برای نصب wvdial رو نوشتی : sudo apt-get install wndial که درستش میشه sudo apt-get install wvdial
در مورد قرار ندادن درایور مودم و همچنین نبود برنامه ها به صورت پیش فرض هم افکارات خودشون رو دارند ( مثلا یکی اینکه هر کاربر با توجه به نیاز خودش برنامه رو نصب کنه و کسی که نیاز به مودم دایال آپ نداره چه لزومی داره روی سیستمش گنوم پی پی پی نصب باشه ؟؟ ) ;)
Good Luck ;)
-
من نصب wvdial رو بلد نیستم اصلا نحوه ی نصب برنامه ها رو بلد نیستم.من تازه یه هفته هست که از لینوکس استفاده میکنم .
لطفا نحوه ی نصب wvdial رو بگید و بگید از این لینکی که دادید باید کدوم ها رو دانلود کنم و کدوم رو چطوری و با چه دستوری نصب کنم؟؟؟؟؟
ممنون.
-
سلام من wvdial رو تونستم نصب کنم ولی با دستور sudo wvdial با پیام زیر مواجه شدم :
hamed@Softkade:~$ sudo wvdial
--> WvDial: Internet dialer version 1.60
--> Initializing modem.
--> Sending: ATZ
--> Sending: ATQ0
--> Re-Sending: ATZ
--> Modem not responding.
خوب چیکار کنم با این مشکل؟؟؟؟؟؟؟؟؟
راستی من میخوام فایل /etc/wvdial.conf رو حذف کنم و دوباره با دستور sudo wvdialconf /etc/wvdial.conf اون رو پیکربندی کنم.
چطور باید حذفش کنم؟؟؟؟؟؟؟؟؟؟؟
سوال دوم: من میخوام gnome ppp رو نصب کنم من این برنامه رو از softpedia دانلود کردم خواستم نصبش کنم که اصلا از فایل راهنمای نصب (INSTALL) اون اصلا سر در نیاوردم برای همین برای شما این برنامه رو آپ کردم تا نحوه ی نصبش رو بگید اینم لینک دانلودش:
http://rapidshare.com/files/405754026/gnome-ppp-0.3.23.tar.bz2
به خدا دارم دیوونه میشم یکی کمکم کنه :'( :'( :'( :'( :'( :'( :'( :'( :oops: :oops: :oops: :oops: :oops: :oops:
من تو این 6 سال که با ویندوز کار کردم با نصف این ارور ها هم مواجه نشدم.خواهش خواهش خواهش کمک کنید
-
اقا شما چرا با همون pppconfig كار نميكني بنده خيلي وقت بود باهاش كار ميكردم و مشكلي هم نداشت.
آموزشش هم توي سايت هست.
در ضمن لينوكس همينه پر از ارور كه بيد رفعشون كني.نبايد خسته بشي.!
-
من با اون هم رفتم ولی بعد از تایپ دستور pon hamed هیچ پیامی نمیاد و به اینترنت هم وصل نمیشه.
من یه سوال دیگه هم بالا پرسیدم ببینید درباره ی gnome-ppp .
راستی نگفتید علت ارور بالا چیه؟
-
سلام من wvdial رو تونستم نصب کنم ولی با دستور sudo wvdial با پیام زیر مواجه شدم :
hamed@Softkade:~$ sudo wvdial
--> WvDial: Internet dialer version 1.60
--> Initializing modem.
--> Sending: ATZ
--> Sending: ATQ0
--> Re-Sending: ATZ
--> Modem not responding.
خوب چیکار کنم با این مشکل؟؟؟؟؟؟؟؟؟
راستی من میخوام فایل /etc/wvdial.conf رو حذف کنم و دوباره با دستور sudo wvdialconf /etc/wvdial.conf اون رو پیکربندی کنم.
چطور باید حذفش کنم؟؟؟؟؟؟؟؟؟؟؟
سوال دوم: من میخوام gnome ppp رو نصب کنم من این برنامه رو از softpedia دانلود کردم خواستم نصبش کنم که اصلا از فایل راهنمای نصب (INSTALL) اون اصلا سر در نیاوردم برای همین برای شما این برنامه رو آپ کردم تا نحوه ی نصبش رو بگید اینم لینک دانلودش:
http://rapidshare.com/files/405754026/gnome-ppp-0.3.23.tar.bz2
به خدا دارم دیوونه میشم یکی کمکم کنه :'( :'( :'( :'( :'( :'( :'( :'( :oops: :oops: :oops: :oops: :oops: :oops:
من تو این 6 سال که با ویندوز کار کردم با نصف این ارور ها هم مواجه نشدم.خواهش خواهش خواهش کمک کنید
شما مطمئنید مودمتون نصبه ؟
ارور wvdial چیز دیگه ای میگه
اگه مطمئن نیستید که نصب مودم تازه اول دردسره ;D
ولی اگه مودمتون intel بباشه خودم تا ته خط با هاتم و مشکل حله ;)
اگه در مورد نصب wvdial سوالی داشتید بپرسید شاید یه چیزایی بدونم
در ضمن منم تازه کارم انتظار زیاد از من نداشته باشید
تا حد توانم در خدمتتونم \\:D/
-
من با اون هم رفتم ولی بعد از تایپ دستور pon hamed هیچ پیامی نمیاد و به اینترنت هم وصل نمیشه.
من یه سوال دیگه هم بالا پرسیدم ببینید درباره ی gnome-ppp .
راستی نگفتید علت ارور بالا چیه؟
خوب یاید با sudo این دستور رو بزنید چون اجازه ندارید.
در مورد سوال دومتون (که نخوندمش چون خیلی دستای طولانیی میدید و بنده حوصله خوندن زیاد ندارم!! :D ) این یک source code هست که باید compile بشه (راه حل =توی انجمن زیاد بحث شده.)
در ضمن همه مسائل و میپرسید بهتره اول یه جستجویی توی انجمن بزنید.
-
باشه .ما اصلا فرض میکنیم من هیچ کاری نکردم من از اول چند قدم چند قدم میگم شما راهنماییم کنید.
قدم اول : شما بگید چطور تمام تنظیمات مودمی که قبلا کردم رو حذف کنم.مثلا حذف درایور ی که قبلا نصب کردم .حالا هرچی بوده؟
قدم دوم: همین طور که میدونید در مرحله ی اول باید مدل مودم و ورژن کرنل رو پیدا کنیم.من دستور رو اجرا کردم ومشخصات ModemData.txt من اینه:
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 2.6.32-21-generic
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686, Ubuntu , ALSA_version=1.0.21
Linux version 2.6.32-21-generic (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #32-Ubuntu SMP Fri Apr 16 08:10:02 UTC 2010
scanModem update of: 2010_05_29
Distrib_ID=Ubuntu
DistribCodeName=lucid
AptRepositoryStem=http://ir.archive.ubuntu.com/ubuntu/
Presently install your Linux Distributions dkms package. It provides for automated driver updates,
following upgrade of your kernel. For details see http://linux.dell.com/projects.shtml#dkms
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
Candidate PCI devices with modem chips are:
00:0b.0 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem (rev 01)
High Definition Audio cards can host modem chips.
For candidate card in slot 00:0b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:0b.0 14f1:2f00 14f1:2004 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem
Modem interrupt assignment and sharing:
11: 173 XT-PIC-XT ehci_hcd:usb1, uhci_hcd:usb3, uhci_hcd:usb4, VIA8233
--- Bootup diagnostics for card in PCI slot 00:0b.0 ----
[ 0.085103] pci 0000:00:0b.0: reg 10 32bit mmio: [0xdfff0000-0xdfffffff]
[ 0.085113] pci 0000:00:0b.0: reg 14 io port: [0xec00-0xec07]
[ 0.085162] pci 0000:00:0b.0: PME# supported from D3hot D3cold
[ 0.085171] pci 0000:00:0b.0: PME# disabled
The PCI slot 00:0b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:0b.0:
Modem chipset detected on
NAME="Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem "
CLASS=0780
PCIDEV=14f1:2f00
SUBSYS=14f1:2004
IRQ=11
IDENT=hsfmodem
Driver=hsfmodem-drivers
For candidate modem in: 00:0b.0
0780 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem
Primary device ID: 14f1:2f00
Support type needed or chipset: hsfmodem
For owners of a Dell PCs with Conexant HSF modems, a driver source package with full speed enabled is available, but requires driver compiling. Read DOCs/Conexant.txt
For all code packages from Linuxant.com, either a driver set matching the boot kernel will be installed,
or the drivers will first be compiled and then installed. The expert on modem software for Linux is
"Support (Jonathan)" <modem.support@linuxant.com>
From http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php
download hsfmodem-7.80.02.06full_k2.6.32_21_generic_ubuntu_i386.deb.zip
Under Linux unpack with:
$ unzip hsfmodem*.zip
Then install with:
$ sudo dpkg -i hsfmodem*.deb
Subsequently, the modem should be found with
$ sudo wvdialconf /etc/wvdial.conf
Edit in your personal information with:
$ sudo gedit /etc/wvdial.conf
and try dialing out with:
$ sudo wvdial.
See DOCs/Testing.txt for details.
The directions following below need only be pursued, if the above procedures are not adequate.
Start at http://www.linuxant.com/drivers/hsf/downloads-license.php to find the
hsfmodem package matching your System. For several Linux distros, there are
precompiled drivers matched to specific kernels. These have within the FileName,
your KernelVersion: 2.6.32_21_generic
They can be found through http://www.linuxant.com/drivers/hsf/full/downloads.php
A more precise location may be given a few paragraphs below.
If an EXACT Match with your your KernelVersion is not found, the needed drivers
will be auto compiled anyway. Alternatively, one of the
"Generic packages with source" near the bottom of the page must be used.
Downloaded packages must be moved into the Linux partition (home folder is OK)
and unzipped with:
unzip hsf*.zip
The installation command for a .deb suffic packages is, with root/adm permission:
sudo dpkg -i hsf*.deb
while for .rpm suffix it is, with:
rpm -i hsf*.rpm
Read DOCs/Conexant.txt
Writing DOCs/Conexant.txt
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.4.3
and the compiler used in kernel assembly: 4.4.3
The patch utility is needed for compiling ALSA drivers, and possibly others.
Minimal compiling resources appear complete:
make utility - /usr/bin/make
Compiler version 4.4
linuc_headers base folder /lib/modules/2.6.32-21-generic/build
However some compilations and executable functions may need additional files,
in the FileNames.h (so called kernel "h"eaders) collection installed in /usr/include/ .
For martian_modem, additional required packages are needed. The also required headers of package libc6 are commonly installed by default.
Compiling hsfmodem drivers does require linux-libc-dev and libc6-dev packages, for kernels 2.6.24 and later versions.
In not included on your install CD, search for them at http://packages.ubuntu.com
or comparable Repository for other Linux distros.
When compiling ALSA drivers, the utility "patch" will also be needed.
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
proxyarp
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
For guidance on FAX usage, get from http://linmodems.technion.ac.il/packages/ get faxing.tar.gz
It has samples for a modem using port /dev/ttySL0, which must be changed to match your modem's port.
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
از این متن باید بفهمیم مدل مودم و ورژن کرنل چیه .و باید چه درایوری نصب کنم. خوب مدل مودم من اینه:
NAME="Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem "
CLASS=0780
PCIDEV=14f1:2f00
SUBSYS=14f1:2004
IRQ=11
IDENT=hsfmodem
Driver=hsfmodem-drivers
For candidate modem in: 00:0b.0
0780 Communication controller: Conexant Systems, Inc. HSF 56k HSFi Modem
Primary device ID: 14f1:2f00
Support type needed or chipset: hsfmodem
و ورژن کرنل لینوکس من اینه:
your KernelVersion: 2.6.32_21_generic
خوب مشکل من دقیقا اینجاست .بعد از فهمیدن این اطلاعات باید طبق متن به ادرس http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php میرفتی و فایل hsfmodem-7.80.02.06full_k2.6.32_21_generic_ubuntu_i386.deb.zip رو از اونجا دانلود میکردی.ولی من وقتی به این صفحه رفتم درایور hsf برای ورژن کرنل 2.6.32_21_generic وجود نداشت.خوب من همین جا گیر کردم .وقتی وجود نداره من چیرو نصب کنم؟
خواهشن بگید باید چیکار کنم .مثلا میشه این درایور رو از جای دیگه گرفت یا هر کاری که بشه درایور مودم به درستی نصب کرد .خواهش میکنم این پیام منو به دقت بخونید و یه راه حل درست و منطقی بهم بدید.ممنون میشم.من منتظرم.
-
متاسفانه هنوز هم لوسید رو به لیست اضافه نکرده
مودم دایال آپ من خیلی راحت نصب میشد و واسه همین زیاد در این زمینه دغدغه نداشتم و متاسفانه اطلاعاتم کامل نیست ولی توی یک از صفحات http://www.linuxant.com مطلبی برای مودم های hsf نظرم رو به خودش جلب کرد
http://www.linuxant.com/drivers/hsf/downloads-installer.php
توی صفحه بالا یه نصاب رو قرار داده
قسمت How to detect the modem and install the driver using the installer رو مطالعه کن
اگه مشکلی بود ، بتونم کمکی کنم خوشحال میشم ( از منه تازه کار زیاد انتظار نداشته باشید ولی نهایت سعی خودم رو میکنم دوست من ;D)
برای حذف درایور هم دستور دقیقش رو نمیدونم ولی از توی synaptic دنبال اسمش بگردی حتما پیدا میکنی و از اونجا میتونی حذفش کنی ;)
-
شما میتونید سورس مودم hsf رو دانلود کنید و از روی سورس نصب کنید . چون منم اوبونتو ۱۰.۰۴ دارم و از همین روش به راحتی مودمو نصب کردم .
-
شما میتونید سورس مودم hsf رو دانلود کنید و از روی سورس نصب کنید . چون منم اوبونتو ۱۰.۰۴ دارم و از همین روش به راحتی مودمو نصب کردم .
علی جان خیلی خوشحالم که اینو میشنوم چون خودم هم یه همچین چیزی تو ذهنم بود ولی ترسیدم بگم چون راهش رو درست بلد نبودم
لطف میکنی لینکش دانلود درایور مودم رو برای دوستموم و نحوه نصبش رو بگی ;) تا من هم یه چیز جدیدی یاد بگیرم
خیلی خیلی ممنون
-
چشم .
دوست عزیز اول شما به این صفحه برید : http://www.linuxant.com/drivers/hsf/full/downloads.php
بعد این سورس رو دانلود کنید : hsfmodem-7.80.02.06full.tar.gz
بعد از اکسترکت اون این دستور رو بزنید : sudo make install
بعد : sudo hsfconfig
سپس : sudo pppconfig
و در پایان : sudo pon X
که به جای X اسم کانکشنتون رو مینویسید .
** تمامی این دستورها توی ترمینال باید نوشته بشه .
** اگر مشکلی بود در حد توان در خدمتیم .
-
چشم .
دوست عزیز اول شما به این صفحه برید : http://www.linuxant.com/drivers/hsf/full/downloads.php
بعد این سورس رو دانلود کنید : hsfmodem-7.80.02.06full.tar.gz
بعد از اکسترکت اون این دستور رو بزنید : sudo make install
بعد : sudo hsfconfig
سپس : sudo pppconfig
و در پایان : sudo pon X
که به جای X اسم کانکشنتون رو مینویسید .
** تمامی این دستورها توی ترمینال باید نوشته بشه .
** اگر مشکلی بود در حد توان در خدمتیم .
+1 علی جان ;)
-
سلام خیلی ممنون از راهنمایی علی جان. من تمام مراحل رو با موفقیت انجام دادم .البته در یه مرحله بهم سریال داد و از من کد اکتیو خواست که با یه سرچ برنامشو دانلود کردم و کد اکتیو رو گرفتم دادم و درست شد.البته می خواستم تمام پیام ها رو اینجا بزارم تا مطمئن بشم درست رفتم مراحل رو. برای همین تو فایل text ذخیره کردم ولی وقتی اومدم تو ویندوز بازش کردم بیشترش نبود برای همین دیگه نمیتونم بذارم.
خب بعد از این رفتم از طریق pppconfig وصل بشم .طبق معمول وقتی sudo pon hamed رو زدم هیچ چی نیومد .برای همین از طریق wvdial رفتم .
اول دستور sudo wvdialconf /etc/wvdial.conf رو زدم که پیام زیر رو داده که فک کنم از پیام معلومه که اسکن درست انجام شده و پورت مودم درست شناسایی شده.حالا شما هم برای اطمینان یه نگا بنداز:
hamed@Softkade:~$ sudo wvdialconf /etc/wvdial.conf
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
Modem Port Scan<*1>: Scanning ttySHSF0 first, /dev/modem is a link to it.
ttySHSF0<*1>: ATQ0 V1 E1 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 Z -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
ttySHSF0<*1>: Modem Identifier: ATI -- 56000
ttySHSF0<*1>: Speed 4800: AT -- OK
ttySHSF0<*1>: Speed 9600: AT -- OK
ttySHSF0<*1>: Speed 19200: AT -- OK
ttySHSF0<*1>: Speed 38400: AT -- OK
ttySHSF0<*1>: Speed 57600: AT -- OK
ttySHSF0<*1>: Speed 115200: AT -- OK
ttySHSF0<*1>: Speed 230400: AT -- OK
ttySHSF0<*1>: Speed 460800: AT -- OK
ttySHSF0<*1>: Max speed is 460800; that should be safe.
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan<*1>: S1 S2 S3 SHSF1 SHSF2 SHSF3 SHSF4 SHSF5
Modem Port Scan<*1>: SHSF6 SHSF7
Found a modem on /dev/ttySHSF0, using link /dev/modem in config.
Modem configuration written to /etc/wvdial.conf.
ttySHSF0<Info>: Speed 460800; init "ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0"
hamed@Softkade:~$
بعد دستور sudo gedit /etc/wvdial.conf رو زدم و یوزر و پس و شماره اتصال رو دادم و save کردم و خارج شدم.
بعد دستور sudo wvdial رو زدم که به اینترنت وصل شم که با ارور The PPP daemon has died. (exit code = 2) مواجه شدم.دیگه داشتم منفجر میشدم.از عصبانیت میخواستم بزنم کیس رو له کنم که باز چون مادر اونجا بود خودمو کنترل کردم. بعد پیامو ذخیره کردم که بهتون نشون بدم ببینید مشکل چیه.این هم پیام:
hamed@Softkade:~$ sudo wvdial
--> WvDial: Internet dialer version 1.60
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
OK
--> Modem initialized.
--> Sending: ATDT9712230
--> Waiting for carrier.
ATDT9712230
CONNECT 460800
--> Carrier detected. Waiting for prompt.
~[7f]}#@!}!j} }9}"}&} }*} } }#}%B# }%}&7A}2[04]}'}"}(}")[7f]~
--> PPP negotiation detected.
--> Starting pppd at Mon Jul 12 13:05:56 2010
--> Pid of pppd: 5700
--> Disconnecting at Mon Jul 12 13:05:57 2010
--> The PPP daemon has died: pppd options error (exit code = 2)
--> man pppd explains pppd error codes in more detail.
--> I guess that's it for now, exiting
--> The PPP daemon has died. (exit code = 2)
hamed@Softkade:~$
بفرما.خوب مشکل چیه ؟میدونم که مشکل از کارت اینترنت نیست چون با یه کارت اینترنت دیگه امتحان کردم اونم این پیامو داد.
اصلا این ارور 2 یا(exit code = 2) برای چیه و چطور میشه حلش کرد؟؟؟؟؟؟؟؟؟؟؟؟؟؟ :'( :'( :'(
-------------------------------------------------
(متن پایین رو به سبک راز بقا بخونید)
خوب نزدیک به دو هفته گذشته و این جوان با وجود تلاش فراوان و کار بی وقفه هنوز نتوانسته در لینوکس ubuntu 10.04 به اینترنت متصل شود.حالا این سوال در اینجا پشت در را میکوبد که آیا سرانجام
--------------
پیام های بازرگانی شبکه "آرزو بر جوانان عیب نیست"
---------بعد 6 دقیقه----------
پایان پیام های بازرگانی
--------------
این جوان به ارزوی دیرینه خود یعنی اینترنت در لینوکس میرسد یا باید این آرزو را هم مثل آرزو های دیگرش بگذارد داخل قوری بگذارد تا دم بکشد؟
(ادامه این مستند هیجان انگیز را در قسمت بعد ببینید)
-
سلام
دوباره دست کاری کردم یه ارور دیگه داد .ارور اینه:
hamed@Softkade:~$ wvdial
--> WvDial: Internet dialer version 1.60
--> Cannot set information for serial port.
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
OK
--> Modem initialized.
--> Sending: ATDT9713242
--> Waiting for carrier.
ATDT9713242
CONNECT 115200
User Access Verification
Username:
--> Carrier detected. Waiting for prompt.
Username:
--> Looks like a login prompt.
--> Sending: 1
1
Password:
--> Looks like a password prompt.
--> Sending: (password)
% Authentication failed.
Username:
--> Looks like a login prompt.
--> Sending: 1
1
Password:
--> Looks like a password prompt.
--> Sending: (password)
% Authentication failed.
--> Don't know what to do! Starting pppd and hoping for the best.
--> Unable to run /usr/sbin/pppd.
--> Check permissions, or specify a "PPPD Path" option in wvdial.conf.
--> Don't know what to do! Starting pppd and hoping for the best.
--> Unable to run /usr/sbin/pppd.
--> Check permissions, or specify a "PPPD Path" option in wvdial.conf.
--> Don't know what to do! Starting pppd and hoping for the best.
--> Unable to run /usr/sbin/pppd.
--> Check permissions, or specify a "PPPD Path" option in wvdial.conf.
--> Don't know what to do! Starting pppd and hoping for the best.
--> pipe failed: Too many open files
hamed@Softkade:~$
از این فهمیدم که pppd یه مشکلی داره حالا نمیدونم چی.میشه بگید برای چیه و باید چطور حلش کرد؟؟؟؟؟؟/
----------------------------
خواهشن جواب بدید من از ساعت 2 بعد از ظهر تا حالا منتظر یه جوابم بابا .خواهشن :'( :'( :'( :'(
-
ببینید من تا حالا از wvdial استفاده نکردم چون با pppconfig راحت وصل شدم. ببینید پورت مودم شما ttySHSF0 هست که در زمانی که شما دستور sudo pppconfig میزنید بعد از انتخاب گزینه Create Create a connection و انتخاب یک اسم برای کانکشنتون و انتخاب گزینه Dynamic Use dynamic DNS و انتخاب گزینه اول و نوشتن username و سپس password ، و طی کردن چند مرحله دیگه شما باید به جای پورت پیشفرضی که برای مودمتون نوشته پورت بالا رو وارد کنید .
*** امیدوارم متوجه منظورم شده باشید چون خودمم نفهمیدم .
-
اتفاقا من هم همین کار رو کردم ولی بعد دستور کانکت هیچی نیومد.
خوب اگه شما دلیل ارور بالا رو نمیدونید یه دوست دیگه بهم بگه؟
راستی وقتی sudo wvdial رو میزنم The PPP daemon has died. (exit code = 2) میده
و وقتی wvdial رو میزنم ارور پیام آخرم میاد.
جه باید کرد؟؟؟؟؟؟؟؟؟؟؟؟؟؟
-
این که میگه خطا هنگام Authenticate یا به عبارتی رمز و نام کاربری غلطه!
Password:
--> Looks like a password prompt.
--> Sending: (password)
% Authentication failed.
-
همونجور که فرود جان گفت عیب از یوزر و پس میتونه باشه
شما از اینترنت های هوشمندی که نیازی به یوزر و پس نداره استفاده کن
نکته : اگه wvdial گیر داد که یوزر و پس باید باشه تا کانکت بشه دو تا عدد الکی به جای یوزر و پس بزن مثل 1 بزن و سعی کن دو مرتبه کانکت بشی ;)
-
آقا شما اصلا پیام زیر رو بیخیال شو:
سلام
دوباره دست کاری کردم یه ارور دیگه داد .ارور اینه:
hamed@Softkade:~$ wvdial
--> WvDial: Internet dialer version 1.60
--> Cannot set information for serial port.
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
OK
--> Modem initialized.
--> Sending: ATDT9713242
--> Waiting for carrier.
ATDT9713242
CONNECT 115200
User Access Verification
Username:
--> Carrier detected. Waiting for prompt.
Username:
--> Looks like a login prompt.
--> Sending: 1
1
Password:
--> Looks like a password prompt.
--> Sending: (password)
% Authentication failed.
Username:
--> Looks like a login prompt.
--> Sending: 1
1
Password:
--> Looks like a password prompt.
--> Sending: (password)
% Authentication failed.
--> Don't know what to do! Starting pppd and hoping for the best.
--> Unable to run /usr/sbin/pppd.
--> Check permissions, or specify a "PPPD Path" option in wvdial.conf.
--> Don't know what to do! Starting pppd and hoping for the best.
--> Unable to run /usr/sbin/pppd.
--> Check permissions, or specify a "PPPD Path" option in wvdial.conf.
--> Don't know what to do! Starting pppd and hoping for the best.
--> Unable to run /usr/sbin/pppd.
--> Check permissions, or specify a "PPPD Path" option in wvdial.conf.
--> Don't know what to do! Starting pppd and hoping for the best.
--> pipe failed: Too many open files
hamed@Softkade:~$
از این فهمیدم که pppd یه مشکلی داره حالا نمیدونم چی.میشه بگید برای چیه و باید چطور حلش کرد؟؟؟؟؟؟/
----------------------------
خواهشن جواب بدید من از ساعت 2 بعد از ظهر تا حالا منتظر یه جوابم بابا .خواهشن :'( :'( :'( :'(
این به خاطر اینکه تنها از wvdial استفاده کردم و نه sudo wvdial.یا یوزر و پس به قول شما اشتباه دادم.
جواب این پیام منو بده :
سلام خیلی ممنون از راهنمایی علی جان. من تمام مراحل رو با موفقیت انجام دادم .البته در یه مرحله بهم سریال داد و از من کد اکتیو خواست که با یه سرچ برنامشو دانلود کردم و کد اکتیو رو گرفتم دادم و درست شد.البته می خواستم تمام پیام ها رو اینجا بزارم تا مطمئن بشم درست رفتم مراحل رو. برای همین تو فایل text ذخیره کردم ولی وقتی اومدم تو ویندوز بازش کردم بیشترش نبود برای همین دیگه نمیتونم بذارم.
خب بعد از این رفتم از طریق pppconfig وصل بشم .طبق معمول وقتی sudo pon hamed رو زدم هیچ چی نیومد .برای همین از طریق wvdial رفتم .
اول دستور sudo wvdialconf /etc/wvdial.conf رو زدم که پیام زیر رو داده که فک کنم از پیام معلومه که اسکن درست انجام شده و پورت مودم درست شناسایی شده.حالا شما هم برای اطمینان یه نگا بنداز:
hamed@Softkade:~$ sudo wvdialconf /etc/wvdial.conf
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
Modem Port Scan<*1>: Scanning ttySHSF0 first, /dev/modem is a link to it.
ttySHSF0<*1>: ATQ0 V1 E1 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 Z -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 -- OK
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
ttySHSF0<*1>: Modem Identifier: ATI -- 56000
ttySHSF0<*1>: Speed 4800: AT -- OK
ttySHSF0<*1>: Speed 9600: AT -- OK
ttySHSF0<*1>: Speed 19200: AT -- OK
ttySHSF0<*1>: Speed 38400: AT -- OK
ttySHSF0<*1>: Speed 57600: AT -- OK
ttySHSF0<*1>: Speed 115200: AT -- OK
ttySHSF0<*1>: Speed 230400: AT -- OK
ttySHSF0<*1>: Speed 460800: AT -- OK
ttySHSF0<*1>: Max speed is 460800; that should be safe.
ttySHSF0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 -- OK
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan<*1>: S1 S2 S3 SHSF1 SHSF2 SHSF3 SHSF4 SHSF5
Modem Port Scan<*1>: SHSF6 SHSF7
Found a modem on /dev/ttySHSF0, using link /dev/modem in config.
Modem configuration written to /etc/wvdial.conf.
ttySHSF0<Info>: Speed 460800; init "ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0"
hamed@Softkade:~$
بعد دستور sudo gedit /etc/wvdial.conf رو زدم و یوزر و پس و شماره اتصال رو دادم و save کردم و خارج شدم.
بعد دستور sudo wvdial رو زدم که به اینترنت وصل شم که با ارور The PPP daemon has died. (exit code = 2) مواجه شدم.دیگه داشتم منفجر میشدم.از عصبانیت میخواستم بزنم کیس رو له کنم که باز چون مادر اونجا بود خودمو کنترل کردم. بعد پیامو ذخیره کردم که بهتون نشون بدم ببینید مشکل چیه.این هم پیام:
hamed@Softkade:~$ sudo wvdial
--> WvDial: Internet dialer version 1.60
--> Initializing modem.
--> Sending: ATZ
ATZ
OK
--> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
OK
--> Modem initialized.
--> Sending: ATDT9712230
--> Waiting for carrier.
ATDT9712230
CONNECT 460800
--> Carrier detected. Waiting for prompt.
~[7f]}#@!}!j} }9}"}&} }*} } }#}%B# }%}&7A}2[04]}'}"}(}")[7f]~
--> PPP negotiation detected.
--> Starting pppd at Mon Jul 12 13:05:56 2010
--> Pid of pppd: 5700
--> Disconnecting at Mon Jul 12 13:05:57 2010
--> The PPP daemon has died: pppd options error (exit code = 2)
--> man pppd explains pppd error codes in more detail.
--> I guess that's it for now, exiting
--> The PPP daemon has died. (exit code = 2)
hamed@Softkade:~$
بفرما.خوب مشکل چیه ؟میدونم که مشکل از کارت اینترنت نیست چون با یه کارت اینترنت دیگه امتحان کردم اونم این پیامو داد.
اصلا این ارور 2 یا(exit code = 2) برای چیه و چطور میشه حلش کرد؟؟؟؟؟؟؟؟؟؟؟؟؟؟ :'( :'( :'(
-------------------------------------------------
(متن پایین رو به سبک راز بقا بخونید)
خوب نزدیک به دو هفته گذشته و این جوان با وجود تلاش فراوان و کار بی وقفه هنوز نتوانسته در لینوکس ubuntu 10.04 به اینترنت متصل شود.حالا این سوال در اینجا پشت در را میکوبد که آیا سرانجام
--------------
پیام های بازرگانی شبکه "آرزو بر جوانان عیب نیست"
---------بعد 6 دقیقه----------
پایان پیام های بازرگانی
--------------
این جوان به ارزوی دیرینه خود یعنی اینترنت در لینوکس میرسد یا باید این آرزو را هم مثل آرزو های دیگرش بگذارد داخل قوری بگذارد تا دم بکشد؟
(ادامه این مستند هیجان انگیز را در قسمت بعد ببینید)
اگر به این پیام دقت کنی می بینی یه ثانیه به اینترنت وصل شد و دوباره قطع شد و بعد اررور The PPP daemon has died: pppd options error (exit code = 2) داد:
--> PPP negotiation detected.
--> Starting pppd at Mon Jul 12 13:05:56 2010
--> Pid of pppd: 5700
--> Disconnecting at Mon Jul 12 13:05:57 2010
--> The PPP daemon has died: pppd options error (exit code = 2)
--> man pppd explains pppd error codes in more detail.
--> I guess that's it for now, exiting
--> The PPP daemon has died. (exit code = 2)
من میدونم اشکال از PPPD هست ولی نمیدونم چطور حلش کنم همین.از شما خواهش میکنم بهم بگید؟؟؟؟؟؟؟؟؟؟
من فقط از شما جواب راه گشا میخوام همین.خیلی ممنون!!!!!!!!! :'( :'( :'( :'(
-
Found a modem on /dev/ttySHSF0, using link /dev/modem in config.
Modem configuration written to /etc/wvdial.conf.
شما اینکاری که دستور بالا گفته کردی ؟
یه کاری بکن شما محتویاتwvdial.conf هم بگذار اینجا
بازم میگم من دایال آپ ندارم واسه همین زیاد سر در نمیارم :'(
-
فایل /etc/wvdial.conf رو باز کن. اگه این خط توش نبود، اضافه کن.
Stupid mode = Yes
اگه کامنت شده بود یعنی اولش ; داشت هم اضافه کن.
-
khodaye man,khodaye man,khodaye man,bavaram nemishe be internet vasle shodam ,aslan bavar nakardanie.
bavar konid inghadar khoshhalam ke had nadare,hamon aval ke be internet vasle shodam omadam be siteton,khastam payame bedam ke didam zaban Farsi nasb nist .khob raftam zaban farsi ro nasbe khonam ,bad 30 daghighe motavajeh shodam ye 2 saati tole mikeshe ke nasb beshe,vali chon mikhastam har che zodtar in payamo bedam dige nasbo bikhiale shodam,omadam in payamo neveshtam.
alan ham miram to windows migam chikare kardam ke doros shod ,ke dostan dige ham estefade khonan.
:) ;) :D ;D \\:D/ :) ;) :D ;D \\:D/
-
2 ساعت!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! :o ](*,)
کمتر از 30 ثانیه...
http://wiki.ubuntu.ir/UbuntuPersianSupport#head-3dc5b804ec6373d5477f406205ca650a7586d42d
-
.khob raftam zaban farsi ro nasbe khonam ,bad 30 daghighe motavajeh shodam ye 2 saati tole mikeshe ke nasb beshe,vali chon mikhastam har che zodtar in payamo bedam dige nasbo bikhiale shodam,omadam in payamo neveshtam.
شما احتمالا داشتین Language Pack نصب می کردید. برای فارسی تایپ کردن این کارا لازم نیست.
-
man pppd
کد خطا ۲:
An error was detected in processing the options given, such as
two mutually exclusive options being used.
به عبارتی خطا برمیگرده به تنظیماتی که انجام دادی. مثلا دو تا Option که با هم جور نیستن استفاده کردی.
-
حتما یه حل شد بزن رو اسم تاپیک و کامل چگونگی حل مشکل رو توضیح بده تا بقیه دوستان نیز استفاده کنند .
موفق باشید .
ویرایش :
اصلا یادم نبود اینجا تاپیک آموزشه .
-
آقا سامان درست میگه داشتم Language Pack رو دانلود میکردم.اول چند تا تشکر بکنم :
از علی جان بخاطر راهنماییشون برای نصب مودم.و واقعا ازشون ممنونم.
از ایمان جان بخاطر راهنمایی هایی که کردن.
از مهدی جان بخاطر لینک اضافه کردن فارسی به کیبورد.
خوب حالا میگم چطور کانکت شدم :
اول از همه با راهنمایی علی جان مودم رو نصب کردم .
چشم .
دوست عزیز اول شما به این صفحه برید : http://www.linuxant.com/drivers/hsf/full/downloads.php
بعد این سورس رو دانلود کنید : hsfmodem-7.80.02.06full.tar.gz
بعد از اکسترکت اون این دستور رو بزنید : sudo make install
بعد : sudo hsfconfig
سپس : sudo pppconfig
و در پایان : sudo pon X
که به جای X اسم کانکشنتون رو مینویسید .
** تمامی این دستورها توی ترمینال باید نوشته بشه .
** اگر مشکلی بود در حد توان در خدمتیم .
بعد ابتدا رفتم با pppconfig کانکت شم.که طبق معمول نشد.بعد wvdial رو نصب کردم و بعد تنظیمات wvdial رو انجام دادم ولی همین طور که در بالا گفتم با wvdial کانکت نشدم ایمان جان هم که گفته بودن اینو انجام دادی:
Found a modem on /dev/ttySHSF0, using link /dev/modem in config.
Modem configuration written to /etc/wvdial.conf.
این خودش( /dev/modem ) تو wvdial.conf بوده.
بعد رفتم gnome-ppp رو نصب کردم البته احتمال میدادم که gnome-ppp هم وصل نشه چون از wvdial استفاده میکرد.و همین طور هم شد و وصل نشد.بعد به فکر حرف علی جان افتادم که گفتن با pppconfig کانکت شدن.من هم رفتم سروقت اون .اول هر چی تنظیمات تو pppconfig انجام دادم رو حذف کردم .بعد دوباره یه کانکشن ساختم .ولی تو این کانکشن یه کاری کردم تو قسمت که باید /dev/ttySHSF0 رو وارد میکردی من /dev/modem رو وارد کردم بعد که با دستور sudo pon hamed رفتم صدای وصل شدن به اینترنت در اومد که اصلا باورم نمیشد که صدای خودشه.البته این نکته رو بگم که چون سه شنبه ها همیشه برام روز خوبی بوده و نمیدونم چرا ولی خودبه خود تو این روز خوشحالم ،برای همین صبح زود شروع به کار کردم و تا ظهر تونستم حلش کنم و خوشحالیم به طور کامل تکمیل شد. :) :) ;D ;D ;) ;) ;) :D :D :D
(ببخشید که سرتونو درد آوردم)
با تشکر از همه
-----------------------------------
:D :D :D :D :D :D
(به سبک راز بقا بخونید)
ادامه برنامه از شبکه "آرزو بر جوانان عیب نیست"
بله خوب اگر این برنامه را با ما دنبال کرده باشید متوجه شدید که حامد آخر به آرزوی" اینترنت در لینوکس "رسیده و خوشبختانه دیگر نیازی نیست این آرزو را داخل قوری بگذارد تا دم بکشد .با تشکر از شما .
منتظر مستند های جذاب بعدی ما باشید.
:D :D :D :D :D :D
-----------------------------------
-
من واقعا از شما معذرت میخوام به خاطر تشخیص نادرست پورت اتصال به اینترنتتون که شما ارو اینقدر اذیت کرد .
با عرض پوزش
-
نه.اصلا این حرف رو نزنید اگه راهنمایی شما نبود که اصلا به این مرحله نمیرسیدم که بخوام پورت رو دست کاری کنم.واقعا ازتون ممنونم.
و همچنین از تمامی دوستان به خاطر راهنماییهاشون.
-
نصب مودم و برقراری ارتباط با اینترنت در توزیعهای خانواده اوبونتو گنو/لینوکس
از آنجایی که نصب مودم در اوبونتو یا هر گنو/لینوکس دیگر جزو اولین مشکلاتی است که یک کاربر ایرانی با آن مواجه میشود، در این انجمن نیز تصمیم گرفته شد تا بخشی خاص به سوالات و جوابها و راهنماییها در خصوص نصب انواع مودم در اوبونتو اختصاص یابد.
راهنمای جامع نصب مودم و برقراری اتصال به اینترنت (http://wiki.ubuntu.ir/DialupModemHowto)
از کلیه کاربران محترم درخواست میکنیم پیش از باز کردن یک عنوان و طرح پرسشی جدید در رابطه با مودم این نوشتار و سایر پرسش و پاسخها را مطالعه نموده و سپس اقدام به طرح مسئله نمایند.
با تشکر
:)
-
سلام به همگی !
من تازه کارم و یکمی هم گیج تشریف دارم لطفا یکی کمک کنه مودم وایرلسم رو نصب کنم ! وایرلس من linksys wmp300n هستش !
-
اینجا رو ببین
http://ubuntuforums.org/showthread.php?t=539208
-
سلاممن ابونتو 10.4 64bit نصب کردم و مودم من هم HCF هست فایل سورس رو از اینترنت گرفتم و نصب کردم و وقتی اومدم کانفیگ کنم این پیغام رو میده لطفا کمکم کنید
sajad@sajad:~$ sudo hcfpciconfig
[sudo] password for sajad:
Conexant HCF controllerless PCI modem driver, version 1.21full
If you need license keys, assistance or more information, please go to:
http://www.linuxant.com/
When reporting a problem for the first time, please send
us the file generated by "hcfpciconfig --dumpdiag".
No pre-built modules for: Ubuntu-Kubuntu-10.04 linux-2.6.32-21-generic x86_64-SMP
Trying to automatically build the driver modules...
(this requires a C compiler and proper kernel sources to be installed)
Where is the linux source build directory that matches your running kernel?
[/lib/modules/2.6.32-21-generic/build] y
WARNING: missing file y/include/linux/autoconf.h
The cause of this is usually a missing or unconfigured
kernel source tree (and sometimes an incorrect directory or symbolic link).
First, ensure that the proper kernel source and compiler packages
from your distribution vendor and/or the community are installed.
The Linux kernel can then be reconfigured by running "make menuconfig"
under the kernel source directory (usually /usr/src/linux).
Verify that the proper options for your system are selected.
Then compile and install your new kernel (for more information about
this procedure, see the README file under the kernel source directory),
reboot the system using the new kernel, and re-run "hcfpciconfig".
sajad@sajad:~$
-
سلام آقا بی زحمت یکی هم کمک ما بکنه پست 8 اینجا http://forum.ubuntu.ir/index.php/topic,14391.0.html خیلی خیلی مرسییییییییییییییییی
-
دوستان من می خوام از طریق مودم dial up به اینترنت وصل بشم .
تمام مراحل رو درست انجام دادم اما زمانی که می خوام gnome-ppp رو نصب کنم این پیغام ظاهر میشه : "couldn't find package gnome-ppp"
لطفا بنده رو راهنمایی بفرمایید
-
شما برای اجرای این دستور 2 تا پیش نیاز دارید
1 : اتصال به اینترنت
2 : صدور دستور sudo apt-get update
و چنانچه اتصال به نت ندارید بهتره توسط wvdial متصل بشد
wvdial به این دلیل پیشنهاد میشه چون پیش نیاز های کمتری داره ، از اون طریق به نت وصل میشی و بعدش gnome-ppp رو مینصبی
حالا میتونی از محیط ویندوز که به نت دسترسی داری wvdial رو با وابستگی هاش دانلود کنی
-
سپاس فراوان از eMan
طبق فرمایش شما wvdial رو دانلود کردم اما در قسمتی که باید package رو نصب کنی این wvdial در قسمت نصب نشده هاست و نمیشه اونو نصب کرد.
حالا دوباره مشکل برجاست wvdial رو نشد نصب کنم . راه دیگه ای هم هست یا اینکه من روی همین wvdial تمرکز کنم ؟
کلا می خوام کامپایلر لیسپ رو در لینوکس نصب کنم . برای نصب اون باید به اینترنت وصل بشم تا سایت سازنده نصب کامپایلر رو تایید کنه .
حالا لینوکسی که راحت بشه بااون به اینترنت وصل شد هست یا اینکه همین اوبونتو بهترینه؟
بازم تشکر
-
این Wvdial به علاوه تمام پیش نیاز ها
http://packages.ubuntu.com/maverick/wvdial
بعد همه این چند تا فایل رو میریزی توی یه فولدر و با هم نصبشون میکنی
sudo dpkg -i *.deb
راستی قبلش بگم که شما درایور مودمتون رو نصب کردید ؟
-
باز هم تشکر
عرض کنم که اگه مراد از درایو مودم اون فایل scan modem بله اونو نصب کردم .واگه نیست نه نصب نکردم .
کل کارهایی که انجام دادم (به اختصار ):
نصب scan modem
انتخاب نوع ارتباط در قسمت network
اجرای دستورات sudo pppconfig برای ساخت کانکشن از طریق terminal
سعی در نصب gnome-ppp ( شما فرمودید wvdial رو اول باید نصب کرد که این رو دانلود کرده بودم از همین لینکی که شما زحمت کشید و فرستادید )
سعی در نصب wvdial ( که تا الان نا کام مانده )
در ضمن من از ubuntu8.04 استفاده می کنم .
یه سوال اضافی به جز آبانتو کدوم لینوکس ها X windows رو پشتیبانی می کنند ؟
-
سلام به دوستان گل . اگر کسی راخ حلی برای این مشکل داره بفرماید . من قبلا توی اوبونتو مودم دیال آپم رو مثل پشمک نصب میکردم ، اما حالا توی اپن سوزه 11.2 به سختی مودم نصب شد ، اما چون pppconfig نداره و من هم برای سوزه این ابزار رو پیدار نکردم به wvdial متوصل شدم که همونطور که میبینید دست رد به سینه ما زده . اگه کسی روشی داره همینجوری راه حلش رو بگه و اگر نه اگه کسی بسته rpm یا سورس pppconfig رو داره به ما بده و گرنه برگردی همون اوبونتو . ممنون .
///****** wvdialconf /etc/wvdial.conf *********///
rclord-pc:~ # wvdialconf /etc/wvdial.conf
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
Modem Port Scan<*1>: Scanning ttySHSF0 first, /dev/modem is a link to it.
ttySHSF0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttySHSF0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttySHSF0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan<*1>: S1 S2 S3 S4 S5 S6 S7 SHSF1
Modem Port Scan<*1>: SHSF2 SHSF3 SHSF4 SHSF5 SHSF6 SHSF7
Sorry, no modem was detected! Is it in use by another program?
Did you configure it properly with setserial?
Please read the FAQ at http://open.nit.ca/wiki/?WvDial
If you still have problems, send mail to <wvdial-list@lists.nit.ca>.
///****** wvdialconf *********///
rclord-pc:~ # wvdialconf
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
Modem Port Scan<*1>: Scanning ttySHSF0 first, /dev/modem is a link to it.
ttySHSF0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttySHSF0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttySHSF0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan<*1>: S1 S2 S3 S4 S5 S6 S7 SHSF1
Modem Port Scan<*1>: SHSF2 SHSF3 SHSF4 SHSF5 SHSF6 SHSF7
Sorry, no modem was detected! Is it in use by another program?
Did you configure it properly with setserial?
Please read the FAQ at http://open.nit.ca/wiki/?WvDial
If you still have problems, send mail to <wvdial-list@lists.nit.ca>.
///****** wvdial *********///
rclord-pc:~ # wvdial
--> WvDial: Internet dialer version 1.60
--> Initializing modem.
--> Sending: ATZ
--> Sending: ATQ0
--> Re-Sending: ATZ
--> Modem not responding.
rclord-pc:~ #
///*********** WVDIALCONF *************///
[Dialer Defaults]
Modem = /dev/modem
Baud = 57600
Init = ATZ
Init2 = AT S11=50
Phone = 9092303205
Username =
Password =
[Dialer phone2]
Phone = 9092303201
[Dialer shh]
Init3 = ATM0
[Dialer pulse]
Dial Command = ATDP
///**************************************///
-
علی جان اگه از اینترنت هوشمند استفاده میکنی به جای یوزر و پسورد ۲ تا عدد الکی بزن ;D اگه خالی باشه گیر میده
-
ممنون ایمان جان ولی مشکل حل نشد . اگر بسته pppconfig هم برای سوزه هست ، بگید تا دانلود کنم شاید فرجی شد .
-
دوستان راه حلی ندارن ؟ خواهشا کمک کنید توی انجمن forum.opensuse.ir هم همه خوابن . لطفا !!!!!!
-
آقا این مشکل با دوباره کانفیگ کردن مودم حل شد اما من از اینترنت هوشمند استفاده میکنم به همین خاطر user و pass ندارم به همین خاطر 123 وارد کردم اما موقع چک کردن پسورد توی wvdial ارور میده authentication failed میده و قطع میشه . خواهشا کمک بفرمایید .
-
علی جان از isp های دیگه کمک بگیر ببین اونها هم همینجوره
-
ممنون ایمان جان بابت اهمیتی که دادی . مشکل از isp نبود . مشکل از خود wvdial بود . با اضافه کردن Stupid mode = yes به انتهای wvdial.conf حل شد . بازم ممنون .
-
رفقا،من این مودم اسکنه چیه اینو نصب کردم....
یه فایل طولانی بهم داد که من Conexant رو توش پیدا کردم!!!!
میشه راهنمایی کنین که برای 9.4 چیکار باید بکنم؟! تو صفحه ی اموزش ها برای این نسخه چیزی نبود اخه....
-
اقا هیچ کس نبود راهنمایی کنه؟
-
راه حل مشکل این است که دیگر وقتش رسیده اینترنت دیال آپ را به خاک بسپاریم.
وقتی هزینه ی دیال آپ از Adsl بیشتر می شود چه توجیهی در استفاده از دیال آپ است؟!
اما اگر اصرار دارید که از اینترنت با سرعت پایین استفاده کنید، خوب بهتر است از موبایلتان به جای مودم دیال آپ استفاده کنید.
-
سلام دوستان
من اين مقاله "ساخت و برقراری اتصال به اینترنت" توي ويكي خوندم
حالا با يه سوال مواجه شدم كه اونم به خاطر مبتدي بودن منه ومشكل هم سر دستور sudo wvdialconf /etc/wvdial.conf هست
اين كد ها رو ببينيد خودتون متوجه ميشيد
hossein@hossein-945PT-A2:~$ wvdialconf /etc/wvdial.conf
The program 'wvdialconf' is currently not installed. You can install it by typing:
sudo apt-get install wvdial
hossein@hossein-945PT-A2:~$ sudo apt-get install wvdial
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package wvdial is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'wvdial' has no installation candidate
مشكل كار از كجاست من چطور ميتونم wvdial رو نصب كنم
-
سلام من سیستم عامل obo 10.4 روی وی پی اس نسب کردم برای یه استفاده خاص فقط میخوام بدونم چطور باید بهش ای پی بدم که وارد شبکه بشه ؟ اگر میشه راهنماییم کنید
-
سلام
من از اینترنت دانشگاه استفاده می کنم،البته وایرلس نیس و باید از کابل استفاده کنم، username و password هم نداره. علاوه بر این باید IP رو هم تنظیم کنم. توی ویندوز راحت از طریق تنظیمات local area connection این وارد کردن IP رو انجام میدادم، اما نمیدونم چطور میشه توی فضای ubuntu این کار رو انجام داد. خواهش میکنم که راهنماییم کنین، ممنونم.
-
سلام
بر روی ویندوز سون virtualbox نصب کردم و از طریق virtualbox ،اوبونتو نسخه 11.04 را نصب کردم. در ویندوز سون از اینترنت وایرلس استفاده می کنم که از طریق کانکشن آن به اینترنت متصل می شوم. هنگامی که در ویندوز سون به اینترنت متصل می شوم در اوبونتو نیز اینترنت دارم. حالا سوالم این است که چگونه در اوبونتو می توانم به اینترنت متصل شوم بدون اینکه نیاز به اتصال به اینترنت از طریق ویندوز سون باشد.
لطفا راهنمایی کنید.
-
سلام
ورژن كرنل من 21-2.6.32 هست.چصور ميتونم درايور مودم خودم رو پيدا كنم.
-
سلام دوستان لینوکسی
من نوع مودمم رو در آوردم. Smartlink هستش. حالا تو صفحه مربوط به نصبش تو ویکی این پکیج رو گفته نصب کنبن:
sl-modem-source sl-modem-daemon
من اینو از کجا الآن باید گیر بیارم و نصبش کنم؟
-
سلام
خسته نباشید
دوستان گرامی لطفا راهنمایی بفرمایید
من در اتصال به اینترنت از طریق مودم usb وایمکس مدل swu-3220 به مشکل بر خوردم ( اوبونتو 10.10 و لپ تاپ dell 5010) [-(
متاسفانه درایور مخصوص اوبونتو این مودم رو نتونستم پیدا کنم, داریور مخصوص ویندوز رو تحت wine نصب کردم ولی خب کامل نصب نشد و جواب نمیده :-k
لطف کنید و راهنمایی کنید [-o<
-
سلام دوستان *
---- یک مشکل اینه که من این پست ها روئ خوندم ولی اصلا نحوه اتصال و اینکه روی چی کلیک کنیم تا به اینتر نت وصل بشه توشون ندیدم .میشه لطفا یکی بگه دقیقا باید چه کار کنیم ؟(کوبونتوadsl )
من یک جایی رفتم که توش یک **فیلد سرویس ** هم داشت علاوه بر یوزر پس -و نمیدونستم چی باید تو فیلد سرویس بزنم .اگه چیزی نزنی گیر میده .ولی خوب به لطف حرفه ای بودنمان همون رو هم نمیدونم از کجا بیارم (قبلا کنار ساعت بود .سیخ زدم آیکنش رفت )
دکمه کانکت و دیسکانکت هم بهم بگین .
این صفحه ترمینال هست ((.نمیدونم اسمش چیه)) که توش دستور ها رو وارد میکنین اون کجاس؟
پایان
متشکر
{End if}
-
شما باید مودم رو روی حالت PPPoE تنظیم کنی (میتونی از پشتیبانی ISP کمک بگیری) و بعد فقط کافیه کابل LAN رو به رایانه وصل کنی تا از اینترنت لذت ببری. ترمینال هم تو برنامهها هست دیگه. یه کلید میانبر هم داره: مهار+دگرساز+t
-
دوستان می تونن بحث های قبلی در مورد مودمHUAWEI WiMax USB Stick مدل BM338 رو اینجا بخونن فعلا که به نتیجه ای نرسید گذاشتمش اینجا شاید فرجی بشه !
http://forum.ubuntu.ir/index.php/topic,29372.0.html?PHPSESSID=affc3b0d91f6c28924c0c4e898539ec2
من چند مدت پیش اوبونتو نصب کردم ولی متاسفانه ! به علت اینکه مودم یو اس بی وایمکس نصب نشد ! و از اونجا که اوبونتو خیلی وابسته به اینترنته مجبور شدم پاکش کنم حالا آقا میلاد خود همینکه شما به این مرحله رسیدی خیلی خوبه بی زحمت اگر می شه نحوه سویچ کردن مردم و نصب آن را با برنامه drxvi314 رو توضیح بدهید به نظر می یاد که با نصب این درایور بتوان برنامه اصلی خود وایمکس رابا Wine یا play On Linux نصب کرد ! اگر هم نشد فوقش اینه که اطلاعات مثل مک و آی پی ها رو یه طوری دستی وارد می کنیم شما فقط این مراحل رو بی زحمت توضیح بده !(بی زحمت تصویری) در ضمن یه چیز کلی، چرا برای نصب تمام برنامه ها باید به اینترنت وصل شد این مخصوصا توی ایران بسیار زجر آوره ! حتی فایل نصب deb رو هم که آدم می خواد نصب کنه باید وصل شه به اینترنت !
(http://antiomanism.persiangig.com/image/untitled.JPG) (http://antiomanism.persiangig.com)
می شه از درایورهای شبکه ویندوز یه طورایی با برنامه diswrapper استفاده کرد ولی مشکل این مودم اینه که اصلا به عنوان یه شی ناشناخته هم بالا نمی یاد ! حتی به شکل سی دی رام (آخه اولش که وصلش کنی تو ویندوز دقیقا یه سی دی رام می یاد بالا که فایل نصبش توشه ) هم بالا نمی یاد حالا اگه کسی واقعا بلده بگه !و الا من باید همچنان از سیستم عامل open source محروم باشم ! :'(
دوستان من حتی درایورش رو هم دارم آپلود می کنم ! ببینم کسی هست بتونه کمک کنه اگه این مشکل حل بشه صد در صد من ابونتویی می شم !
http://wdl.persiangig.com/pages/download/?dl=http://antiomanism.persiangig.com/other/Driver.zip
-
یکی از دوستان حتی تا این مرحله رسوندش ولی !
(http://myup.ir/images/32339297909759332198.png) (http://myup.ir/)
کمک کمک کم ...ک .....
-
شما باید مودم رو روی حالت PPPoE تنظیم کنی (میتونی از پشتیبانی ISP کمک بگیری) و بعد فقط کافیه کابل LAN رو به رایانه وصل کنی تا از اینترنت لذت ببری. ترمینال هم تو برنامهها هست دیگه. یه کلید میانبر هم داره: مهار+دگرساز+t
دادا شما که زحمت کشیدی این ها رو هم بگو دیگهههههههههههههههههههههههههههههههه
من یک جایی رفتم که توش یک **فیلد سرویس ** هم داشت علاوه بر یوزر پس -و نمیدونستم چی باید تو فیلد سرویس بزنم .اگه چیزی نزنی گیر میده .ولی خوب به لطف حرفه ای بودنمان همون رو هم نمیدونم از کجا بیارم (قبلا کنار ساعت بود .سیخ زدم آیکنش رفت )
دکمه کانکت و دیسکانکت هم بهم بگین .
-
یه مرد پیدا نمی شه آموزش بده !
-
یه مرد پیدا نمی شه آموزش بده !
خانم ها و آقایان لطفا جواب .......
-
اونوقت می گید ویندوز بده ! وجدانا من ویندوز داشتم ، اوبونتو هم داشتم واقعا اوبونتو دردسرهای الکی خیلی داره مثل یعنی چی که واسه نصب هر نرم افزاری حتما باید وصل به اینترنت باشی حالا من که وایمکس دارم و چیز دیگه ای واسه اتصال ندارم چه طوری درایورشو نصب کنم ! هی بگید سیستم عامل Open Source وقتی این سیستم عامل این قدر آدمو اذیت کنه می خوام صد سال سیاه نباشه ! هزار تا درخواست کمک دادم یکی جواب نداد ولی الان که دارم ضد شما صحبت می کنم می دونم گروهی می ریزید رو سرم چرا ! اونوقت هی بگید ویندوز اشتراکی (اطلاعات خود را به اشتراک بگذارید و از این حرف ها)از این حرف ها آبی واسه ما گرم نشد ! اونوقت هی دم و دقیقه از بدی ماکروسافت بگید ! خودتونم می دونید که ماکروسافت شرف داره به هر چی لینوکسه ! و الا اینهمه تلاش برای اجرای برنامه های ویندوز تو لینوکس واسه چیه ! تنها مشکل ماکروسافت یکی امنیته (که توی ویندوز های جدید تا مقدار زیادی حل شده) یکی هم قیمتش همین ! لا اقل کار آدم را می افته ولی با لینوکس چی ! آدم با هزار درد سر می ره درایوره پیدا می کنه حتی دستوراتش هم تو ترمینال وارد می کنه بعد وسط نصب !ارور می ده واقعا مسخره نیست ! اصلا چرا لینوکس نباید فایل نصبی داشته باشه همه باید برن تو Package installer ، خود آدم نشته پای کامپیوتر واسه اینکه چند تا فونت ! نصب کنه باید هزار تا دستور تو ترمینال وارده کنه اونم شاید کار بده شاید نده ! من نشستم حلاجی کردم اوبونتو خیلی زور بزنه بتونه واسه گوشی های آندروید یه سیستم عامل باشه نه واسه Pc ! امید آدمی بود به خیر کسان ، مرا به خیر تو امید نیست شر مرسان
-
اونوقت می گید ویندوز بده ! وجدانا من ویندوز داشتم ، اوبونتو هم داشتم واقعا اوبونتو دردسرهای الکی خیلی داره مثل یعنی چی که واسه نصب هر نرم افزاری حتما باید وصل به اینترنت باشی حالا من که وایمکس دارم و چیز دیگه ای واسه اتصال ندارم چه طوری درایورشو نصب کنم ! هی بگید سیستم عامل Open Source وقتی این سیستم عامل این قدر آدمو اذیت کنه می خوام صد سال سیاه نباشه ! هزار تا درخواست کمک دادم یکی جواب نداد ولی الان که دارم ضد شما صحبت می کنم می دونم گروهی می ریزید رو سرم چرا ! اونوقت هی بگید ویندوز اشتراکی (اطلاعات خود را به اشتراک بگذارید و از این حرف ها)از این حرف ها آبی واسه ما گرم نشد ! اونوقت هی دم و دقیقه از بدی ماکروسافت بگید ! خودتونم می دونید که ماکروسافت شرف داره به هر چی لینوکسه ! و الا اینهمه تلاش برای اجرای برنامه های ویندوز تو لینوکس واسه چیه ! تنها مشکل ماکروسافت یکی امنیته (که توی ویندوز های جدید تا مقدار زیادی حل شده) یکی هم قیمتش همین ! لا اقل کار آدم را می افته ولی با لینوکس چی ! آدم با هزار درد سر می ره درایوره پیدا می کنه حتی دستوراتش هم تو ترمینال وارد می کنه بعد وسط نصب !ارور می ده واقعا مسخره نیست ! اصلا چرا لینوکس نباید فایل نصبی داشته باشه همه باید برن تو Package installer ، خود آدم نشته پای کامپیوتر واسه اینکه چند تا فونت ! نصب کنه باید هزار تا دستور تو ترمینال وارده کنه اونم شاید کار بده شاید نده ! من نشستم حلاجی کردم اوبونتو خیلی زور بزنه بتونه واسه گوشی های آندروید یه سیستم عامل باشه نه واسه Pc ! امید آدمی بود به خیر کسان ، مرا به خیر تو امید نیست شر مرسان
سلام عمو جون ....کلاس چندمی و چند واحد پاس کردی؟؟؟؟؟؟ ](*,) ;D
عصبانی مباش ......(چی گفتم ها)
داداش هر چیزی یک خوبی داره یک بدی .مثلا خودت یک خوبی و 1000 .....
ولی من یک سوال دارم .از همه جا چرا اومدی اینجا پست زدی ؟؟؟؟؟؟؟؟؟
لاقل یک جا بزن که روش بحث کنن ، شدید اندر شدید.(اومدی تو حاشیه خیابون که سالی یک نفر رد میشه نوشتی)
بگذریم حالت خوبه ؟؟؟؟؟؟
برو بیش "عمو ماکرو " سلام منو رو هم بهش برسون بگو دمت جیزززززز.
(همه ما میدانیم چه بخش های زیادی از لینوکس و توزیع های آن توسط سایر شرکت های نرم افزاری کپی و در قالب حقوق خودشان به فروش میرسد.برو مقایسه کن وقتی ماکروسافت XP رو داد بیرون ،توزیع های لینوکس از ویندوز 7 ماکروسافت زیباتر و بهینه تر بود )
ماکروسافت تقصیری ندارد .تقصیر لینوکس است که رایگان است و حامی ندارد (وگرنه مثل اپل به خاطر سرقت و نقض کپی رایت هر روز باید یک شرکت رو محکوم میکرد)
-
و علیک السلام
خوب سازندگان لینوکس هم برن از کسایی که از برنامه ها شون کپی (تجاری) می زنن ! شکایت کنن !
یه چیزی هم درباره زیبایی لینوکس های زمان Xp گفتی من حالا کار ندارم به اون موقع ولی الان که 7 هم اومده بیرون هنوز به زیبایی Xp هم بعضی هاش نرسیدن چی دارن مردانه رابط کاربری درستی دارن ! واسه یه نصب فونت باید بری دسترسی Root پیدا کنی ! واقعا به من بگو این یعنی چی ! ولی با این وجود اگر تو لینوکسی سراغ داری که اون موقع اینجوری بگو ! حاضرم از همین حرفم هم برگردم
اگر کسی تونست آموزش نصب USB BM338 ایرانسل رو روی لینوکس بگه من همین الان از تمام حرف های خودم بر می گردم ! این گوی و این میدان ! \\:D/
-
اونوقت می گید ویندوز بده ! وجدانا من ویندوز داشتم ، اوبونتو هم داشتم واقعا اوبونتو دردسرهای الکی خیلی داره مثل یعنی چی که واسه نصب هر نرم افزاری حتما باید وصل به اینترنت باشی ه واقعا مسخره نیست !
و باز بحث همیشگی . . . :)
قبل از اینکه به سیستم عاملی مهاجرت کنید حتماً ازش اطلاعات کامل داشته باشید.
از موضوع تاپیک دور نشوید.
-
آقای یکی روش نصبشو بگه !
-
آقای یکی روش نصبشو بگه !
داداش گلم :من نمیدونم این usb که گفتی چیه ؟ولی حدس میزنم مربوط به وایمکس و یا اینتر نت باشه اگه درسته ، دقیقا یک توضیح از مشکلتون بدین تا باهم ، همفکری کنیم .اینجا جای خوبی برای دعوا و بحث جنجالی نیست .(جرات داری بیا دم در دانشکده..... ;D ;D ;D)
به طور قطع نفرات قبلی این مشکلات رو حل کردن یا حداقل با اون برخورد کردن واگر اینطور نباشه برای آیندگان حل میشود.ما اینجاییم تا مشکلاتمان را حل کنیم .من خودم یک عضو نابلد هستم و هنوز سر مسئله گرافیک کامپیوترم مشکل دارم و نمیتونم نصب کنم .ولی این را هم در نظر بگیرید که ما فقط چند ساعت وقت میگذاریم .در حالی که ممکن است تا کنون برای ویندوز بیش از 3 سال کار کرده باشیم و در چشمانمان آسان میآید.
متشکرم
-
وقتی مودم یو اس بی وایمکس رو وصل می کنید به کامپوتر چیزی ظاهر نمه شه با برنامه Usb-swith modem و کرنل drxvi314-dkms هم کار کردم و آنها را نصب کردم کار نداد !
-
یک نکته ای ! برای نصب فونت نیازی به دسترسی روت نیست ! به سادگی تو fonts. در پوشه یوزر خود فونت هارا میریزید ! این روت کجاش بود !؟ ???
-
دوستان این مودم 3 درایور و در واقع 3 لایه مختلف داره لایه اول ! همون سی رام هست لایه دوم Beceem-bus هست و لایه سوم هم یک کارت شبکه Wimax هست Usb-ModemSwitch این مودم را از لایه اول باید به لایه آخر ببره ! خوب فکر کنم کار سختی باشه نصب این مودم ! بعد از سویچ تازه نوبت به نصب کرنل مخصوص این درایور می رسه من از کسانی که تجربه نصب این مودم رو دارن خواهش می کنم التماس می کنم به پاشون ... نه دیگه خیلی منت کشیدم ! حالا یه کمی هم به فکر ما باشید ! بی زحمت یکی توضیح بده اگه می تونید تصویری ! ???
-
دوستان بنده موفق شدم تا لایه سوم هم بیارمش حالا تنها مشکلی که هست اینکه که چه جوری ازش استفاده کنم ! شما وقتی این مودم رو روی ویندوز نصب می کنید یه برنامه داره واسه اتصالش به شبکه وایمکس ، حتی اگر درایورهاش کامل نصب باشه بدون همچین برنامه ای اصلا هیچ فایده ای نداره ! حالا نمی دونم چه کنم !
-
دوستان در فرآیند نصب این مودم به 2 برنامه بسیار جالب برخوردم بعد از نصب مودم حالا نوبت اتصال بود ولی برنامه ای واسه این کار نداشتم واسه همین ! دو تا برنامه دانلود کردم ! ولی هیچ کدوم کار نداد چون با فرکانس های خارج تنظیم شده بود ! به یه فایل هم بر خوردم که در /etc موجود بود و اسمش wimax.conf یا یه چیزی تو همین مایه ها بود ! حالا مشکلی که هست نحوه برقراری ارتباط بین این فایل و این 2 تا برنامه هست ! نیدونم دیگه چه کار کنم فرکانس های وایمکس ایرانسل تو منطقه ما هم به شرح زیره !
Frequency = 3491500 KHz
Bandwidth = 5000 KHz
BSID = 00:00:15:1B:70:00
RSSI = -77 dBm
Channel1 RSSI = -79 dBm
Channel2 RSSI = -81 dBm
CINR = 21 dB
FrequencyList = 3481500 5M\3486500 5M\3491500 5M\3496500 5M\3581500 5M\3586500 5M\3591500 5M\3596500 5M\
AuthInfo = EAP_TTLS MSCHAPv2
(http://img4up.com/up2/06548273292549595913.jpg)
(http://img4up.com/up2/00413976563435756672.jpg)
(http://img4up.com/up2/61794877735110699923.png)
-
دوستان هر چه بیشتر در مورد نصب این مودم تلاش می کنم به چیز های جالب تری می رسم برای اتصال وایمکس به یک شبکه هر منطقه علاوه بر فرکانس های خاصی که دارد نیازمند نوعی کد گذاری خاص است وایمکس ایرانسل هم از این قاعده خارج نیست و کد گذاری خاص خود را دارد این کد گذاری را را می توان در آدرس : :X:\Program Files\WiMAX Connection Manager\cert پیدا کرد حالا من کد این 3 را در تگ قرار می دهم و خواهش دارم اگر کسی هست راهنمایی کنه از این کد ها چگونه می شود استفاده کرد
کد اول با نام : cpecert.pem
-----BEGIN CERTIFICATE-----
MIIDBzCCAnCgAwIBAgIBEjANBgkqhkiG9w0BAQUFADCBiDELMAkGA1UEBhMCQ04x
EjAQBgNVBAgTCUd1YW5nZG9uZzElMCMGA1UEChMcSHVhd2VpIFRlY2hub2xvZ2ll
cyBDby4gTHRkLjEfMB0GA1UECxMWV2lNQVggRm9ydW0oUikgRGV2aWNlczEdMBsG
A1UEAxMUSHVhd2VpIFdpTUFYIFJvb3QgQ0EwHhcNMDkwNjA4MDMwNTA3WhcNMjkw
NjAzMDMwNTA3WjB+MQswCQYDVQQGEwJDTjESMBAGA1UECBMJR3Vhbmdkb25nMSUw
IwYDVQQKExxIdWF3ZWkgVGVjaG5vbG9naWVzIENvLiBMdGQuMR8wHQYDVQQLExZX
aU1BWCBGb3J1bShSKSBEZXZpY2VzMRMwEQYDVQQDEwpNQUNBRERSIEJNMIGfMA0G
CSqGSIb3DQEBAQUAA4GNADCBiQKBgQDP9gWLYUlfXCabe1EvaFNOTzaLRmv/7vzJ
qrlA+9toZ/J2tdBdHreZnUWkad6i2pm7SPGOgS+dvLBVLnKC4ncmYUrDeFjcqt4l
GhPqqUSiDruXjomnpz+2Ili6QcgqGKOTsrHajKt00TES15sSi+Zy0GmlCV/5vSgP
H0uZcFeMlQIDAQABo4GJMIGGMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgXgMCwGCWCG
SAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4E
FgQUfbT58hQTM67zwm3bSnkdhmlOZCAwHwYDVR0jBBgwFoAUdhfFAV8n1zEw4rx7
GxVUN6Lzhy4wDQYJKoZIhvcNAQEFBQADgYEAhCE0DCwh1uWD0chIvl+NqCliO+wt
dflu90oyJ8pGbovlktcxuzNQLILUFyVuADcV4gFzOQyrCkhlzXVRFPysZhlV6S0B
fFafbTbnpmAdQzu4GTfpWYlFFSkGpv/19NBa4XjhETWZcZfgRbvyb2C4Mh26tlOF
CStRyL/DJ/4x1tw=
-----END CERTIFICATE-----
کد دوم با نام : cpekey.pem
-----BEGIN RSA PRIVATE KEY-----
MIICWwIBAAKBgQDP9gWLYUlfXCabe1EvaFNOTzaLRmv/7vzJqrlA+9toZ/J2tdBd
HreZnUWkad6i2pm7SPGOgS+dvLBVLnKC4ncmYUrDeFjcqt4lGhPqqUSiDruXjomn
pz+2Ili6QcgqGKOTsrHajKt00TES15sSi+Zy0GmlCV/5vSgPH0uZcFeMlQIDAQAB
AoGAV+ggSd2y/UtfyoOjOs33wPd9D/yRtJsaYkj3jD+qbITcGlAapvJQG/A+OxTB
lsefCmr4KQv0y9GyHB/JKgh+4ohRZqrnEDgiwpMY97feYm/YUVFuUExw7elz4ZFb
TWaZ4OO8hQqzUmjMq4cvStu1AZfUBfjYsp7aBqLO/tAB5IECQQDp/MOPmm7FWY+s
dDR3cNoBZzAxak7NvsAwrE3PVDuxhBKBBqiWMhoXHMh1iz52ArXXkJxyPpVr6Z+a
XI3zLVNhAkEA44ZzyXTtHSXunP=
-----END RSA PRIVATE KEY-----
کد سوم با نام : Rootcacert.pem
-----BEGIN CERTIFICATE-----
MIIDjjCCAvegAwIBAgIJAL1ewCYkFGdyMA0GCSqGSIb3DQEBBQUAMIGIMQswCQYD
VQQGEwJDTjESMBAGA1UECBMJR3Vhbmdkb25nMSUwIwYDVQQKExxIdWF3ZWkgVGVj
aG5vbG9naWVzIENvLiBMdGQuMR8wHQYDVQQLExZXaU1BWCBGb3J1bShSKSBEZXZp
Y2VzMR0wGwYDVQQDExRIdWF3ZWkgV2lNQVggUm9vdCBDQTAeFw0wOTA2MDgwMzAw
MjBaFw0yOTA2MDMwMzAwMjBaMIGIMQswCQYDVQQGEwJDTjESMBAGA1UECBMJR3Vh
bmdkb25nMSUwIwYDVQQKExxIdWF3ZWkgVGVjaG5vbG9naWVzIENvLiBMdGQuMR8w
HQYDVQQLExZXaU1BWCBGb3J1bShSKSBEZXZpY2VzMR0wGwYDVQQDExRIdWF3ZWkg
V2lNQVggUm9vdCBDQTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA6MFKl+Ja
Y5Met2aDNBWk9V/C3h50L4YwvBc6vnxHgsfKG6bQ3OHUxsHxFJNaJIb7UOhJZI4l
c4fjWQvvf5uf2kPgf77zQ3HQi1jBq/+Ix3poi8c4m+r1PaH5yN1XFudg/XO2oLSe
8gZSspdDwher0U23GLN6KlUi6WgEXgrH0jcCAwEAAaOB/TCB+jAdBgNVHQ4EFgQU
dhfFAV8n1zEw4rx7GxVUN6Lzhy4wgb0GA1UdIwSBtTCBsoAUdhfFAV8n1zEw4rx7
GxVUN6Lzhy6hgY6kgYswgYgxCzAJBgNVBAYTAkNOMRIwEAYDVQQIEwlHdWFuZ2Rv
bmcxJTAjBgNVBAoTHEh1YXdlaSBUZWNobm9sb2dpZXMgQ28uIEx0ZC4xHzAdBgNV
BAsTFldpTUFYIEZvcnVtKFIpIERldmljZXMxHTAbBgNVBAMTFEh1YXdlaSBXaU1B
WCBSb290IENBggkAvV7AJiQUZ3IwDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAQYw
DQYJKoZIhvcNAQEFBQADgYEAduc1sZ/nEdHNO48UmMYZRbUHc/by6AoFAe3ISPqw
gaspTuGfAoRccGebLpcyuAqwczoGtIeQGpkX5MZn87EfgKHG3MueF7eeQzfAvbaT
8lts4u5KzLAiaQeKFXapuzmZ/7vo1MrJAKTWccuzdwk2PsN1h6vGMaSOYbQMF5o3
jPM=
-----END CERTIFICATE-----
-
دوستان هر چه بیشتر در مورد نصب این مودم تلاش می کنم به چیز های جالب تری می رسم برای اتصال وایمکس به یک شبکه هر منطقه علاوه بر فرکانس های خاصی که دارد نیازمند نوعی کد گذاری خاص است وایمکس ایرانسل هم از این قاعده خارج نیست و کد گذاری خاص خود را دارد این کد گذاری را را می توان در آدرس : :X:\Program Files\WiMAX Connection Manager\cert پیدا کرد حالا من کد این 3 را در تگ قرار می دهم و خواهش دارم اگر کسی هست راهنمایی کنه از این کد ها چگونه می شود استفاده کرد
کد اول با نام : cpecert.pem
-----BEGIN CERTIFICATE-----
MIIDBzCCAnCgAwIBAgIBEjANBgkqhkiG9w0BAQUFADCBiDELMAkGA1UEBhMCQ04x
EjAQBgNVBAgTCUd1YW5nZG9uZzElMCMGA1UEChMcSHVhd2VpIFRlY2hub2xvZ2ll
cyBDby4gTHRkLjEfMB0GA1UECxMWV2lNQVggRm9ydW0oUikgRGV2aWNlczEdMBsG
A1UEAxMUSHVhd2VpIFdpTUFYIFJvb3QgQ0EwHhcNMDkwNjA4MDMwNTA3WhcNMjkw
NjAzMDMwNTA3WjB+MQswCQYDVQQGEwJDTjESMBAzdwk2PsN1h6vGMaSOYbQMF5o3
jPM=
-----END CERTIFICATE-----
سلام دوست گلم شما خیلی تلاشتون عالیه .نتایجتون هم قشنگه .من روشون فکر خواهم کرد
-
و علیک السلام من خیلی تلاش کردم ! ولی هنوز نتونستم ! نصبش کنم ! اگه بشه خیلی خوب می شه واسه وصل شدن به اینترنت باید دم و دقیقه restart کنم ! برم توی ویندوز ! اگه کمک کنید واقعا ممنون می شم سیستم عامل من Mint 13 هست خیلی سریع بهش عادت کردم حتی برنامه های محاسباتی مخصوص اون رو دانلود کردم ! اگه الان می خواستم اینترنت بگیرم لا اقل Wifi اون رو می گرفتم که راحت به پورت شبکه وصل می شد و تو ایکی ثانیه ! وصل به اینترنت می شدم ! من از این Cert ها هم استفاده کردم ! اما امان از اینکه یه دکل نشون بده ! حتی یکی !
-
خوب دوستان چند روزی قید این مودم رو زدم و اصلاً بی خیالش شدم ! خواستم دیگه نصبش نکنم ولی این وسوسه لعنتی امانم نداد ! بعد از نصب WimaxCMGUI و کپی کردن macxvi.cfg , macxvi200.bin و نصب کرنل drxvi314-dkms همش توی این فکر بودم که رابطه 3 فایل cpecert.pem , cpekey.pem ,Rootcacert.pem و فایل wimaxd.conf که در شاخه /etc قرار با برنامه WimaxCMGUI چی بود این بود که دست به کار شدن و یه خورده تو اینترنت ول گشتم که به یه مطلب بر خوردم اطلاعات wimaxd.conf رو به صورت زیر تغییر دادم
##########################
# Beceem WiMAX Daemon ConfigFile
##########################
BandwidthMHz 5.000
ScanMinFrequencyMHz 0.000
ScanMaxFrequencyMHz 0.000
ScanStepFrequencyMHz 0.000
CenterFrequencyMHz 3481.500 3486.500 3491.500 3496.500 3581.500 3586.500 3591.500 3596.500
NetworkSearchTimeoutSec 60
NetworkEntryTimeoutSec 10
AuthEnabled Yes
EAPMethod 4
UserIdentity 'Username@mtnirancell.com'
UserPassword 'Password'
TTLSAnonymousIdentity 'macAddress@mtnirancell.com'
ValidateServerCert Yes
CACertPath '/usr/local/beceem/certs'
CACertFileName '/usr/local/beceem/certs/Rootcacert.pem'
TLSDeviceCertFileName '/usr/local/beceem/certs/cpecert.pem'
TLSDeviceSubCA1CertFileName ''
TLSDeviceSubCA2CertFileName ''
TLSDevicePrivateKeyFileName '/usr/local/beceem/certs/cpekey.pem'
TLSDevicePrivateKeyPassword ''
PrivateKeyPasswordFormat 'Ascii'
AuthenticationTimeoutSec 10
InvertMSKByteOrder No
AlwaysIncludeTLSLength No
EAPFragmentMaxLength 1398
EAPPollingLoopIntervalMs 50
FirmwareRSAPrivateKeyEncrypt No
FirmwarePrivateKeyBits 2048
InnerNAIChange Yes
BeceemEngineFileName '/lib/libengine_beceem.so'
AuthEthernetToRADIUS No
RADIUSIPAddress '192.168.100.1'
RADIUSPort 1812
RADIUSSecret ''
AutoReConnectEnabled No
AutoReDisconnectEnabled No
SkipNetSearch No
AutoReConnectIntervalSec 20
AutoReDisconnectIntervalSec 20
LinkStatusRequestPeriodSec 2
IPRefreshCommand ''
NetEntryIPRefreshEnabled No
TerminateDHCPClient No
FirmwareFileName '/lib/firmware/macxvi200.bin'
ConfigFileName '/lib/firmware/macxvi.cfg'
CSCMDebugLogLevel 0
CSCMDebugLogFileName '0'
CSCMDebugLogFileMaxSizeMB 0
AuthLogLevel 0
AuthLogFileName '0'
AuthLogFileMaxSizeMB 0
EngineLoggingEnabled No
EngineLogFileName '0'
EngineLogFileMaxSizeMB 0
MACLoggingEnabled No
MACLogFileName '0'
RADIUSClientLogLevel 0
یه وقت شما از این روش نرید ها چون با منطقه ما تنظیم شده دکل های منطقه شما رو من نمیشناسم ! اطلاعات منطقه خودتون رو می تونید اینجا پیدا کنید .
(http://img4up.com/up2/83407397729847964459.jpg)
بعد هم فایلهای cpecert.pem , cpekey.pem ,Rootcacert.pem رو در /usr/local/beceem/certs/ کپی کردم این 3 فایل رو می تونید اینجا X:\Program Files\WiMAX Connection Manager پیدا کنید اگه پوشه وجود نداشت کار سختی نیست بسازیدشون .
خوب حالا Restart کردم و رفتم توی ترمینال و دستور های زیر رو زدم با کمال تعجب یکی نه 3 تا دکل پیدا کرد با عجله رفتم توی WimaxCMGUI ایستگاه ها رو شناخت و حتی به یکی شون داشت وصل می شد ولی چشمتون روز بد نبینه بازم وصل نشد ! اگه کسی تا این مرحله اومد و تونست بقیهاش رو توضیح بده واقعاً ممنون می شم
(http://img4up.com/up2/12949162150014079848.jpg)
(http://img4up.com/up2/11023884632169770572.jpg)
(http://img4up.com/up2/84662332963158929394.jpg)
-
دوستان مشکل اتصالش رو خودم هم فهمیدم تقریبا فقط نمی دونم چه جوری باید حلش کرد ! برای اتصال به سرور ناکزیر باید از یک سری پروتکل استفاده کرد واسه رمز گزاری داده تا بقیه نتونن موش بدونن ! روش اتصال در شبکه وایمکس ایرانس به 2 حالت EAP TTLS با نحوه کد گذاری MSCHAPV2 و به شکل EAP TLS هست حالت اول اینکه با وارد کردن Username و Password و Mac در ابتدا مستقیم به شبکه وصل می شید و روش دوم اینه که در ابتدا فقط آدرس Mac رو می دید و خودش وصل می شه وقتی متصل شد شما آدرس هر سایتی که وارد کنید می ره به آدرس ! https://172.23.2.50:8443/portal/login.screen و بعد اونجا شما Username و Password رو وارد می کنید و وصل می شید به شبکه و به هر سایتی دلتون بخواد می رید حالا ربط این کد گذاری ها با فایل wimaxd.conf چیه؟ نمی دونم !
در ضمن برای اتصال برای حالت اول باید آدرس Mac و Username به شکل Adressmac@mtnirancell.com و Username@mtnirancell.com وارد بشه
و برای اتصال برای حالت دوم آدرس Mac باید به صورت Adressmac@irancell.ir وارد بشه کسی هست بتونه کمک کنه در این زمینه !
-
دوستان با کلی ور رفتن با تنظیمات ! و خوندن مطالب مختلف بالاخره موفق(چی فکر کردی ، فکر کردی وصلش کردم زهی خیال باطل) شدم بفهم این اتصال ها چه جوری هستند نگاه کنید برای اتصال به فرم EAP TLS یا EAP TTLS نیاز به یک کد هست به اسم Private Kay Password ، جعبه وایمکس رو زیر رو کردن حتی سایت ایرانسل رو زیر رو کردم ولی موفق نشدم بفهم این کد چی هست و اصلا باید از کجا به دستش آورد ! بررسی های من نشون می ده پیدا کردن این کد از آخرین مراحل اتصال هست ! (خیلی نزدیک به آخرشه) و اونطوری که من فهمیدم Private Kay Password ارتباط مستقیمی با 3 فایل cpecert.pem , cpekey.pem ,Rootcacert.pem داره حالا مشکل من این 3 فایل نیست ! مشکل من ! پیدا کردن این کده ! این کد نه Username , Password , MacAddress هستش یه چیز دیگس !
-
دوستان هرچی درباره Private_key_password گفتم همه کشک بود ! اصلا برای اتصال نه تنها ایران در کل جهان حتی یک کشور را ندیدم که واسه اتصالش به این کد احتیاج داشته باشه ! مشکل اتصال فقط در انتخاب نوع EAP هست ! تعداد اینها کم هم نیست ، وقتی خواستم در موردش تحقیق کنم فکر کردم حداکثر 5 متد هست حالا می بینم متدهای جور وا جور داره !
دوستان یه ربطی بین فایل های CWMP و DebugAuth در پوشه X:\Program Files\WiMAX Connection Manager با نوع پروتکل EAP باید باشه واقعا دیگه گیج شدم ! این آدرس هم از WikiPedia در مورد این پروتکل
http://en.wikipedia.org/wiki/Extensible_Authentication_Protocol (http://en.wikipedia.org/wiki/Extensible_Authentication_Protocol)
-
دوستان من که دیگه دارم بی خیال وصل شدن این مودم تو لینوکس می شم ! زنگ زدم پشتیبانی وایمکس بهشون مشکلم رو گفتم ! قرار شد یکی چند ساعت بعد بهم زنگ بزنه ! اما تا حالا که یک روز گذشته هیچ خبری نشده !
از این روش هم رفتم کار نداده !
(http://img4up.com/up2/96620342130699266364.png)
(http://img4up.com/up2/83622537135999636348.png)
(http://img4up.com/up2/78491429034334065770.png)
-
http://forum.ubuntu.ir/index.php/topic,29372.0.html ادامه ...
-
سلام.
مشخصات کرنل اوبونتو من 3.2.0-23-generic-pae میباشد.
و مشخصات مودم من pctel inc hsp micromodem 56 (rev 02) میباشد.
من تازه لینوکس رو نصب کردم و هیچی نمیدونم.خواهش میکنم بهم بگین چطوری درایور مودمم رو دانلود کنم و نصب کنم.و چه جوری به اینترنت وصل بشم؟
-
احتمال زیاد نیازی به نصب نیست! مودمت چه نوعی هست وایرلس ، ای دی اس ال یا از این دیال آپ ها ! اگه درایورشو می خوای می تونی بری تو سایت HP من تصمیم گرفتم اگر احیانا خواستم لپ تاب بخرم اول برم چک کنم به لینوکس می خوره یا نه ! اینطوری خیلی بهتره ! واسه قطعات هم می خوام این کارو بکنم :)
-
سلام من نیاز فوری به فایل pctel-0.9.6.tar.gz دارم اما سایتی که لینک دانلودش تو اون بود فیلتره!!
خواهشن هر کی این فایلو داره یا فیلترشکن داره و میتونه بگیره یه زحمت بکشه و یه جای دیگه اپلودش کنه.حجمش هم 1.31mb هستش!!
ادرس سایت: http://linmodems.technion.ac.il/pctel-linux
ممنون.
-
سلام.من نتایج اجرای scanmodem رو براتون میزارم وشما لطف کنین با جزییات کامل بگین برای ادامه چی کار باید بکنم.
فایل 1stRead:
If you want help from the email group Discuss@linmodems.org, PLEASE join the List
at http://www.linmodems.org . Otherwise your messages will be delayed until the evening,
waiting for someone to verify it is not junk mail, before forwarding through the List server.
The files in this Modem/ folder have the following roles:
ModemData.txt - Diagnostics and accumulated information cogent to your modem and host system.
This is the ONLY file which should be sent to the List DISCUSS@LINMODEMS.ORG ,
if further help is needed. Send your email and attachments as plain text as
other formats are rejected by the List Server, to avoid virus transmission.
Always send the ENTIRE ModemData.txt, as It includes subtle diagnostic ouputs needed
to best guide you. Please in the covering email mention your Country, to enable Country
specific advice.
Always use the most recent update of scanModem accessed ONLY at
http://linmodems.technion.ac.il/packages/scanModem.gz
to produce ModemData.txt
URLs to cogent advice are regularly updated, so your problem may be solved therein.
Please Do NOT send Do NOT send other files in this folder Modem/
Several informative files without diagnostics are in the DOCs subfolder.
A file(s) specific to your modem chipset will be written, such as:
Smartlink.txt, Conexant.txt, Intel.txt , etc
YourModem.txt - Guidance about operating your particular System, for your benefit
It should NOT be sent to Discuss@linmodems.org
Rational.txt - Motivations of this scanModem package.
DriverCompiling.txt - Explains the roles of additional files which may have to be installed
to support compiling of modem drivers, and the steps to take.
SoftModem.txt - Information and instructions about "soft modems".
For these modems, additional steps may be necessary for choice of supporting software.
The primary PCI ID is that of the host audio or modem controller, which can support diverse Subsystems. It is the chipset of the Subsystem which determines the software needed.
ModemTesting.txt SHOULD be read, but after drivers have been installed.
InfoGeneral.txt has general information about the status of winmodem support under Linux,
Do read it if ModemData.txt reports that your current modem is not supported under Linux.
Unsubscribe.txt - Howto terminate email tranmissions from the List.
If you are Linux newcomer, please do locate your local Linux group through:
http://www.linux.org/groups/index.html . If you are not comfortable with English,
a local Linux user can often be of substantial assistance in getting you on to the Internet.
فایل ModemData:
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 3.2.0-23-generic-pae
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686, Ubuntu , ALSA_version=1.0.24
Linux version 3.2.0-23-generic-pae (buildd@palmer) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu4) ) #36-Ubuntu SMP Tue Apr 10 22:19:09 UTC 2012
scanModem update of: 2011_08_08
Distrib_ID=Ubuntu
DistribCodeName=precise
AptRepositoryStem=http://ir.archive.ubuntu.com/ubuntu/
Presently install your Linux Distributions dkms package. It provides for automated driver updates,
following upgrade of your kernel. For details see http://linux.dell.com/projects.shtml#dkms
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
Candidate PCI devices with modem chips are:
04:01.0 Modem: PCTel Inc HSP MicroModem 56 (rev 02)
00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 01)
01:00.1 Audio device: NVIDIA Corporation High Definition Audio Controller (rev a1)
High Definition Audio cards can host modem chips.
For candidate card in slot 04:01.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
04:01.0 134d:7890 134d:0001 Modem: PCTel Inc HSP MicroModem 56
Modem interrupt assignment and sharing:
19: 0 0 IO-APIC-fasteoi uhci_hcd:usb3
--- Bootup diagnostics for card in PCI slot 04:01.0 ----
[ 0.196114] pci 0000:04:01.0: [134d:7890] type 0 class 0x000703
[ 0.196141] pci 0000:04:01.0: reg 10: [io 0xdf00-0xdf3f]
[ 0.196246] pci 0000:04:01.0: supports D2
[ 0.196251] pci 0000:04:01.0: PME# supported from D0 D2 D3hot
[ 0.196259] pci 0000:04:01.0: PME# disabled
[ 0.828040] serial 0000:04:01.0: BAR 0: set to [io 0xdf00-0xdf3f] (PCI address [0xdf00-0xdf3f])
[ 0.828055] serial 0000:04:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
The PCI slot 04:01.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:27d8 1458:a002 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller
Modem interrupt assignment and sharing:
44: 1784 195 PCI-MSI-edge snd_hda_intel
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
[ 0.188333] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
[ 0.188359] pci 0000:00:1b.0: reg 10: [mem 0xfdff8000-0xfdffbfff 64bit]
[ 0.188454] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.188462] pci 0000:00:1b.0: PME# disabled
[ 11.739350] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 11.739425] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[ 11.739462] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 11.828283] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input3
[ 11.829821] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
[ 11.830173] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[ 11.830465] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[ 11.830777] input: HDA Intel Line-Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
For candidate card in slot 01:00.1, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
01:00.1 10de:0be4 10de:0000 Audio device: NVIDIA Corporation High Definition Audio Controller
Modem interrupt assignment and sharing:
17: 322 310 IO-APIC-fasteoi snd_hda_intel
--- Bootup diagnostics for card in PCI slot 01:00.1 ----
[ 0.190104] pci 0000:01:00.1: [10de:0be4] type 0 class 0x000403
[ 0.190122] pci 0000:01:00.1: reg 10: [mem 0xfcffc000-0xfcffffff]
[ 12.622219] snd_hda_intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 12.622292] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[ 13.540199] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[ 13.540617] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[ 13.540866] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[ 13.541107] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset detected on
NAME="Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller "
CLASS=0403
PCIDEV=8086:27d8
SUBSYS=1458:a002
IRQ=44
IDENT=PCTEL
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller
Primary device ID: 8086:27d8
Support type needed or chipset: PCTEL
At http://linmodems.technion.ac.il/pctel-linux
Get the pctel-0.9.7-9-rht-10.tar.gz
Unpack under Linux with:
tar zxf pctel*.tar.gz
and read instuctions therein.
Read DOCs/Pctel.txt and Modem/DOCs/YourSystem.txt for follow through guidance.
Writing DOCs/Pctel.txt
Predictive diagnostics for card in bus 01:00.1:
Modem chipset detected on
NAME="Audio device: NVIDIA Corporation High Definition Audio Controller "
CLASS=0403
PCIDEV=10de:0be4
SUBSYS=10de:0000
IRQ=17
IDENT=PCTEL
For candidate modem in: 01:00.1
0403 Audio device: NVIDIA Corporation High Definition Audio Controller
Primary device ID: 10de:0be4
Support type needed or chipset: PCTEL
At http://linmodems.technion.ac.il/pctel-linux
Get the pctel-0.9.7-9-rht-10.tar.gz
Unpack under Linux with:
tar zxf pctel*.tar.gz
and read instuctions therein.
Read DOCs/Pctel.txt and Modem/DOCs/YourSystem.txt for follow through guidance.
Writing DOCs/Pctel.txt
Predictive diagnostics for card in bus 04:01.0:
Modem chipset detected on
NAME="Modem: PCTel Inc HSP MicroModem 56 "
CLASS=0703
PCIDEV=134d:7890
SUBSYS=134d:0001
IRQ=19
HDA2=00:1b.0
HDA2=01:00.1
IDENT=PCTEL
For candidate modem in: 04:01.0
0703 Modem: PCTel Inc HSP MicroModem 56
Primary device ID: 134d:7890
Support type needed or chipset: PCTEL
At http://linmodems.technion.ac.il/pctel-linux
Get the pctel-0.9.7-9-rht-10.tar.gz
Unpack under Linux with:
tar zxf pctel*.tar.gz
and read instuctions therein.
Read DOCs/Pctel.txt and Modem/DOCs/YourSystem.txt for follow through guidance.
Writing DOCs/Pctel.txt
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.6.3
and the compiler used in kernel assembly: 4.6
linux-headers-3.2.0-23-generic-pae resources needed for compiling are not manifestly ready!
The patch utility is needed for compiling ALSA drivers, and possibly others.
If compiling is necessary packages must be installed, providing:
linux-headers-3.2.0-23-generic-pae
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking pppd properties:
-rwsr-xr-- 1 root dip 273272 ظپظˆط±غŒظ‡ 4 2011 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
sudo chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
sudo chmod a+x /usr/sbin/pppd
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
For guidance on FAX usage, get from http://linmodems.technion.ac.il/packages/ get faxing.tar.gz
It has samples for a modem using port /dev/ttySL0, which must be changed to match your modem's port.
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
-
سلام.من نتایج اجرای scanmodem رو براتون میزارم وشما لطف کنین با جزییات کامل بگین برای ادامه چی کار باید بکنم.
فایل 1stRead:
If you want help from the email group Discuss@linmodems.org, PLEASE join the List
at http://www.linmodems.org . Otherwise your messages will be delayed until the evening,
waiting for someone to verify it is not junk mail, before forwarding through the List server.
The files in this Modem/ folder have the following roles:
ModemData.txt - Diagnostics and accumulated information cogent to your modem and host system.
This is the ONLY file which should be sent to the List DISCUSS@LINMODEMS.ORG ,
if further help is needed. Send your email and attachments as plain text as
other formats are rejected by the List Server, to avoid virus transmission.
Always send the ENTIRE ModemData.txt, as It includes subtle diagnostic ouputs needed
to best guide you. Please in the covering email mention your Country, to enable Country
specific advice.
Always use the most recent update of scanModem accessed ONLY at
http://linmodems.technion.ac.il/packages/scanModem.gz
to produce ModemData.txt
URLs to cogent advice are regularly updated, so your problem may be solved therein.
Please Do NOT send Do NOT send other files in this folder Modem/
Several informative files without diagnostics are in the DOCs subfolder.
A file(s) specific to your modem chipset will be written, such as:
Smartlink.txt, Conexant.txt, Intel.txt , etc
YourModem.txt - Guidance about operating your particular System, for your benefit
It should NOT be sent to Discuss@linmodems.org
Rational.txt - Motivations of this scanModem package.
DriverCompiling.txt - Explains the roles of additional files which may have to be installed
to support compiling of modem drivers, and the steps to take.
SoftModem.txt - Information and instructions about "soft modems".
For these modems, additional steps may be necessary for choice of supporting software.
The primary PCI ID is that of the host audio or modem controller, which can support diverse Subsystems. It is the chipset of the Subsystem which determines the software needed.
ModemTesting.txt SHOULD be read, but after drivers have been installed.
InfoGeneral.txt has general information about the status of winmodem support under Linux,
Do read it if ModemData.txt reports that your current modem is not supported under Linux.
Unsubscribe.txt - Howto terminate email tranmissions from the List.
If you are Linux newcomer, please do locate your local Linux group through:
http://www.linux.org/groups/index.html . If you are not comfortable with English,
a local Linux user can often be of substantial assistance in getting you on to the Internet.
فایل ModemData:
Only plain text email is forwarded by the Discuss@Linmodems.org List Server,
as HTML can contain viruses. Use as the email Subject Line:
YourName, YourCountry kernel 3.2.0-23-generic-pae
With this Subject Line cogent experts will be alerted, and useful case names left in the Archive.
YourCountry will enable Country specific guidance. Linux experts in YourCountry
can be found through: http://www.linux.org/groups/index.html.
They will know your Country's modem code, which may be essential for dialup service.
Responses from Discuss@Linmodems.org are sometimes blocked by an Internet Provider mail filters.
So in a day, also check the Archived responses at http://www.linmodems.org
-------------------------- System information ----------------------------
CPU=i686, Ubuntu , ALSA_version=1.0.24
Linux version 3.2.0-23-generic-pae (buildd@palmer) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu4) ) #36-Ubuntu SMP Tue Apr 10 22:19:09 UTC 2012
scanModem update of: 2011_08_08
Distrib_ID=Ubuntu
DistribCodeName=precise
AptRepositoryStem=http://ir.archive.ubuntu.com/ubuntu/
Presently install your Linux Distributions dkms package. It provides for automated driver updates,
following upgrade of your kernel. For details see http://linux.dell.com/projects.shtml#dkms
There are no blacklisted modem drivers in /etc/modprobe* files
Potentially useful modem drivers now loaded are:
snd_hda_intel
If a USB modem or cellphone is attached and was not detected, please
provide available information in your request to discuss@linmodems.org
Candidate PCI devices with modem chips are:
04:01.0 Modem: PCTel Inc HSP MicroModem 56 (rev 02)
00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 01)
01:00.1 Audio device: NVIDIA Corporation High Definition Audio Controller (rev a1)
High Definition Audio cards can host modem chips.
For candidate card in slot 04:01.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
04:01.0 134d:7890 134d:0001 Modem: PCTel Inc HSP MicroModem 56
Modem interrupt assignment and sharing:
19: 0 0 IO-APIC-fasteoi uhci_hcd:usb3
--- Bootup diagnostics for card in PCI slot 04:01.0 ----
[ 0.196114] pci 0000:04:01.0: [134d:7890] type 0 class 0x000703
[ 0.196141] pci 0000:04:01.0: reg 10: [io 0xdf00-0xdf3f]
[ 0.196246] pci 0000:04:01.0: supports D2
[ 0.196251] pci 0000:04:01.0: PME# supported from D0 D2 D3hot
[ 0.196259] pci 0000:04:01.0: PME# disabled
[ 0.828040] serial 0000:04:01.0: BAR 0: set to [io 0xdf00-0xdf3f] (PCI address [0xdf00-0xdf3f])
[ 0.828055] serial 0000:04:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
The PCI slot 04:01.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
For candidate card in slot 00:1b.0, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
00:1b.0 8086:27d8 1458:a002 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller
Modem interrupt assignment and sharing:
44: 1784 195 PCI-MSI-edge snd_hda_intel
--- Bootup diagnostics for card in PCI slot 00:1b.0 ----
[ 0.188333] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
[ 0.188359] pci 0000:00:1b.0: reg 10: [mem 0xfdff8000-0xfdffbfff 64bit]
[ 0.188454] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.188462] pci 0000:00:1b.0: PME# disabled
[ 11.739350] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 11.739425] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[ 11.739462] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 11.828283] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input3
[ 11.829821] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
[ 11.830173] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[ 11.830465] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[ 11.830777] input: HDA Intel Line-Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
The PCI slot 00:1b.0 of the modem card may be disabled early in
a bootup process, but then enabled later. If modem drivers load
but the modem is not responsive, read DOCs/Bootup.txt about possible fixes.
Send dmesg.txt along with ModemData.txt to discuss@linmodems.org
if help is needed.
For candidate card in slot 01:00.1, firmware information and bootup diagnostics are:
PCI slot PCI ID SubsystemID Name
---------- --------- --------- --------------
01:00.1 10de:0be4 10de:0000 Audio device: NVIDIA Corporation High Definition Audio Controller
Modem interrupt assignment and sharing:
17: 322 310 IO-APIC-fasteoi snd_hda_intel
--- Bootup diagnostics for card in PCI slot 01:00.1 ----
[ 0.190104] pci 0000:01:00.1: [10de:0be4] type 0 class 0x000403
[ 0.190122] pci 0000:01:00.1: reg 10: [mem 0xfcffc000-0xfcffffff]
[ 12.622219] snd_hda_intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 12.622292] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[ 13.540199] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[ 13.540617] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[ 13.540866] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[ 13.541107] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
=== Finished firmware and bootup diagnostics, next deducing cogent software. ===
Predictive diagnostics for card in bus 00:1b.0:
Modem chipset detected on
NAME="Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller "
CLASS=0403
PCIDEV=8086:27d8
SUBSYS=1458:a002
IRQ=44
IDENT=PCTEL
For candidate modem in: 00:1b.0
0403 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller
Primary device ID: 8086:27d8
Support type needed or chipset: PCTEL
At http://linmodems.technion.ac.il/pctel-linux
Get the pctel-0.9.7-9-rht-10.tar.gz
Unpack under Linux with:
tar zxf pctel*.tar.gz
and read instuctions therein.
Read DOCs/Pctel.txt and Modem/DOCs/YourSystem.txt for follow through guidance.
Writing DOCs/Pctel.txt
Predictive diagnostics for card in bus 01:00.1:
Modem chipset detected on
NAME="Audio device: NVIDIA Corporation High Definition Audio Controller "
CLASS=0403
PCIDEV=10de:0be4
SUBSYS=10de:0000
IRQ=17
IDENT=PCTEL
For candidate modem in: 01:00.1
0403 Audio device: NVIDIA Corporation High Definition Audio Controller
Primary device ID: 10de:0be4
Support type needed or chipset: PCTEL
At http://linmodems.technion.ac.il/pctel-linux
Get the pctel-0.9.7-9-rht-10.tar.gz
Unpack under Linux with:
tar zxf pctel*.tar.gz
and read instuctions therein.
Read DOCs/Pctel.txt and Modem/DOCs/YourSystem.txt for follow through guidance.
Writing DOCs/Pctel.txt
Predictive diagnostics for card in bus 04:01.0:
Modem chipset detected on
NAME="Modem: PCTel Inc HSP MicroModem 56 "
CLASS=0703
PCIDEV=134d:7890
SUBSYS=134d:0001
IRQ=19
HDA2=00:1b.0
HDA2=01:00.1
IDENT=PCTEL
For candidate modem in: 04:01.0
0703 Modem: PCTel Inc HSP MicroModem 56
Primary device ID: 134d:7890
Support type needed or chipset: PCTEL
At http://linmodems.technion.ac.il/pctel-linux
Get the pctel-0.9.7-9-rht-10.tar.gz
Unpack under Linux with:
tar zxf pctel*.tar.gz
and read instuctions therein.
Read DOCs/Pctel.txt and Modem/DOCs/YourSystem.txt for follow through guidance.
Writing DOCs/Pctel.txt
Completed candidate modem analyses.
The base of the UDEV device file system is: /dev/.udev
Versions adequately match for the compiler installed: 4.6.3
and the compiler used in kernel assembly: 4.6
linux-headers-3.2.0-23-generic-pae resources needed for compiling are not manifestly ready!
The patch utility is needed for compiling ALSA drivers, and possibly others.
If compiling is necessary packages must be installed, providing:
linux-headers-3.2.0-23-generic-pae
If a driver compilation fails, with message including some lack of some FileName.h (stdio.h for example), then
Some additional kernel-header files need installation to /usr/include. The minimal additional packages are libc6-dev
and any of its dependents, under Ubuntu linux-libc-dev
If an alternate ethernet connection is available,
$ apt-get update
$ apt-get -s install linux-kernel-devel
will install needed packages.
For Debian/Ubuntu related distributions, run the following command to display the needed package list:
Otherwise packages have to be found through http://packages.ubuntu.com
Once downloaded and transferred into a Linux partition,
they can be installed alltogether with:
$ sudo dpkg -i *.deb
Checking pppd properties:
-rwsr-xr-- 1 root dip 273272 ظپظˆط±غŒظ‡ 4 2011 /usr/sbin/pppd
In case of an "error 17" "serial loopback" problem, see:
http://linmodems.technion.ac.il/linmodems/archive-sixth/msg02637.html
To enable dialout without Root permission do:
$ su - root (not for Ubuntu)
sudo chmod a+x /usr/sbin/pppd
or under Ubuntu related Linuxes
sudo chmod a+x /usr/sbin/pppd
Checking settings of: /etc/ppp/options
asyncmap 0
noauth
crtscts
lock
hide-password
modem
lcp-echo-interval 30
lcp-echo-failure 4
noipx
In case of a message like:
Warning: Could not modify /etc/ppp/pap-secrets: Permission denied
see http://linmodems.technion.ac.il/bigarch/archive-sixth/msg04656.html
For guidance on FAX usage, get from http://linmodems.technion.ac.il/packages/ get faxing.tar.gz
It has samples for a modem using port /dev/ttySL0, which must be changed to match your modem's port.
Read Modem/DOCs/YourSystem.txt concerning other COMM channels: eth0
Which can interfere with Browser naviagation.
Don't worry about the following, it is for experts should trouble shooting be necessary.
==========================================================
Checking for modem support lines:
--------------------------------------
/device/modem symbolic link:
slmodemd created symbolic link /dev/ttySL0:
Within /etc/udev/ files:
Within /etc/modprobe.conf files:
/etc/modprobe.d/alsa-base.conf:options snd-atiixp-modem index=-2
/etc/modprobe.d/alsa-base.conf:options snd-via82xx-modem index=-2
/etc/modprobe.d/blacklist-modem.conf:# Uncomment these entries in order to blacklist unwanted modem drivers
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-atiixp-modem
/etc/modprobe.d/blacklist-modem.conf:# blacklist snd-via82xx-modem
Within any ancient /etc/devfs files:
Within ancient kernel 2.4.n /etc/module.conf files:
--------- end modem support lines --------
سوال جدید، تاپیک جدید
-
سلام.قبل از اینکه مودم رو نصب کنم باید کرنل رو نصب کنم درست؟
اما وقتی دستور make configure رو میدم برای نصب کرنل ارور زیر رو میده:
make: *** No rule to make target `configure'. Stop.
وقتی هم که از این کد :make menuconfig استفاده میکنم این ارور رو میده:
need ncurses-devel for use "make menuconfig"
وقتی هم که فقط make config رو میزنم این قدر سوال میپرسه که خسته میشم و ترمینال رو میبندم.
شما بگین من باید چیکار کنم؟
درضمن سوال قبلیمو هم جواب ندادین ها!
-
سلام یک سوال دارم .... من چند وقته قصد دارم dhcp3-server رو روی backtrack5 r3 نصب کنم تا چند وقت پیش که اون ورژنی هم که خودم داشتم پاک شد و الان wicd رو هم روی backtrack ندارم .... الآن wicd رو از طریق win دانلود می کنم وقتی می خوام پک رو نصب کنم erorr میده ..... کلا می خواستم بدونم از کجا باید بفهمم که مثلا فلان نرم افزار به کرنل من می خوره یا نه ؟؟؟؟ تا بتونم از طریق win دانلود کنم بعد نصب بشه !!!!
-
دوستان برنامه scan modem رو چطوری میتونم دانلود کنم؟ برای پیدا کردن اسم مودم لپ تاپ سیم کارت خورم میخوام.
ممنون
-
قراره هر سوال در موضوع مربوط به خودش پرسیده بشه. این موضوع قفل میشه