Blockstream / green_qt

Blockstream Green App
GNU General Public License v3.0
188 stars 31 forks source link

Fix connection issues-Jade #50

Closed kloinka closed 3 years ago

kloinka commented 3 years ago

Description

JADE connection via Green Linux AppImage

Version

Release 0.1.0

Steps to reproduce

connect Jade via USB as a non-root user

Expected behaviour

connection to Jade

Actual behaviour

Linux Wallet jade app wouldn't detect jade

Screenshots

NA

Device or machine

Jade+Linux(Fedora33)

Additional info

Linux detects the Jade lsusb: Bus 003 Device 007: ID 10c4:ea60 Silicon Labs CP210x UART Bridge But... unless I run Blockstream Green as sudo it wont detect the Jade. is there a udev rule for Jade's usb interface?

domegabri commented 3 years ago

Can you try adding the user to the dialout group? I think that should fix. Let me know if this works for you.

kloinka commented 3 years ago

That worked! but for Fedora: If you try to add yourself to the dialout group it will fail. You have to: Add the group manually grep ^dialout: /usr/lib/group |sudo tee -a /etc/group add current user to group sudo gpasswd -a ${USER} dialout activate that group newgrp dialout You may also need to log out and in to the GUI for app to work.

mercurytoxic commented 2 years ago

Since Archlinux doesn't use the dialout group the proper group as specified in here is uucp. Add the current user to uucp sudo gpasswd -a ${USER} uucp To recognize the new group, If you don't want to log out and back in the user can use newgrp uucp