apt install したパッケージに含まれるファイルの場所を確認する
問題
apt でパッケージをインストールしましたが、インストールされたファイルの場所を知りたいです。
apt install パッケージ
→ どこに何が置かれた?
答え
以下でパッケージに含まれるファイルの一覧が確認可能。
dpkg -L パッケージ
例。
# dpkg -L fonts-noto-cjk /. /etc /etc/fonts /etc/fonts/conf.d /etc/fonts/conf.avail /etc/fonts/conf.avail/70-fonts-noto-cjk.conf /usr /usr/share /usr/share/fonts /usr/share/fonts/opentype /usr/share/fonts/opentype/noto /usr/share/fonts/opentype/noto/NotoSansCJK-Bold.ttc /usr/share/fonts/opentype/noto/NotoSansCJK-Medium.ttc /usr/share/fonts/opentype/noto/NotoSansCJK-Light.ttc /usr/share/fonts/opentype/noto/NotoSansCJK-Black.ttc /usr/share/fonts/opentype/noto/NotoSansCJK-DemiLight.ttc /usr/share/fonts/opentype/noto/NotoSansCJK-Thin.ttc /usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc /usr/share/doc /usr/share/doc/fonts-noto-cjk /usr/share/doc/fonts-noto-cjk/changelog.gz /usr/share/doc/fonts-noto-cjk/copyright /usr/share/doc/fonts-noto-cjk/changelog.Debian.gz /usr/share/doc/fonts-noto-cjk/NEWS.gz /etc/fonts/conf.d/70-fonts-noto-cjk.conf /usr/share/doc/fonts-noto-cjk/HISTORY.gz
コメント