VSCodium / vscodium

binary releases of VS Code without MS branding/telemetry/licensing
https://vscodium.com
MIT License
25.7k stars 1.13k forks source link

'main/binary-armhf/Packages' as repository 'http://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/debs vscodium InRelease' doesn't support architecture 'armhf' #2032

Open p637 opened 2 months ago

p637 commented 2 months ago

Since 3-4 days I'm receiving the following error on my orange PI 5, Armbian 24.5.1 Jammy with Linux 5.10.110-rockchip-rk3588:

N: Skipping acquire of configured file 'main/binary-armhf/Packages' as repository 'http://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/debs vscodium InRelease' doesn't support architecture 'armhf'

is it anything wrong on my Orange PI 5?

thanks

PrimaIVoid commented 2 months ago

It may be related to the issues i have too when updating my system with:

apt update
...
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://download.vscodium.com/debs vscodium InRelease' doesn't support architecture 'i386'

I update my system daily and never seen that warning earlier

qrp73 commented 2 months ago

the same issue

qrp73 commented 2 months ago

at a glance can be fixed with sudo nano /etc/apt/sources.list.d/vscodium.list and adding arch=arm64 before signed-by:

deb [arch=arm64 signed-by...

But I'm not sure why there is no armhf support?

fabiobianchiwebdev commented 2 months ago

I had the same issue since yesterday. I updated the vscodium.list as showed on the above solution and it worked. deb [arch=amd64 signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://download.vscodium.com/debs vscodium main

daiyam commented 2 months ago

Ok, I found the problem and opened an issue at https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/issues/105

p637 commented 2 months ago

issue solved, thanks daiyam. probably due to your action. thanks

PrimaIVoid commented 2 months ago

issue solved, thanks daiyam. probably due to your action. thanks

No the issue is not resolved yet. As of now i still get the same warning as last time

Vagrantin commented 2 months ago

It may be related to the issues i have too when updating my system with:

apt update
...
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://download.vscodium.com/debs vscodium InRelease' doesn't support architecture 'i386'

I update my system daily and never seen that warning earlier

I'm having the same issue with the default configuration of my source list, as per the install doc for Debian.

This workaround is fixing the issue:

I had the same issue since yesterday. I updated the vscodium.list as showed on the above solution and it worked. deb [arch=amd64 signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://download.vscodium.com/debs vscodium main

Does the fix is to update the doc ?

As per this commit Seems i386 is not available.

staticdev commented 3 weeks ago

@Vagrantin same trick, edit /etc/apt/sources-list.d/yoursource and add [arch=amd64] before it. Or arm64 if it is ARM processor.