summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/project-docs/linux-performance-tracing.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/project-docs/linux-performance-tracing.md b/Documentation/project-docs/linux-performance-tracing.md
index 2f97fb3b54..523ed901fb 100644
--- a/Documentation/project-docs/linux-performance-tracing.md
+++ b/Documentation/project-docs/linux-performance-tracing.md
@@ -146,14 +146,14 @@ what is going on in the NATIVE runtime dlls (typically libcoreclr.so), is intere
symbols for these when it converts its data, but ONLY if the symbols for these native DLLs are present (and are beside
the library they are for).
-There is a global command called [dotnet symbols](https://github.com/dotnet/symstore/blob/master/src/dotnet-symbol/README.md#symbol-downloader-dotnet-cli-extension) which does this. This tool was mostly desiged to download symbols
-for debugging, but it works for perfollect as well. There are three steps to getting the symbols
+There is a global command called [dotnet symbol](https://github.com/dotnet/symstore/blob/master/src/dotnet-symbol/README.md#symbol-downloader-dotnet-cli-extension) which does this. This tool was mostly desiged to download symbols
+for debugging, but it works for perfcollect as well. There are three steps to getting the symbols
- 1. Install dotnet symbols
+ 1. Install dotnet symbol
2. Download the symbols.
3. Copy the symbols to the correct place
-To install dotnet symbols issue the command
+To install dotnet symbol issue the command
```
dotnet tool install -g dotnet-symbol
```
@@ -161,7 +161,7 @@ With that installed download the symbols to a local directory. if your installe
2.1.0 the command to do this is
```
mkdir mySymbols
- dotnet symbols --symbols --output mySymbols /usr/share/dotnet/shared/Microsoft.NETCore.App/2.1.0/lib*.so
+ dotnet symbol --symbols --output mySymbols /usr/share/dotnet/shared/Microsoft.NETCore.App/2.1.0/lib*.so
```
Now all the symbols for those native dlls are in mySymbols. You then have to copy them (as super user next to the
dlls that they are for.