Client:
Version: 26.1.3
API version: 1.45
Go version: go1.22.2
Git commit: 26.1.3-0ubuntu1~24.04.1+esm1
Built: Sun Dec 15 14:08:17 2024
OS/Arch: linux/amd64
Context: desktop-linux
tried sudo dpkg -i ./docker-desktop-amd64.deb and got this —>
Unpacking docker-desktop (4.36.0-175267) ...
dpkg: dependency problems prevent configuration of docker-desktop:
docker-desktop depends on qemu-system-x86 (>= 5.2.0); however:
Package qemu-system-x86 is not installed.
docker-desktop depends on docker-ce-cli; however:
Package docker-ce-cli is not installed.
docker-desktop depends on pass; however:
Package pass is not installed.
docker-desktop depends on uidmap; however:
Package uidmap is not installed.
dpkg: error processing package docker-desktop (--install):
dependency problems - leaving unconfigured
I also tried this method and the same failure
aot-get install fails with packages have unmet dependencies:
docker-desktop : Depends: qemu-system-x86 (>= 5.2.0) but it is not installed
Depends: docker-ce-cli but it is not installable
Depends: pass but it is not installed
Depends: uidmap; however:
Package uidmap is not installed.
Looks like there is something wrong with your apt repositories so Ubuntu cannot download anything. I would understand the docker-ce-cli, since it requires a repository from Docker, but since now even pass or qemu can be installed, I would say you need to run apt-get update to initialize the APT cache. You can try running this first:
apt-get install qemu-system-x86
If it doesn’t work either, it is not a Docker issue, but something with Ubuntu and its repositories which hopefully can be solved by updating the apt cache, but no guarantee.
Thanks Akos happy new year. Tried that got this —>
~~
Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.bluecherrydvr.com noble InRelease' doesn't support architecture 'i386'
E: The repository 'https://download.docker.com/linux/debian noble Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
the apt-get install qemu-systemn-x86 ,It then uninstalled my docker desktop that was installed but didn’t work. Will try to get the repository It looks like we wait for the Release file for noble version and a fix for bluecherry
The missing release file is not something that you just need to wait for. Docker is supported on Ubuntu 24.04 so something must be broken on your machine. Make sure you don’t miss a step in the installation guide
I am at the beginning of the learning curve here, thanks for your patience.
Docker is up and working, am logged in. I will go through desktop install again carefully checking the steps and will also discover what is wrong with my repository.
" got it, first I fixed my broken repository and reinstalled qemu-system-x86
did a little house cleaning with
apt --fix-broken install
It was very busy repairing years of damage I surely caused.
Also I made sure Docker was not running during this install
Then I ran
sudo apt-get install ./docker-desktop-amd64.deb
it did not work and returned
Reading package lists... Done
E: Unsupported file ./docker-desktop-amd64.deb given on commandline
So I did it the other way
sudo dpkg -i ./docker-desktop-amd64.deb
Bingo Number 5 is alive. LOL
Thanks for pointing me in the correct direction and
encouraging me learn how to talk in this forum