如何在没有任何包管理器的情况下安装包

如何在没有任何包管理器的情况下安装包

我想openssh-client在我的发行版中安装一个软件包。问题是我所知道的包管理器都没有安装在上面。

# sudo apt-get install openssh
sudo: apt-get: command not found
# ipkg update
-sh: ipkg: not found
# opkg
-sh: opkg: not found
# dpkg
-sh: dpkg: not found
# apt-get 
-sh: apt-get: not found

该发行版是使用 BuildRoot 构建的最小发行版。在系统配置过程中,我指定了我想要使用的包管理器,但没有安装它们......我如何从源安装包?

相关内容