0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【LXC/LXD】E: パッケージ 'lxd' にはインストール候補がありません

Posted at

この出力は、lxdパッケージがUbuntuのデフォルトリポジトリで見つからないことを示しています。
これは、使用しているUbuntuのバージョンによっては、LXDがSnapパッケージとして提供されている可能性があるためです。

以下の手順を試してみてください

  1. まず、Snapがインストールされていることを確認します

    snap version
    

    もしSnapがインストールされていない場合は、以下のコマンドでインストールできます

    sudo apt install snapd
    
  2. システムを再起動するか、以下のコマンドを実行してSnapデーモンを起動します

    sudo systemctl enable --now snapd.socket
    
  3. LXDをSnapを使ってインストールします

    sudo snap install lxd
    
  4. LXDを初期化します

    sudo lxd init
    
  5. 現在のユーザーをlxdグループに追加します

    sudo usermod -aG lxd $USER
    
  6. 変更を反映させるために、ログアウトして再ログインするか、新しいターミナルセッションを開始してください。

もし上記の方法でもインストールできない場合は、以下の点を確認してください

  • Ubuntuのバージョンが最新であることを確認します。
  • システムのパッケージリストを更新します:
    sudo apt update
    
  • 必要に応じて、LXDの公式PPAを追加することもできます
    sudo add-apt-repository ppa:ubuntu-lxc/lxd-stable
    sudo apt update
    sudo apt install lxd
    
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?