在 Ubuntu 18 上安装 gcloud / gsutil
Installing gcloud / gsutil on Ubuntu 18
希望将一些存储桶从 AWS S3 迁移到 Google 云存储,但没有运气在我的 Ubuntu 18.04.4 VM 上安装 GCP 工具。
遵循本指南:[https://cloud.google.com/storage/docs/gsutil_install#deb][1]
主要卡在这里:
root@ubuntu18:/home/me# apt install google-cloud-sdk
Reading package lists... Done
Building dependency tree
Reading state information... Done
No apt package "google-cloud-sdk", but there is a snap with that name.
Try "snap install google-cloud-sdk"
E: Unable to locate package google-cloud-sdk
您是否先添加了 Google Cloud SDK URI?
# Add the Cloud SDK distribution URI as a package source
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud Platform public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
# Update the package list
sudo apt-get update
# Install the Google Cloud SDK
sudo apt-get install google-cloud-sdk
希望将一些存储桶从 AWS S3 迁移到 Google 云存储,但没有运气在我的 Ubuntu 18.04.4 VM 上安装 GCP 工具。
遵循本指南:[https://cloud.google.com/storage/docs/gsutil_install#deb][1]
主要卡在这里:
root@ubuntu18:/home/me# apt install google-cloud-sdk
Reading package lists... Done
Building dependency tree
Reading state information... Done
No apt package "google-cloud-sdk", but there is a snap with that name.
Try "snap install google-cloud-sdk"
E: Unable to locate package google-cloud-sdk
您是否先添加了 Google Cloud SDK URI?
# Add the Cloud SDK distribution URI as a package source
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud Platform public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
# Update the package list
sudo apt-get update
# Install the Google Cloud SDK
sudo apt-get install google-cloud-sdk