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?

More than 1 year has passed since last update.

Ubuntuでパッケージを手動で別のシステムに移行する

Posted at

モチベーション

プロキシ環境下で特定のパッケージが apt によりインストールできないという事象が発生したため、プロキシ環境外でインストールした同様のパッケージのデータを使用して、別のシステムでも使用できるようにできないかとかんがえた

手順

  • PC-A: パッケージがインストールされているマシン
  • PC-B: パッケージがまだインストールされていないマシン
  1. まず PC-A で、必要なパッケージとその依存関係を全て .deb 形式でダウンロード
    パッケージの依存関係を調べる

    apt-cache depends [パッケージ名]
    

    上記コマンドで表示されたパッケージリストのうち、PC-B でインストールできないものは、同様に .deb 形式でダウンロードする必要がある

    パッケージをダウンロード

    apt download [パッケージ名]
    
  2. ダウンロードした .deb ファイルをストレージデバイスに保存

  3. PC-B にストレージデバイスを接続し、.deb ファイルを移動

  4. PC-B で、.deb ファイルを手動でインストール
    依存関係のあるパッケージから順にインストールする

    sudo dpkg -i /path/to/package.deb
    
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?