Skip to content

Commit

Permalink
Updating READMEs with info about mounting userspace fs
Browse files Browse the repository at this point in the history
  • Loading branch information
smiller123 committed Aug 10, 2021
1 parent cb3196c commit 475f708
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
5 changes: 4 additions & 1 deletion hello_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,11 @@ make clean
**To insert/mount:**
```
sudo mkdir -p /mnt/hello_ll
sudo userspace/target/release/hello_client hello /mnt/hello_ll blkdev
sudo userspace/target/release/hello_client hello /mnt/hello_ll
```
If using a physical block device to back the file system, add ```blkdev``` to the end of the second command.

This will start a process that will remain running while the FUSE file system is mounted.

**To unmount:**
```
Expand Down
5 changes: 4 additions & 1 deletion hello_ll/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,11 @@ make clean
**To insert/mount:**
```
sudo mkdir -p /mnt/hello_ll
sudo userspace/target/release/user_hello hello /mnt/hello_ll blkdev
sudo userspace/target/release/user_hello hello /mnt/hello_ll
```
If using a physical block device to back the file system, add ```blkdev``` to the end of the second command.

This will start a process that will remain running while the FUSE file system is mounted.

**To unmount:**
```
Expand Down
5 changes: 4 additions & 1 deletion hello_ll2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ make clean
**To insert/mount:**
```
sudo mkdir -p /mnt/hello_ll
sudo userspace/target/release/user_hello hello /mnt/hello_ll blkdev
sudo userspace/target/release/user_hello hello /mnt/hello_ll
```
If using a physical block device to back the file system, add ```blkdev``` to the end of the second command.

This will start a process that will remain running while the FUSE file system is mounted.

**To unmount:**
```
Expand Down
5 changes: 4 additions & 1 deletion xv6fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,11 @@ make clean

**To mount/insert:**
```
sudo userspace/target/release/user_xv6fs mkfs/fs.img /mnt/xv6fsll blkdev
sudo userspace/target/release/user_xv6fs mkfs/fs.img /mnt/xv6fsll
```
If using a physical block device to back the file system, add ```blkdev``` to the end of the command.

This will start a process that will remain running while the FUSE file system is mounted.

**To unmount:**
```
Expand Down
5 changes: 4 additions & 1 deletion xv6fs2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ make clean
**To insert/mount:**
```
sudo mkdir -p /mnt/xv6fsll
sudo userspace/target/release/xv6fs ../xv6fs/mkfs/fs.img /mnt/xv6fsll blkdev
sudo userspace/target/release/xv6fs ../xv6fs/mkfs/fs.img /mnt/xv6fsll
```
If using a physical block device to back the file system, add ```blkdev``` to the end of the second command.

This will start a process that will remain running while the FUSE file system is mounted.

**To unmount:**
```
Expand Down
5 changes: 4 additions & 1 deletion xv6fs_prov/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,11 @@ make clean

**To mount/insert:**
```
sudo userspace/target/release/user_xv6fs ../xv6fs/mkfs/fs.img /mnt/xv6fsll blkdev
sudo userspace/target/release/user_xv6fs ../xv6fs/mkfs/fs.img /mnt/xv6fsll
```
If using a physical block device to back the file system, add ```blkdev``` to the end of the command.

This will start a process that will remain running while the FUSE file system is mounted.

**To unmount:**
```
Expand Down

0 comments on commit 475f708

Please sign in to comment.