Debian

使用 apt-get install 在精簡的 debian linux 上安裝“top”和“find”?

  • August 17, 2021

我有一個正在擴展的 docker 映像,它有一個精簡版的 Debian。我已經使用最初的 Dockerfile 推送安裝了一些軟體包,但我還想安裝topfile命令(已經安裝htop……)。有誰知道我可以安裝哪些包含這些的軟體包可以apt-get install與 Debian 一起使用?

另外,我不確定如何自己找到這些資訊,所以如果有一種簡單的方法可以弄清楚我可以自己完成,那麼這些資訊將是一個很棒的僅供參考。

下面執行的輸出cat /etc/*-release

PRETTY_NAME="Debian GNU/Linux 10 (buster)"       
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"     
BUG_REPORT_URL="https://bugs.debian.org/"   

在評論的幫助下,我得出了以下答案:

我安裝了一個 debian linux vm,然後執行以下命令:

admin:~$ dpkg -S /usr/bin/top
procps: /usr/bin/top
admin:~$ dpkg -S /usr/bin/find
findutils: /usr/bin/find

然後通過我的 Dockerfile 安裝 findutils(用於查找)和 procps(用於頂部)

RUN apt-get update \
 && apt-get install -y vim \
 && apt-get install -y nano \
 && apt-get install -y curl \
 && apt-get install -y htop \
 && apt-get install -y procps \
 && apt-get install -y findutils

引用自:https://unix.stackexchange.com/questions/664551