Jump to content

Frederic Guilbault

Validating
  • Posts

    2
  • Joined

  • Last visited

  1. Since 12 hours it seem like the version of armbian-pine64so have changed. But the new link is broken. wget -P ./cache/armbian-pine64so-arm64/ https://dl.armbian.com/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz --2020-11-27 09:58:19-- https://dl.armbian.com/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz Resolving dl.armbian.com (dl.armbian.com)... 2605:7900:20::5, 173.45.128.12 Connecting to dl.armbian.com (dl.armbian.com)|2605:7900:20::5|:443... connected. HTTP request sent, awaiting response... 302 FOUND Location: https://minio.k-space.ee/armbian/dl/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz [following] --2020-11-27 09:58:19-- https://minio.k-space.ee/armbian/dl/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz Resolving minio.k-space.ee (minio.k-space.ee)... 2001:bb8:4008:20:193:40:103:4, 193.40.103.4 Connecting to minio.k-space.ee (minio.k-space.ee)|2001:bb8:4008:20:193:40:103:4|:443... failed: Connection timed out. Connecting to minio.k-space.ee (minio.k-space.ee)|193.40.103.4|:443... connected. HTTP request sent, awaiting response... 404 Not Found 2020-11-27 10:00:31 ERROR 404: Not Found. and from an other source. me@MSI-GS70:~$ wget https://dl.armbian.com/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz --2020-11-27 01:21:43-- https://dl.armbian.com/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz Resolving dl.armbian.com (dl.armbian.com)... 2605:7900:20::5, 173.45.128.12 Connecting to dl.armbian.com (dl.armbian.com)|2605:7900:20::5|:443... connected. HTTP request sent, awaiting response... 302 FOUND Location: https://armbian.systemonachip.net/dl/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz [following] --2020-11-27 01:21:43-- https://armbian.systemonachip.net/dl/pine64so/archive/Armbian_20.11_Pine64_buster_current_5.8.16.img.xz Resolving armbian.systemonachip.net (armbian.systemonachip.net)... 51.75.2.52 Connecting to armbian.systemonachip.net (armbian.systemonachip.net)|51.75.2.52|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 963 [text/html] Saving to: ‘Armbian_20.11_Pine64_buster_current_5.8.16.img.xz’ Armbian_20.11_Pine64_buster_c 100%[===============================================>] 963 --.-KB/s in 0s 2020-11-27 01:21:44 (45.3 MB/s) - ‘Armbian_20.11_Pine64_buster_current_5.8.16.img.xz’ saved [963/963] me@MSI-GS70:~$ xz -d Armbian_20.11_Pine64_buster_current_5.8.16.img.xz xz: Armbian_20.11_Pine64_buster_current_5.8.16.img.xz: File format not recognized me@MSI-GS70:~$ file Armbian_20.11_Pine64_buster_current_5.8.16.img.xz Armbian_20.11_Pine64_buster_current_5.8.16.img.xz: HTML document, ASCII text, with very long lines me@MSI-GS70:~$ cat Armbian_20.11_Pine64_buster_current_5.8.16.img.xz <head> <title>armbian download</title> <center><img src="armbian-logo.png"><br> Help seed <A HREF="https://dl.armbian.com/torrent/all-torrents.zip">our torrents</a> | Back to <A HREF="https://www.armbian.com/">main web page</a> </center> <br><br> <table width="40%" border="0" CELLPADDING="3" CELLSPACING="0" align="center"> <tr> <tr> <td><li><A HREF="/archive">archive - Mirror of archive.armbian.com</a></td> </tr> <tr> <td><li><A HREF="/apt">apt - Mirror of apt.armbian.com</a></td> </tr> <tr> <td><li><A HREF="/dl">dl - Mirror of dl.armbian.com</a></td> </tr> </table> <p><p><br><br><br><br><br><br><br><br> <center><i>This mirror is donated to Armbian by Systemonachip.net - Visit other projects supported by Systemonachip.net</i>:<br> <a href="https://h3droid.com">H3Droid - Android for H3 Devices</a> - <a href="https://licheepizero.us">LicheePi Zero - The $6 SBC</a> - <a href="https://atomicpi.systemonachip.net">AtomicPi Image Mirror</a></center>
  2. Hi, I have downloaded `Armbian_20.05.2_Pine64so_buster_current_5.4.43.img` I have a script that mount the iso, chroot into it and run a big script to generate a flavoured version of armbian. First thing the script do is `apt update && apt upgrade` And I recently started to have the following error: Preparing to unpack .../06-linux-dtb-current-sunxi64_20.08_arm64.deb ... Error while loading /var/lib/dpkg/tmp.ci/preinst: Exec format error dpkg: error processing archive /tmp/apt-dpkg-install-xF9W1s/06-linux-dtb-current-sunxi64_20.08_arm64.deb (--unpack): new linux-dtb-current-sunxi64 package pre-installation script subprocess returned error exit status 1 Error while loading /var/lib/dpkg/info/linux-dtb-current-sunxi64.postinst: Exec format error dpkg: error while cleaning up: installed linux-dtb-current-sunxi64 package post-installation script subprocess returned error exit status 1 I googled a bit and found this post : https://askubuntu.com/questions/1001795/unable-to-execute-new-pre-installation-script-var-lib-dpkg-tmp-ci-preinst It stipulates that perinst file in the package should start with a shebang, I have checked and it's effectively missing in the package. Running the `perinst` file strait on the prompt does not trow error. Am I getting something wrong or I just win the opportunity to fill an official bug report somewhere ?? --Fred
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines