8000 GitHub - vorburger/ipfs-rpm: Interplanetary Filesystem RPMs for Fedora Linux
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
forked from taw00/ipfs-rpm

Interplanetary Filesystem RPMs for Fedora Linux

License

Notifications You must be signed in to change notification settings

vorburger/ipfs-rpm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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: t0dd@protonmail.com

0