-
Notifications
You must be signed in to change notification settings - Fork 0
How to setup on Fedora
SarahSoomro edited this page Jul 1, 2024
·
9 revisions
This guide describes how to setup fawkes-robotino using ansible on Fedora (37).
You need a Fedora installation. You can find setup instructuions here
The default Package for ansible does not contain the required modules. Run:
dnf install ansible ansible-collection-community-general.noarch
This will install the required ansible modules.
If you have no ssh-key already you need to generate one by running:
ssh-keygen -t rsa -b 4096
You need to have access for this repository on your GitHub account and your ssh-key added. To add your ssh-key to your GitHub account print your public ssh-key with:
cat ~/.ssh/id_rsa.pub
Copy the ssh-key and add it to your GitHub account here.
Get the SSH fingerprint from github.com:
ssh-keyscan github.com >> ~/.ssh/known_hosts
t.b.d.