From 6b0f111d96b08e8fdc59400c3fe76fedfd57b0c4 Mon Sep 17 00:00:00 2001 From: Adin Scannell Date: Wed, 23 Oct 2019 22:59:45 -0700 Subject: Temporarily remove apt instructions The built repository is not working. This will be updated when the release file is being generated correctly. --- content/docs/user_guide/install.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/content/docs/user_guide/install.md b/content/docs/user_guide/install.md index e18af233b..b4f378874 100644 --- a/content/docs/user_guide/install.md +++ b/content/docs/user_guide/install.md @@ -13,9 +13,13 @@ release channels. You should pick the version you'd like to install. For experimentation, the nightly release is recommended. For production use, the latest release is recommended. + + ### Nightly Nightly releases are built most nights from the master branch, and are available @@ -29,18 +33,26 @@ Specific nightly releases can be found at: Note that a release may not be available for every day. + + ### Latest release The latest official release is available at the following URL: `https://storage.googleapis.com/gvisor/releases/release/latest` + + ### Specific release A given release release is available at the following URL: @@ -49,21 +61,29 @@ A given release release is available at the following URL: See the [releases][releases] page for information about specific releases. + + ### Point release A given point release is available at the following URL: `https://storage.googleapis.com/gvisor/releases/release/${yyyymmdd}.${rc}` + + + + ## Install manually After selecting an appropriate `URL` above, you can download `runsc` directly -- cgit v1.2.3 From 9d81dd355953f44e6cfdbe1f010bac430171970d Mon Sep 17 00:00:00 2001 From: Kevin Krakauer Date: Thu, 24 Oct 2019 14:08:03 -0700 Subject: Change tcpdump status to working https://github.com/google/gvisor/commit/12235d533ae5c8b4b03c6d7f24cae785a2d6ec22 --- content/docs/user_guide/compatibility/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/user_guide/compatibility/_index.md b/content/docs/user_guide/compatibility/_index.md index 4cd1b31b0..94fcb6f22 100644 --- a/content/docs/user_guide/compatibility/_index.md +++ b/content/docs/user_guide/compatibility/_index.md @@ -79,7 +79,7 @@ Most common utilities work. Note that: | sshd | Partially working. Job control [in progress](https://github.com/google/gvisor/issues/154) | | strace | Working | | tar | Working | -| tcpdump | [In progress](https://github.com/google/gvisor/issues/173) | +| tcpdump | Working | | top | Working | | uptime | Working | | vim | Working | -- cgit v1.2.3 From cf5b8ec088eac99ede97a6c9e381485695638dee Mon Sep 17 00:00:00 2001 From: Nicolas Lacasse Date: Fri, 25 Oct 2019 17:15:29 -0700 Subject: Remove pointers to releases that do not exist yet. And simplify installation instructions. Multiple users reported that the download links (even for our nightlys) are broken. While the instructions for the nightlys were technically correct, they were hard to follow, and kind of misleading. --- content/docs/user_guide/install.md | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/content/docs/user_guide/install.md b/content/docs/user_guide/install.md index b4f378874..bc8a60b5b 100644 --- a/content/docs/user_guide/install.md +++ b/content/docs/user_guide/install.md @@ -25,11 +25,15 @@ to the preferred installation mechanism: manual or from an `apt` repository. Nightly releases are built most nights from the master branch, and are available at the following URL: - `https://storage.googleapis.com/gvisor/releases/nightly/latest` + `https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc` + +Checksums for the release binary are at: + + `https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc.sha512` Specific nightly releases can be found at: - `https://storage.googleapis.com/gvisor/releases/nightly/${yyyy-mm-dd}` + `https://storage.googleapis.com/gvisor/releases/nightly/${yyyy-mm-dd}/runsc` Note that a release may not be available for every day. @@ -38,21 +42,15 @@ Note that a release may not be available for every day. To use a nightly release, use one of the above URLs for `URL` in the manual instructions below. For `apt`, use `nightly` for `DIST` below. - --> - ### Latest release The latest official release is available at the following URL: `https://storage.googleapis.com/gvisor/releases/release/latest` - - ### Specific release A given release release is available at the following URL: @@ -61,13 +59,11 @@ A given release release is available at the following URL: See the [releases][releases] page for information about specific releases. - ### Point release @@ -75,7 +71,6 @@ A given point release is available at the following URL: `https://storage.googleapis.com/gvisor/releases/release/${yyyymmdd}.${rc}` - -## Install manually - -After selecting an appropriate `URL` above, you can download `runsc` directly -from `${URL}/runsc` ([latest][latest-nightly]) and a checksum hash from -`${URL}/runsc.sha512` ([latest][latest-hash]). - -For example, this binary can be downloaded, validated, and placed in an -appropriate location by running: +For example, the latest nightly binary can be downloaded, validated, +and placed in an appropriate location by running: ```bash ( set -e + URL=https://storage.googleapis.com/gvisor/releases/nightly/latest wget ${URL}/runsc wget ${URL}/runsc.sha512 sha512sum -c runsc.sha512 -- cgit v1.2.3