diff --git a/content/v2.0/get-started.md b/content/v2.0/get-started.md
index e46cb70b3..afba18774 100644
--- a/content/v2.0/get-started.md
+++ b/content/v2.0/get-started.md
@@ -25,13 +25,25 @@ Download InfluxDB v2.0 alpha for macOS.
InfluxDB v2.0 alpha (macOS)
### Place the executables in your $PATH
-Unzip the download package and place the `influx` and `influxd` executables in your system `$PATH`.
+Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`.
+
+_**Note:** The following commands are examples. Adjust the file paths to your own needs._
```sh
-# Example
-cp ~/Downloads/influxdb_2.0.0-alpha.1_darwin_amd64/{influx,influxd} /usr/local/bin/
+# Unpackage contents to the current working directory
+gunzip -c ~/Downloads/influxdb_2.0.0-alpha.1_darwin_amd64.tar.gz | tar xopf -
+
+# Copy the influx and influxd binary to your $PATH
+sudo cp influxdb_2.0.0-alpha.1_darwin_amd64/{influx,influxd} /usr/local/bin/
```
+{{% note %}}
+Both InfluxDB 1.x and 2.x include `influx` and `influxd` binaries.
+If InfluxDB 1.x binaries are already in your `$PATH`, run the 2.0 binaries in place
+or rename them before putting them in your `$PATH`.
+If you rename the binaries, all references to `influx` and `influxd` in this documentation refer to your renamed binaries.
+{{% /note %}}
+
### Networking ports
By default, InfluxDB uses TCP port `9999` for client-server communication over InfluxDB’s HTTP API.
@@ -71,13 +83,25 @@ Download InfluxDB v2.0 alpha package appropriate for your chipset.
InfluxDB v2.0 alpha (arm)
### Place the executables in your $PATH
-Unzip the download package and place the `influx` and `influxd` executables in your system `$PATH`.
+Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`.
+
+_**Note:** The following commands are examples. Adjust the file names, paths, and utilities to your own needs._
```sh
-# Example
-cp /path/to/{influx,influxd} /usr/local/bin/
+# Unpackage contents to the current working directory
+tar xvzf path/to/influxdb_2.0.0-alpha.1_linux_amd64.tar.gz
+
+# Copy the influx and influxd binary to your $PATH
+sudo cp influxdb_2.0.0-alpha.1_linux_amd64/{influx,influxd} /usr/local/bin/
```
+{{% note %}}
+Both InfluxDB 1.x and 2.x include `influx` and `influxd` binaries.
+If InfluxDB 1.x binaries are already in your `$PATH`, run the 2.0 binaries in place
+or rename them before putting them in your `$PATH`.
+If you rename the binaries, all references to `influx` and `influxd` in this documentation refer to your renamed binaries.
+{{% /note %}}
+
### Networking ports
By default, InfluxDB uses TCP port `9999` for client-server communication over InfluxDB’s HTTP API.
diff --git a/content/v2.0/reference/cli/influx/org/members/_index.md b/content/v2.0/reference/cli/influx/org/members/_index.md
index c55d52882..6e1def101 100644
--- a/content/v2.0/reference/cli/influx/org/members/_index.md
+++ b/content/v2.0/reference/cli/influx/org/members/_index.md
@@ -17,11 +17,11 @@ influx org members [command]
```
## Subcommands
-| Subcommand | Description |
-|:---------- |:----------- |
-| add | Add organization member |
-| list | List organization members |
-| remove | Remove organization member |
+| Subcommand | Description |
+|:---------- |:----------- |
+| [add](/v2.0/reference/cli/influx/org/members/add) | Add organization member |
+| [list](/v2.0/reference/cli/influx/org/members/list) | List organization members |
+| [remove](/v2.0/reference/cli/influx/org/members/remove) | Remove organization member |
## Flags
| Flag | Description |
diff --git a/content/v2.0/reference/cli/influx/task/log/_index.md b/content/v2.0/reference/cli/influx/task/log/_index.md
index a579a986b..503cb9b69 100644
--- a/content/v2.0/reference/cli/influx/task/log/_index.md
+++ b/content/v2.0/reference/cli/influx/task/log/_index.md
@@ -17,9 +17,9 @@ influx task log [command]
```
## Subcommands
-| Subcommand | Description |
-|:---------- |:----------- |
-| find | Find logs for task |
+| Subcommand | Description |
+|:---------- |:----------- |
+| [find](/v2.0/reference/cli/influx/task/log/find) | Find logs for task |
## Flags
| Flag | Description |
diff --git a/content/v2.0/reference/cli/influx/task/run/_index.md b/content/v2.0/reference/cli/influx/task/run/_index.md
index d46fcdc2f..cfb5f2b9d 100644
--- a/content/v2.0/reference/cli/influx/task/run/_index.md
+++ b/content/v2.0/reference/cli/influx/task/run/_index.md
@@ -19,9 +19,9 @@ influx task run [command]
```
## Subcommands
-| Subcommand | Description |
-|:---------- |:----------- |
-| find | Find runs for a task |
+| Subcommand | Description |
+|:---------- |:----------- |
+| [find](/v2.0/reference/cli/influx/task/run/find) | Find runs for a task |
## Flags
| Flag | Description |