我正在尝试为自己和朋友设置一个 helix core 服务器。我想让它在我闲置的一台单独的 PC 上运行,该 PC 运行 ubuntu 20.04,但不知何故我无法安装该软件包。
我已完成网站上描述的所有步骤(https://www.perforce.com/manuals/p4sag/Content/P4SAG/install.linux.packages.install.html),但是当我最终运行时sudo apt-get install helix-p4d
系统告诉我无法找到该包。
有人安装过这个软件包吗?如果安装过,您能帮我一下吗,或者指出我可能忽略的一些东西?谢谢!
答案1
看来你错过了一些重要的步骤。打开终端并输入:
wget -qO - https://package.perforce.com/perforce.pubkey | sudo apt-key add -
cat <<EOF | sudo tee /etc/apt/sources.list.d/perforce.list
deb http://package.perforce.com/apt/ubuntu focal release
EOF
sudo apt-get update
sudo apt-get install helix-p4d
参考:https://www.perforce.com/manuals/p4sag/Content/P4SAG/install.linux.packages.install.html#For3