一键安装
curl -sSL https://d.juicefs.com/install | sh -
手动安装
The x86_64 architecture is downloaded by default, if you are using ARM architecture system, please replace the code amd64
to arm64
manually.
1. 获取最新的版本号
JFS_LATEST_TAG=$(curl -s https://api.github.com/repos/juicedata/juicefs/releases/latest | grep 'tag_name' | cut -d '"' -f 4 | tr -d 'v')
2. 下载客户端到当前目录
wget "https://d.juicefs.com/juicefs/releases/download/v${JFS_LATEST_TAG}/juicefs-${JFS_LATEST_TAG}-linux-amd64.tar.gz"
3. 解压安装包
tar -zxf "juicefs-${JFS_LATEST_TAG}-linux-amd64.tar.gz"
4. 安装客户端
sudo install juicefs /usr/local/bin
对于其他版本或特定架构,请参考文档手动编译。
历史版本
请查看 GitHub Releases。
Homebrew
注意:如果你需要挂载文件系统,请先安装 macFUSE。
brew install juicefs
请参考 Homebrew Formulae 页面了解命令详情。
一键安装
如果你没有 Homebrew,可以使用以下命令安装:
curl -sSL https://d.juicefs.com/install | bash -
更多安装方法,请参考文档。
WSL
推荐在 Windows 下使用 WSL 2 运行 JuiceFS,详情参考文档。
Scoop
PS C:\> scoop install juicefs
详情请参考 Scoop。
手动安装
注意:请先安装 WinFsp。
- Download and unzip the client juicefs-1.2.1-windows-amd64.tar.gz
- 将
juicefs.exe
添加或设置到系统PATH
- 在 PowerShell 或其它终端运行
juicefs.exe
更多安装方法,请参考文档。
手动安装
- Download the latest client juicefs-hadoop-1.2.1.jar
- 将编译好的 JAR 文件和
$JAVA_HOME/lib/tools.jar
放置到组件的 classpath 内。 - 将 JuiceFS 相关配置写入配置文件(通常是
core-site.xml
)。
更多 Hadoop 与 JuiceFS 结合使用的信息,请参考文档。