On Wednesday 16 of September 2020 21:20:21 Uwe Brauer via tde-users wrote:
"MBvt" == Mike Bird via tde-users <ml-migration-agent-AA1CGeSZfcB6iVtQByZ3Ah2eb7JE58TQ@public.gmane.or g> writes:
On Wed September 16 2020 11:03:27 Uwe Brauer via tde-users wrote:
N: Skipping acquire of configured file 'deps-r14/binary-i386/Packages' as repository 'http://mirror.ppa.trinitydesktop.org/trinity/deb/trinity-sb focal InRelease' doesn't support architecture 'i386' N: Skipping acquire of configured file 'main-r14/binary-i386/Packages' as repository 'http://mirror.ppa.trinitydesktop.org/trinity/deb/trinity-sb focal InRelease' doesn't support architecture 'i386'
Worries me
Again, what is the result of:
Sorry
dpkg --print-architecture;
amd64
dpkg --print-foreign-architectures
i386
I am not sure what the last variable means, the first is clear and was to be expected.
This explains the behavior. Your dpkg / apt is set to download information about i386 packages in addition to amd64. But no Trinity packages are built for i386 on Ubuntu >= 20.04. Therefore, there is no information available about such packages for apt.
You can check if you are using any i386 packages. If you have aptitude installed, you can use:
aptitude search '~ri386~i'
And then, if you don't need any i386 packages, you can remove support for the i386 architecture from dpkg:
dpkg --remove-architecture i386
If you find that you need support for i386 packages, you can limit the apt sources for Trinity to amd64 packages by adding [arch=amd64] between "deb" and the url address:
deb [arch=amd64] http://mirror.ppa.trinitydesktop.org/...
Cheers