You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/blobfuse2-commands-mount.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
1
---
2
-
title: How to use the BlobFuse2 mount command to mount a blob storage container as a file system in Linux, or to display and manage existing mount points (preview). | Microsoft Docs
2
+
title: How to use the BlobFuse2 mount command to mount a Blob Storage container as a file system in Linux, or to display and manage existing mount points (preview). | Microsoft Docs
3
3
titleSuffix: Azure Blob Storage
4
-
description: Learn how to use the BlobFuse2 mount command to mount a blob storage container as a file system in Linux, or to display and manage existing mount points (preview).
4
+
description: Learn how to use the BlobFuse2 mount command to mount a Blob Storage container as a file system in Linux, or to display and manage existing mount points (preview).
5
5
author: jimmart-dev
6
6
ms.service: storage
7
7
ms.subservice: blobs
8
8
ms.topic: how-to
9
-
ms.date: 08/02/2022
9
+
ms.date: 10/01/2022
10
10
ms.author: jammart
11
11
ms.reviewer: tamram
12
12
---
13
13
14
14
# How to use the BlobFuse2 mount command (preview)
15
15
16
-
Use the `blobfuse2 mount` command to mount a blob storage container as a file system in Linux, or to display existing mount points.
16
+
Use the `blobfuse2 mount` command to mount a Blob Storage container as a file system in Linux, or to display existing mount points.
17
17
18
18
> [!IMPORTANT]
19
19
> BlobFuse2 is the next generation of BlobFuse and is currently in preview.
@@ -49,7 +49,7 @@ The supported subcommands for `blobfuse2 mount` are:
49
49
50
50
| Command | Description |
51
51
|--|--|
52
-
|[all](blobfuse2-commands-mount-all.md)| Mounts all Azure blob containers in a specified storage account |
52
+
|[all](blobfuse2-commands-mount-all.md)| Mounts all blob containers in a specified storage account |
53
53
|[list](blobfuse2-commands-mount-list.md)| Lists all BlobFuse2 mount points |
54
54
55
55
Select one of the command links in the table above to view the documentation for the individual subcommands, including the arguments and flags they support.
@@ -95,7 +95,7 @@ The following flags apply only to command `blobfuse2 mount`:
95
95
> [!NOTE]
96
96
> The following examples assume you have already created a configuration file in the current directory.
97
97
98
-
1. Mount an individual Azure blob storage container to a new directory using the settings from a configuration file, and with foreground mode disabled:
98
+
1. Mount an individual Azure Blob Storage container to a new directory using the settings from a configuration file, and with foreground mode disabled:
99
99
100
100
```bash
101
101
~$ mkdir bf2a
@@ -105,7 +105,7 @@ The following flags apply only to command `blobfuse2 mount`:
105
105
1 : /home/<user>/bf2a
106
106
```
107
107
108
-
1. Mount all blob storage containers in the storage account specified in the configuration file to the path specified in the command. (Each container will be a subdirectory under the directory specified):
108
+
1. Mount all Blob Storage containers in the storage account specified in the configuration file to the path specified in the command. (Each container will be a subdirectory under the directory specified):
109
109
110
110
```bash
111
111
~$ mkdir bf2all
@@ -118,7 +118,7 @@ The following flags apply only to command `blobfuse2 mount`:
118
118
2 : /home/<user>/bf2all/blobfuse2b
119
119
```
120
120
121
-
1. Mount a fast storage device, then mount a blob storage container specifying the path to the mounted disk as the BlobFuse2 file caching location:
121
+
1. Mount a fast storage device, then mount a Blob Storage container specifying the path to the mounted disk as the BlobFuse2 file caching location:
122
122
123
123
```bash
124
124
~$ sudo mkdir /mnt/resource/blobfuse2tmp -p
@@ -130,13 +130,13 @@ The following flags apply only to command `blobfuse2 mount`:
130
130
1 : /home/<user>/bf2a/blobfuse2a
131
131
```
132
132
133
-
1. Mount a blob storage container in read-only mode and skipping the automatic BlobFuse2 version check:
133
+
1. Mount a Blob Storage container in read-only mode and skipping the automatic BlobFuse2 version check:
134
134
135
135
```bash
136
136
blobfuse2 mount ./mount_dir --config-file=./config.yaml --read-only --disable-version-check=true
137
137
```
138
138
139
-
1. Mount a blob storage container using an existing configuration file, but override the container name (mounting another container in the same storage account):
139
+
1. Mount a Blob Storage container using an existing configuration file, but override the container name (mounting another container in the same storage account):
140
140
141
141
```bash
142
142
blobfuse2 mount ./mount_dir2 --config-file=./config.yaml --container-name=container2
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-how-to-mount-container-linux.md
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,24 @@
1
1
---
2
-
title: How to mount Azure Blob storage as a file system on Linux with BlobFuse v1 | Microsoft Docs
2
+
title: How to mount Azure Blob Storage as a file system on Linux with BlobFuse v1 | Microsoft Docs
3
3
titleSuffix: Azure Blob Storage
4
-
description: Learn how to mount an Azure Blob storage container with BlobFuse v1, a virtual file system driver on Linux.
4
+
description: Learn how to mount an Azure Blob Storage container with BlobFuse v1, a virtual file system driver on Linux.
5
5
author: jimmart-dev
6
6
ms.service: storage
7
7
ms.subservice: blobs
8
8
ms.topic: how-to
9
-
ms.date: 09/26/2022
9
+
ms.date: 10/01/2022
10
10
ms.author: jammart
11
11
ms.reviewer: tamram
12
12
---
13
13
14
-
# How to mount Blob storage as a file system with BlobFuse v1
15
-
16
-
## Overview
14
+
# How to mount Azure Blob Storage as a file system with BlobFuse v1
17
15
18
16
> [!IMPORTANT]
19
17
> [BlobFuse2](blobfuse2-what-is.md) is the latest version of BlobFuse and has many significant improvements over the version discussed in this article, BlobFuse v1. To learn about the improvements made in BlobFuse2, see [the list of BlobFuse2 enhancements](blobfuse2-what-is.md#blobfuse2-enhancements). BlobFuse2 is currently in preview and might not be suitable for production workloads.
20
-
>
21
-
> This article is about the original version of BlobFuse. It is simply referred to as "BlobFuse" in many cases, but is also referred to as "BlobFuse v1" in this and other articles to distinguish it from the next generation of BlobFuse, BlobFuse2.
22
18
23
-
[BlobFuse](https://github.com/Azure/azure-storage-fuse) is a virtual file system driver for Azure Blob storage. BlobFuse allows you to access your existing block blob data in your storage account through the Linux file system. BlobFuse uses the virtual directory scheme with the forward-slash '/' as a delimiter.
19
+
[BlobFuse](https://github.com/Azure/azure-storage-fuse) is a virtual file system driver for Azure Blob Storage. BlobFuse allows you to access your existing block blob data in your storage account through the Linux file system. BlobFuse uses the virtual directory scheme with the forward-slash '/' as a delimiter.
24
20
25
-
This guide shows you how to use BlobFuse v1, and mount a Blob storage container on Linux and access data. To learn more about BlobFuse, see the [readme](https://github.com/Azure/azure-storage-fuse) and [wiki](https://github.com/Azure/azure-storage-fuse/wiki).
21
+
This guide shows you how to use BlobFuse v1 and mount a Blob Storage container on Linux and access data. To learn more about BlobFuse v1, see the [readme](https://github.com/Azure/azure-storage-fuse) and [wiki](https://github.com/Azure/azure-storage-fuse/wiki).
26
22
27
23
> [!WARNING]
28
24
> BlobFuse doesn't guarantee 100% POSIX compliance as it simply translates requests into [Blob REST APIs](/rest/api/storageservices/blob-service-rest-api). For example, rename operations are atomic in POSIX, but not in BlobFuse.
0 commit comments