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
Authenticates and adds a new connection. By default, it uses port 22 and password authentication. (You'll be prompted to enter a password.) Use both **--password** and **--privatekey** to specify a password for a private key.
32
+
Authenticates and adds a new connection. By default, it uses port 22 and password authentication. (You'll be prompted to enter a password.) Use both **-`-password`** and **`--privatekey`** to specify a password for a private key.
If *value* is empty, then the property *key* is deleted.\
42
+
If authentication fails, no changes will be made.\
43
+
If no connection is specified (what is meant by *default*, above), the user's default remote connection is used.
44
+
45
+
-**`remove-all`**
38
46
39
47
Removes all stored connections.
48
+
49
+
-**`clean`**
50
+
51
+
Deletes header cache for connections that no longer exist.
40
52
41
-
-**list**
53
+
-**`list`**\[**`--properties`**]
42
54
43
-
Displays informationand IDs of all stored connections.
55
+
Displays information, IDs, and properties of all stored connections.
44
56
45
-
-**help**
57
+
-**`help`**
46
58
47
59
Displays a help screen.
48
60
49
-
-**version**
61
+
-**`version`**
50
62
51
63
Displays version information.
52
64
53
65
### Options
54
66
55
-
-**-q**, **--quiet**
67
+
-**`-q`**, **`--quiet`**
56
68
57
69
Prevents output to `stdout` or `stderr`.
58
70
59
-
-**--no-prompt**
71
+
-**`--no-prompt`**
60
72
61
73
Fail instead of prompt, when appropriate.
62
74
63
-
-**--no-verify**
75
+
-**`--no-verify`**
64
76
65
77
Add or modify a connection without authentication.
66
78
67
-
-**--file***filename*
79
+
-**`--file`***filename*
68
80
69
81
Read connection information from the provided *filename*.
70
82
71
-
-**--no-telemetry**
83
+
-**`--no-telemetry`**
72
84
73
-
Disable sending usage data back to Microsoft. Usage data is collected and sent back to Microsoft unless the **--no-telemetry** flag is passed.
85
+
Disable sending usage data back to Microsoft. Usage data is collected and sent back to Microsoft unless the **`--no-telemetry`** flag is passed.
74
86
75
-
-**-n**, **--dry-run**
87
+
-**`-n`**, **`--dry-run`**
76
88
77
89
Does a dry run of the command.
90
+
91
+
-**`--p`**
78
92
79
-
-**-p**
93
+
Same as **`--password`**.
80
94
81
-
Same as **--password**.
95
+
-**`-i`**
82
96
83
-
-**-i**
84
-
85
-
Same as **--privatekey**.
97
+
Same as **`--privatekey`**.
86
98
87
99
## Examples
88
100
@@ -98,8 +110,14 @@ This command removes the connection that has ID 1975957870 from the list of conn
98
110
ConnectionManager.exe remove 1975957870
99
111
```
100
112
113
+
This command overrides the choice of shell for the connection with connection ID 21212121. Supported shells are: **`sh, csh, bash, tcsh, ksh, zsh, dash`**. If the shell found on the Linux system isn't supported, then we fall back to explicitly use **`sh`** for all commands.
Copy file name to clipboardExpand all lines: docs/linux/linux-asan-configuration.md
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Configure Linux projects to use Address Sanitizer"
3
3
description: "Describes how to configure C++ Linux projects in Visual Studio to use Address Sanitizer."
4
-
ms.date: "09/25/2020"
4
+
ms.date: "10/7/2020"
5
5
---
6
6
# Configure Linux projects to use Address Sanitizer
7
7
@@ -33,7 +33,7 @@ To enable ASan for MSBuild-based Linux projects, right-click on the project in *
33
33
34
34

35
35
36
-
You can pass optional ASan runtime flags by navigating to **Configuration Properties** > **Debugging** > **AddressSanitizer Runtime Flags**. Click the downarrow to add or remove flags.
36
+
You can pass optional ASan runtime flags by navigating to **Configuration Properties** > **Debugging** > **AddressSanitizer Runtime Flags**. Click the down-arrow to add or remove flags.
37
37
38
38

39
39
@@ -79,4 +79,6 @@ You can install the ASan debug bits on Linux distros that use apt with the follo
79
79
sudo apt-get install libasan4-dbg
80
80
```
81
81
82
+
Full instructions for installing debug symbol packages on Ubuntu can be found at [Debug symbol packages](https://wiki.ubuntu.com/Debug%20Symbol%20Packages).
83
+
82
84
If ASan is enabled, Visual Studio prompts you at the top of the **Debug** pane of the **Output** window to install the ASan debug symbols.
0 commit comments