Skip to content

Commit 9639598

Browse files
committed
fix(fls): update
1 parent e084290 commit 9639598

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

pages/file-storage/how-to/mount-file-system.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,12 @@ This page explains how to mount a file system to one or several Scaleway Instanc
3636
5. Run the previously copied mount command to mount your file system at the specified mount point (`/mnt` by default):
3737

3838
```sh
39-
mount -t virtiofs <file_system_id> /mnt
39+
mount -t virtiofs <file_system_id> /mnt/my_fs
4040
```
4141

42-
<Message type="note">
43-
You can specify a different mount point by replacing `/mnt` by the desired directory.
42+
<Message type="important">
43+
- You can specify a different mount point by replacing `/mnt` by the desired directory.
44+
- We recommend creating a dedicated directory to mount your file system, such as `/mnt/my_fs`
4445
</Message>
4546

4647
Your file system is now mounted and accessible from the specified mount point in your Instance.

pages/file-storage/how-to/unmount-file-system.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This page explains how to unmount a file system from one or several Scaleway Ins
3232
5. Run the following command. Make sure to replace the placeholder and mount point with the appropriate values:
3333

3434
```sh
35-
unmount <file_system_id> /mnt
35+
umount /mnt/my_fs
3636
```
3737

3838
Your file system is now unmounted from the specified Instance.

pages/file-storage/quickstart.mdx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,12 @@ To mount a file system to an Instance, you must have [attached your file system
9797
5. Run the previously copied mount command to mount your file system at the specified mount point (`/mnt` by default):
9898

9999
```sh
100-
mount -t virtiofs <file_system_id> /mnt
100+
mount -t virtiofs <file_system_id> /mnt/my_fs
101101
```
102102

103-
<Message type="note">
104-
You can specify a different mount point by replacing `/mnt` by the desired directory.
103+
<Message type="important">
104+
- You can specify a different mount point by replacing `/mnt` by the desired directory.
105+
- We recommend creating a dedicated directory to mount your file system, such as `/mnt/my_fs`
105106
</Message>
106107

107108
6. Run the following command to display the file systems of your Instance:
@@ -117,7 +118,7 @@ To mount a file system to an Instance, you must have [attached your file system
117118
tmpfs 794M 992K 793M 1% /run
118119
/dev/sda1 8.0G 2.1G 6.0G 26% /
119120
/dev/sda2 881M 61M 758M 8% /boot
120-
2933ea63-example-file-system-c05fe2 94G 0 94G 0% /mnt
121+
2933ea63-example-file-system-c05fe2 94G 0 94G 0% /mnt/my_fs
121122

122123
Your file system is now mounted and accessible from the specified mount point in your Instance.
123124

@@ -134,7 +135,7 @@ Your file system is now mounted and accessible from the specified mount point in
134135
5. Run the following command. Make sure to replace the placeholder and mount point with the appropriate values:
135136

136137
```sh
137-
unmount <file_system_id> /mnt
138+
umount /mnt/my_file_system
138139
```
139140

140141
Your file system is now unmounted from the specified Instance.

0 commit comments

Comments
 (0)