[Solved] Garmin GPS does not play with Debian 12? #439
-
During the sailing season I use to transfer files from my GPS (Garmin GPSmap 60C) to my computer for analysis and illustrations. I have done this for many, many years. Now I find this does not work on my new computer running Debian 12 (Spiral Linux). For some reason the GPS finds this computer objectionable some seconds after I connect the GPS cable: It beeps and the ikon indicating connection disappears from its screen. When I try with my side-kick laptop (Lenovo X230 so some ten years of age) I get the same behavior. This laptop also runs Debian 12 (Spiral Linux). In both cases Linux still thinks the GPS is there (according to dmesg) but file transfer is not possible. When I try with my old (13 years I think) computer running Debian 10 I have no problem connecting the GPS and transferring files. I see no obvious difference between these machines when comparing the output from dmesg and lsusb after having connected the GPS . Searching the net has so far not yielded anything useful. Any ideas? It would be nice to not be dependent on that old computer. TIA, /Martin |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 8 replies
-
Hi there, could you please try booting with the Debian 12 Stable kernel (version 6.1.0) that is also installed by default with SpiralLinux? |
Beta Was this translation helpful? Give feedback.
-
Maybe missing MTP packages? |
Beta Was this translation helpful? Give feedback.
-
I have a solution now. Thanks to a Debian group at usenet news I learned about disabling automatic USB power save. Before I hook up my GPS to my new computer I use this command:
/Martin |
Beta Was this translation helpful? Give feedback.
-
Permanent fix: sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="/&usbcore.autosuspend=-1 /' /etc/default/grub update-grub systemctl reboot |
Beta Was this translation helpful? Give feedback.
I have a solution now. Thanks to a Debian group at usenet news I learned about disabling automatic USB power save. Before I hook up my GPS to my new computer I use this command:
sudo sh -c 'echo -1 > /sys/module/usbcore/parameters/autosuspend'
/Martin