Skip to content

Commit 488893f

Browse files
committed
Update
同步简易教程
1 parent 51565d2 commit 488893f

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
# IPFS-Node-Installer
1+
![](https://gateway.ipns.tech/ipfs/QmXozedGmyP2Warj1eWsXYcmcfmhfsp87sSdLF5jbiw9LU)
2+
### 介绍
3+
- 官方介绍:
4+
A peer-to-peer hypermedia protocol designed to preserve and grow humanity's knowledge by making the web upgradeable, resilient, and more open.
5+
- 简单介绍:
6+
IPFS是一个对等的分布式文件系统,它尝试为所有计算设备连接到同一个文件系统。在某些方面,IPFS类似于万维网,也可以被视作一个BitTorrent节点群、在同一个Git仓库中交换对象。 换种说法,IPFS提供了一个高吞吐量、按内容寻址的块存储模型,及与内容相关超链接。[11]这形成了一个广义的Merkle有向无环图(DAG)。IPFS结合了分布式散列表、鼓励块交换和一个自我认证的名字空间。IPFS没有单点故障,并且节点不需要相互信任。[12]分布式内容传递可以节约带宽,并防止HTTP方案可能遇到的DDoS攻击。
7+
8+
该文件系统可以通过多种方式访问,包括FUSE与HTTP。将本地文件添加到IPFS文件系统可使其面向全世界可用。文件表示基于其哈希,因此有利于缓存。文件的分发采用一个基于BitTorrent的协议。其他查看内容的用户也有助于将内容提供给网络上的其他人。
9+
10+
### 脚本
11+
```
12+
wget --no-check-certificate https://gateway.ipns.tech/ipns/install-sh.ipns.network/ipfs-autoinstall.sh -O ipfs-autoinstall.sh && bash ipfs-autoinstall.sh
13+
```
14+
15+
### 说明
16+
此脚本适合所有带有Systemd 的 Linux发行版
17+
优化项:
18+
- 自动部署服务化运行
19+
- 优化了GC策略,降低磁盘性能损耗
20+
- 优化了链接管理策略,在不影响性能的情况下提升内容寻迹速度
21+
- 优化了引导节点和引入Peering节点,内容寻迹成功率非常高
22+
- 安装后直接访问:HTTP://机器公网IP:5010/webui ,进入IPFS 的Web UI。

ipfs-autoinstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# v1.0.5
2+
# v1.0.6
33
echo=echo
44
for cmd in echo /bin/echo; do
55
$cmd >/dev/null 2>&1 || continue

0 commit comments

Comments
 (0)