Ubuntu 22.04 で golang 移行をインストールできない

Ubuntu 22.04 で golang 移行をインストールできない
curl -L https://packagecloud.io/golang-migrate/migrate/gpgkey | apt-key add -
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
E: This command can only be used by root.
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
100  3954  100  3954    0     0   2478      0  0:00:01  0:00:01 --:--:--  2478
curl: (23) Failed writing body

ベストアンサー1

次のエラーが発生します。

E: This command can only be used by root.

このコマンドはrootとして実行する必要があります。努力する:

curl -L https://packagecloud.io/golang-migrate/migrate/gpgkey | sudo apt-key add -

おすすめ記事