From e1db937b370c5ac6a56458153865c26ecf5330fa Mon Sep 17 00:00:00 2001 From: Samuel N Cui Date: Tue, 26 Sep 2023 17:16:44 +0800 Subject: [PATCH] fix: glibc not found --- .github/workflows/build.yml | 4 ++-- README.md | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b304d73..9a0ea71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ permissions: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.21' + go-version: '1.20' - name: Setup Node.js environment uses: actions/setup-node@v3.8.1 diff --git a/README.md b/README.md index d1b723d..e091a8d 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,12 @@ YATM is a first-of-its-kind open-source tape manager for LTO tape via LTFS tape ## Install -> WIP +```shell +mkdir -p /opt/ltfs +mkdir -p /opt/yatm + +tar -xvzf yatm-linux-amd64-${RELEASE_VERSION}.tar.gz -C /opt/yatm + +systemctl enable /opt/yatm/yatm-httpd.service +systemctl start yatm-httpd.service +```