On Thu, 5 Feb 2026 at 09:12, deepdive07 <
deepd...@gmail.com> wrote:
>
> I tried two dive computers connected via USB cable
Do you have permissions to the USB device? Typically something like
adding a udev file:
/etc/udev/rules.d/99-suunto.rules
containing just a single line like
SUBSYSTEM=="usb", ATTRS{idVendor}=="1493", MODE="0660", GROUP="plugdev"
which gives the 'plugdev' group access to Suunto USB devices (check
that you are in the plugdev group, obviously - just run 'id' from the
terminal).
Alternatively, if you don't care, just make the MODE="0666" to make it
world-readable and writable and the groups don't matter (but obviously
that gives everybody access to that device, it's the "simple but not
really proper" way to do things)
And then after adding that, reload the udev rules:
$ sudo udevadm control --reload-rules
$ sudo udevadm trigger
should make it accessible.
Tweak for whatever things Ubuntu does - there could be distro-specific
issues (ie different distributions might use different groups for
desktop logins)
Linus