aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6b3f192..5176f95 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,15 @@ Follow Golang's standard process for installing. It will install the command
into the location pointed to by the GOBIN environment variable or its default
value.
+On Slackware , you want to install programs from third parties under
+the '/usr/local' location.
+
+As root:
+
```
-go install ./cmd/slackware.com
+GOBIN=/usr/local/bin \
+ go install -tags=netcgo ./cmd/slackware.com
```
+
+'-tags=netcgo' makes DNS resolution much more reliable by using the
+systems native DNS resolver.