Symptoms
-
Updating packages via
apt-get update
produces the following error:# apt update
...
...
N: Skipping acquire of configured file 'all/binary-amd64/Packages' as repository
'http://autoinstall.plesk.com/pool/WPB_18.0.51_64 all InRelease' doesn't
support architecture 'amd64'.
Cause
Unsupported package repository configuration.
Resolution
-
Connect to the server via SSH.
-
Edit the repository file
/etc/apt/sources.list.d/plesk.list
. Vi editor can be used for this. -
Modify the repository line from the error to add
arch=i386
as follows:Before:
CONFIG_TEXT: deb [signed-by=/etc/apt/keyrings/plesk.gpg] http://autoinstall.plesk.com/pool/WPB_18.0.51_64/ all all
After:
CONFIG_TEXT: deb [arch=i386 signed-by=/etc/apt/keyrings/plesk.gpg] http://autoinstall.plesk.com/pool/WPB_18.0.51_64/ all all
-
Update packages once again:
# apt-get update
Comments
0 comments
Please sign in to leave a comment.