Skip to content

Commit 4642fd3

Browse files
committed
Feedback.
1 parent 568835a commit 4642fd3

File tree

2 files changed

+26
-27
lines changed

2 files changed

+26
-27
lines changed

articles/storage/files/storage-how-to-use-files-linux.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,20 @@ ms.subservice: files
3131

3232
### Minimum recommended versions with corresponding mount capabilities (SMB version 2.1 vs SMB version 3.0)
3333

34-
| | SMB 2.1 <br>(Mounts on VMs within same Azure region) | SMB 3.0 <br>(Mounts from on premises and cross-region) |
35-
| --- | :---: | :---: |
36-
| Ubuntu Server | 14.04+ | 16.04+ |
37-
| RHEL | 7+ | 7.5+ |
38-
| CentOS | 7+ | 7.5+ |
39-
| Debian | 8+ | |
40-
| openSUSE | 13.2+ | 42.3+ |
41-
| SUSE Linux Enterprise Server | 12 | 12 SP3+ |
42-
43-
If your Linux distribution is not listed here, you can check to see the Linux kernel version with the following command:
44-
45-
```bash
46-
uname -r
47-
```
34+
| | SMB 2.1 <br>(Mounts on VMs within same Azure region) | SMB 3.0 <br>(Mounts from on premises and cross-region) |
35+
| --- | :---: | :---: |
36+
| Ubuntu Server | 14.04+ | 16.04+ |
37+
| RHEL | 7+ | 7.5+ |
38+
| CentOS | 7+ | 7.5+ |
39+
| Debian | 8+ | |
40+
| openSUSE | 13.2+ | 42.3+ |
41+
| SUSE Linux Enterprise Server | 12 | 12 SP3+ |
42+
43+
If your Linux distribution is not listed here, you can check to see the Linux kernel version with the following command:
44+
45+
```bash
46+
uname -r
47+
```
4848

4949
* <a id="install-cifs-utils"></a>**The cifs-utils package is installed.**
5050
The cifs-utils package can be installed using the package manager on the Linux distribution of your choice.

articles/storage/files/storage-troubleshoot-linux-file-connection-problems.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,16 @@ In addition to the troubleshooting steps in this article, you can use [AzFileDia
2222

2323
Common causes for this problem are:
2424

25-
2625
- You're using an incompatible Linux distribution client. We recommend that you use the following Linux distributions to connect to an Azure file share:
2726

28-
| | SMB 2.1 <br>(Mounts on VMs within the same Azure region) | SMB 3.0 <br>(Mounts from on-premises and cross-region) |
29-
| --- | :---: | :---: |
30-
| Ubuntu Server | 14.04+ | 16.04+ |
31-
| RHEL | 7+ | 7.5+ |
32-
| CentOS | 7+ | 7.5+ |
33-
| Debian | 8+ | |
34-
| openSUSE | 13.2+ | 42.3+ |
35-
| SUSE Linux Enterprise Server | 12 | 12 SP3+ |
27+
| | SMB 2.1 <br>(Mounts on VMs within the same Azure region) | SMB 3.0 <br>(Mounts from on-premises and cross-region) |
28+
| --- | :---: | :---: |
29+
| Ubuntu Server | 14.04+ | 16.04+ |
30+
| RHEL | 7+ | 7.5+ |
31+
| CentOS | 7+ | 7.5+ |
32+
| Debian | 8+ | |
33+
| openSUSE | 13.2+ | 42.3+ |
34+
| SUSE Linux Enterprise Server | 12 | 12 SP3+ |
3635

3736
- CIFS utilities (cfs-utils) are not installed on the client.
3837
- The minimum SMB/CIFS version, 2.1, is not installed on the client.
@@ -98,10 +97,10 @@ Reduce the number of concurrent open handles by closing some handles, and then r
9897
- Use [AzCopy](../common/storage-use-azcopy.md?toc=%2fazure%2fstorage%2ffiles%2ftoc.json) for any transfer between two file shares.
9998
- Using cp with parallel could improve copy speed, the number of threads depends on your use case and workload. This example uses six: `find * -type f | parallel --will-cite -j 6 cp {} /mntpremium/ &`.
10099
- Open source third party tools such as:
101-
- [GNU Parallel](http://www.gnu.org/software/parallel/).
102-
- [Fpart](https://github.com/martymac/fpart) - Sorts files and packs them into partitions.
103-
- [Fpsync](https://github.com/martymac/fpart/blob/master/tools/fpsync) - Uses Fpart and a copy tool to spawn multiple instances to migrate data from src_dir to dst_url.
104-
- [Multi](https://github.com/pkolano/mutil) - Multi-threaded cp and md5sum based on GNU coreutils.
100+
- [GNU Parallel](http://www.gnu.org/software/parallel/).
101+
- [Fpart](https://github.com/martymac/fpart) - Sorts files and packs them into partitions.
102+
- [Fpsync](https://github.com/martymac/fpart/blob/master/tools/fpsync) - Uses Fpart and a copy tool to spawn multiple instances to migrate data from src_dir to dst_url.
103+
- [Multi](https://github.com/pkolano/mutil) - Multi-threaded cp and md5sum based on GNU coreutils.
105104

106105
<a id="error115"></a>
107106
## "Mount error(115): Operation now in progress" when you mount Azure Files by using SMB 3.0

0 commit comments

Comments
 (0)