Aus dem Inneren eines Debian-Docker-Containers, in dem Jessie läuft, bekomme ich
vi blah
bash: vi: command not found
also greife ich natürlich nach meinem install-befehl
sudo apt-get install vim
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package vim
auf der suche nach etwas traktion bin ich auf diese vorschläge mit verschiedenen leistungen gestoßen
cat /etc/apt/sources.list
deb http://deb.debian.org/debian jessie main
deb http://deb.debian.org/debian jessie-updates main
deb http://security.debian.org jessie/updates main
apt-get install software-properties-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package software-properties-common
apt-get install python-software-properties
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python-software-properties
apt-get install apt-file
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package apt-file
Da dieser Server der Docker-Container für ein Mongo-Image ist, handelt es sich absichtlich um eine reine Debian-Installation. Die Installation von vi ist nur zum Spielen während der Entwicklung gedacht
apt-get update
dannapt-get install ...
Obwohl Scott Stensland ‚s Antwort funktioniert, brauchen Sie nicht zu installieren
software-properties-common
undpython-software-properties
. Es reicht aus, nur die folgenden Befehle auszuführen.quelle
software-properties-common
undpython-software-properties
bringen wird.