2018-05-09 09:28:33 +02:00
|
|
|
# ipfs
|
|
|
|
|
|
|
|
> Inter Planetary File System.
|
2019-10-09 12:50:03 -03:00
|
|
|
> A peer-to-peer hypermedia protocol. Aims to make the web more open.
|
2019-06-05 09:05:51 +01:00
|
|
|
> More information: <https://ipfs.io>.
|
2018-05-09 09:28:33 +02:00
|
|
|
|
2020-10-03 16:38:06 +02:00
|
|
|
- Add a file from local to the filesystem, pin it and print the relative hash:
|
2018-05-09 09:28:33 +02:00
|
|
|
|
2022-12-06 07:47:56 +01:00
|
|
|
`ipfs add {{path/to/file}}`
|
2018-05-09 09:28:33 +02:00
|
|
|
|
2020-10-03 16:38:06 +02:00
|
|
|
- Add a directory and its files recursively from local to the filesystem and print the relative hash:
|
2018-05-09 09:28:33 +02:00
|
|
|
|
2022-12-04 10:12:49 +01:00
|
|
|
`ipfs add -r {{path/to/directory}}`
|
2018-05-09 09:28:33 +02:00
|
|
|
|
|
|
|
- Save a remote file and give it a name but not pin it:
|
|
|
|
|
2022-12-06 07:47:56 +01:00
|
|
|
`ipfs get {{hash}} -o {{path/to/file}}`
|
2018-05-09 09:28:33 +02:00
|
|
|
|
|
|
|
- Pin a remote file locally:
|
|
|
|
|
|
|
|
`ipfs pin add {{hash}}`
|
|
|
|
|
|
|
|
- Display pinned files:
|
|
|
|
|
|
|
|
`ipfs pin ls`
|
|
|
|
|
|
|
|
- Unpin a file from the local storage:
|
|
|
|
|
|
|
|
`ipfs pin rm {{hash}}`
|
|
|
|
|
|
|
|
- Remove unpinned files from local storage:
|
|
|
|
|
|
|
|
`ipfs repo gc`
|