Git 大文件存储/如何在 AWS EC2 上安装 git lfs Linux 2 / "No package git-lfs available."
Git Large File Storage / How to install git lfs on AWS EC2 Linux 2 / "No package git-lfs available."
如何在 Amazon EC2 (Amazon Linux 2) 实例上安装 git-lfs
?
基于 https://github.com/git-lfs/git-lfs/blob/main/INSTALLING.md 我试过了吗:
sudo yum install git -y;
cd /home/ec2-user;
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash
-> which tells me afterwards:
The repository is setup! You can now install packages.
sudo yum install git-lfs
-> gives me:
Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
No package git-lfs available.
Error: Nothing to do
未来的命令(在 git lfs install
之后还不可能 duo git: 'lfs' is not a git command. See 'git --help'.
)将基于 https://git-lfs.github.com/
git lfs install
...
git clone https://yourrepo.git;
Amazon Linux 2 AMI (HVM) - 内核 5.10,SSD 卷类型/Arm
如 packagecloud[1] 中所述,您需要 运行:
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash
安装依赖项和存储库。或者,您可以直接从 [1] 获取脚本。然后你可以简单地用 yum 安装:
sudo yum install git-lfs
您需要直接安装 ARM64 git-lfs 二进制文件:
wget https://github.com/git-lfs/git-lfs/releases/download/v3.1.2/git-lfs-linux-arm64-v3.1.2.tar.gz
sudo yum install git -y
tar -xvf git-lfs-linux-arm64-v3.1.2.tar.gz
sudo ./install.sh
git lfs install
现在,享受您在 ARM64 上的 GIT-LFS。
使用 Amazon Linux 2,您可以使用 Extras 库在您的实例上安装应用程序和软件更新。这些软件更新称为主题。
步骤如下:
使用 SSH 连接到您的 EC2 Linux 实例。
使用which命令确认安装了amazon-linux-extras包:
$ 其中 amazon-linux-extras
/usr/bin/amazon-linux-extras
如果amazon-linux-extras包没有安装,可以用yum安装:
$ sudo yum install -y amazon-linux-extras
要列出可用主题,您可以使用以下命令:
$ amazon-linux-extras list
git-lfs 通常作为 epel-release 的一部分出现,所以您需要先安装 epel release for Amazon Linux:
$ sudo amazon-linux-extras 安装 epel -y
对于 Amazon Linux AMI,配置了对 Extra Packages for Enterprise Linux (EPEL) 存储库的访问权限,但默认情况下未启用。
sudo yum-config-manager --启用 epel
现在您可以安装 git-lfs 或任何您喜欢的 epel-release:
$ sudo yum 安装 git-lfs
如何在 Amazon EC2 (Amazon Linux 2) 实例上安装 git-lfs
?
基于 https://github.com/git-lfs/git-lfs/blob/main/INSTALLING.md 我试过了吗:
sudo yum install git -y;
cd /home/ec2-user;
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash
-> which tells me afterwards:
The repository is setup! You can now install packages.
sudo yum install git-lfs
-> gives me:
Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
No package git-lfs available.
Error: Nothing to do
未来的命令(在 git lfs install
之后还不可能 duo git: 'lfs' is not a git command. See 'git --help'.
)将基于 https://git-lfs.github.com/
git lfs install
...
git clone https://yourrepo.git;
Amazon Linux 2 AMI (HVM) - 内核 5.10,SSD 卷类型/Arm
如 packagecloud[1] 中所述,您需要 运行:
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash
安装依赖项和存储库。或者,您可以直接从 [1] 获取脚本。然后你可以简单地用 yum 安装:
sudo yum install git-lfs
您需要直接安装 ARM64 git-lfs 二进制文件:
wget https://github.com/git-lfs/git-lfs/releases/download/v3.1.2/git-lfs-linux-arm64-v3.1.2.tar.gz
sudo yum install git -y
tar -xvf git-lfs-linux-arm64-v3.1.2.tar.gz
sudo ./install.sh
git lfs install
现在,享受您在 ARM64 上的 GIT-LFS。
使用 Amazon Linux 2,您可以使用 Extras 库在您的实例上安装应用程序和软件更新。这些软件更新称为主题。
步骤如下:
使用 SSH 连接到您的 EC2 Linux 实例。
使用which命令确认安装了amazon-linux-extras包:
$ 其中 amazon-linux-extras
/usr/bin/amazon-linux-extras
如果amazon-linux-extras包没有安装,可以用yum安装:
$ sudo yum install -y amazon-linux-extras
要列出可用主题,您可以使用以下命令:
$ amazon-linux-extras list
git-lfs 通常作为 epel-release 的一部分出现,所以您需要先安装 epel release for Amazon Linux:
$ sudo amazon-linux-extras 安装 epel -y
对于 Amazon Linux AMI,配置了对 Extra Packages for Enterprise Linux (EPEL) 存储库的访问权限,但默认情况下未启用。
sudo yum-config-manager --启用 epel
现在您可以安装 git-lfs 或任何您喜欢的 epel-release:
$ sudo yum 安装 git-lfs