Ghost 310 Posted February 4 Report Share Posted February 4 sudo apt install wget curl git build-essential wget https://golang.org/dl/go1.15.7.linux-amd64.tar.gz tar -C /usr/local -xzf go1.15.7.linux-amd64.tar.gz export PATH=$PATH:/usr/local/go/bin go version git clone https://github.com/carsenk/go-ipfs cd go-ipfs make build cp /cmd/ipfs/ipfs /usr/bin/ipfs ipfs init sudo nano /etc/systemd/system/ipfs.service Goes inside ipfs.service ~ [Unit] Description=IPFS Daemon [Service] ExecStart=/usr/bin/ipfs daemon --enable-namesys-pubsub User=root Restart=always LimitNOFILE=10240 [Install] WantedBy=multi-user.target Then just reload and enable ipfs sudo systemctl daemon-reload sudo systemctl enable ipfs sudo systemctl start ipfs 1 Quote Founder of BlockForums.org - PM me for any help - Join our Discord Server: https://discord.gg/UPpQy3n Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.