Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc: Correct fscache distribution steps #482

Merged
merged 1 commit into from
Jun 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions docs/nydus-fscache.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,17 @@ CONFIG_EROFS_FS_ONDEMAND=y
2. Check out the latest nydus source code with \
``git clone https://github.com/dragonflyoss/image-service.git``

3. Build nydusd with \
``cargo build --target x86_64-unknown-linux-gnu --features=fusedev --release --target-dir target-fusedev --bin nydusd``
3. Build nydusd and nydus-image with

4. Build ctr-remote with
``` bash
cd image-service
make release
```

4. Copy the "nydus-image" binary file compiled in Step 3 into _$PATH_ e.g. /usr/local/bin with \
``cp target-fusedev/release/nydus-image /usr/local/bin``
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

x86_64-unknown-linux-gnu isn't occured on my side as well.


5. Build ctr-remote with

``` bash
cd contrib/ctr-remote
Expand Down