token2 / fido2-manage

This library is partially forked from libfido2 to provide a FIDO2.1 key management tool (with a GUI) under the Linux platform
Other
4 stars 1 forks source link

for Arch users.. #1

Open jazzzy1971 opened 1 month ago

jazzzy1971 commented 1 month ago

Hi, i just installed it on arch linux (endeavourOS). Did not use the 2 lines with apt, worked fine

For the gui, i did

sudo pacman -S tk

instead of python3-tk

jazzzy

token2 commented 1 month ago

Hello and thanks for your message. You submitted this as an issue, but seems like you managed to install this. Shall this be an additional set of instructions to be added to README instead?

jazzzy1971 commented 1 month ago

Hello, yes, it is meant as help for other users. The README for now is only Ubuntu/Debian, maybe it should be for more Distros.

token2 commented 1 month ago

Thanks, so are the steps for Arch as below? git clone https://github.com/Token2/fido2-manage.git

cd fido2-manage

sudo apt install -y zlib1g-dev pkg-config

sudo apt install -y cmake libcbor-dev libpcsclite-dev libssl-dev libudev-dev

rm -rf build && mkdir build && cd build && cmake -USE_PCSC=ON ..

cd ..

make -C build

sudo make -C build install

sudo ldconfig

chmod 755 fido2-manage.sh

sudo apt install -y python3-tk

sudo pacman -S tk

python3 gui.py

jazzzy1971 commented 1 month ago

Hello, no, there is no apt on arch. git clone https://github.com/Token2/fido2-manage.git

cd fido2-manage

rm -rf build && mkdir build && cd build && cmake -USE_PCSC=ON ..

cd ..

make -C build

sudo make -C build install

sudo ldconfig

chmod 755 fido2-manage.sh

sudo apt install -y python3-tk

sudo pacman -S tk

python3 gui.py

worked for me,

:)