Skip to content

Latest commit

 

History

History
62 lines (50 loc) · 1.49 KB

README.md

File metadata and controls

62 lines (50 loc) · 1.49 KB

Kubo - Interplanetary Filesystem (IPFS) - RPMs for Fedora Linux

This is all still in testing. Quick start...

Install repository configuration RPM

sudo dnf install -y dnf-plugins-core distribution-gpg-keys
sudo dnf copr enable taw/ipfs

Install kubo RPM package and add yourself to the ipfs group...

# Install IPFS
sudo dnf install -y kubo --refresh
# Join the ipfs so you have access to ipfs, the application
sudo usermod -a -G ipfs $USER
newgrp -
getent group ipfs
groups

# if you do not see ipfs as one of your groups, force the relogin.
# if, for whatever reason, 'newgrp -' doesn't do what it is suppose to do
sudo su -l $USER
getent group ipfs
groups

Where is everything installed?

rpm -ql kubo
ls -lh /usr/bin/ipfs

How to use it?

Browse to https://docs.ipfs.tech and https://ipfs.io/ and read the docs.

Enjoy

Comments and feedback: [email protected]