Hmm no ttyACM0
tony can you do a lsmod after a reboot and make sure
there is a module called cdc_acm
if not do a modprobe cdc_acm.
then look at dmesg this should give you some hints as
to what the device is called. Is it a stock standard FC3 kernel ?
ie AS root
# grep -i usb dmesg
post the results here.
Now the other thing will be is that now udev also automagically creates
physical device nodes as well as there appropriate symlinks (FC3 should have created a rules
file for your modem but ah well best laid plans and all that)
have alook in here to see how things are done
/etc/udev/rules.d/50-udev.rules
This is from a post to SLUG I did earlier this month
<snip>
2. The other alternative (a more correct method ?) is to make a copy of
/etc/udev/rules.d/50-udev.rules and call it 10-my-udev.rules in the
same directory as
50-udev.rules (the number just tells it what order to apply the rules)
and in here
add your own rule. You will have to trawl through /sys to find your
device but this site tells you all you need to know
http://www.reactivated.net/udevrules.php
Also I have had more luck using the sysfs attribs to create rules as
they are permananent and being able to name your own devices is quite
useful too ie
/dev/usb_key
/dev/this_printer_sucks
</snip>
So the gist is look through /sys until you find your modem dmesg can help here
and then create a rule so that the modem is found
hope this helps
--
James