Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apt_pkg.Error: E:Invalid archive member header #165

Open
2 tasks
rickysarraf opened this issue Jan 29, 2022 · 2 comments
Open
2 tasks

apt_pkg.Error: E:Invalid archive member header #165

rickysarraf opened this issue Jan 29, 2022 · 2 comments

Comments

@rickysarraf
Copy link
Owner

During download operation, below exception is seen.

== Acceptance criteria

  • Investigate what leads to the exception apt_pkg.Error: E:Invalid archive member header

    • My wild guess is that it has to do with the binary deb package size.
  • Handle the exception

    • But first action item one needs to be accomplished.
    • Also, should the exception be tagged as failed entirely ? I mean, is the payload corrupt too ?
    • Note: A few minutes after the exception, apt-offline exited clean (My prompt exit status returns clean). So highly possible that the payload is NOT corrupt.
rrs@priyasi:~/.../apt-offline (master)$ ./apt-offline get /tmp/upgrade.uris --bundle /tmp/upgrade.zip --threads 5 --proxy-host chutzpah --proxy-port 3142

Fetching APT Data

WARNING: If you are on a slow connection, it is good to
WARNING: limit the number of threads to a low number like 2.
WARNING: Else higher number of threads executed could cause
WARNING: network congestion and timeouts.

Downloading linux-headers-5.15.0-16.1-liquorix-amd64 - 11 MiB                                                             
Downloading linux-headers-5.15.0-17.1-liquorix-amd64 - 11 MiB                                                             
Downloading linux-headers-liquorix-amd64 - 163 KiB                                                             
Downloading linux-image-5.15.0-16.1-liquorix-amd64 - 61 MiB                                                             
Downloading linux-image-liquorix-amd64 - 163 KiB                                                             
linux-headers-liquorix-amd64 done                                                             
Downloading linux-image-5.15.0-17.1-liquorix-amd64 - 61 MiB                                                             
linux-image-liquorix-amd64 done                                                             
Downloading bsdutils - 145 KiB       

.....snipped.......

Downloading llvm-13-runtime - 258 KiB                                                             
llvm-13-runtime done                                                             
Downloading llvm-13-tools - 410 KiB                                                             
llvm-13-dev done                                                             
Exception in thread Thread-1:###################] 100.0% of 385 MiB
Traceback (most recent call last):
  File "/usr/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()s: [##############################]  99.9% of 385 MiB
  File "/usr/lib/python3.9/threading.py", line 910, in runf 385 MiB
    self._target(*self._args, **self._kwargs)###]  99.9% of 385 MiB
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineLib.py", line 703, in run
    self.responseQueue.put( self.WorkerFunction( item, thread_name ) )
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineCoreLib.py", line 1341, in DataFetcher
    FetcherInstance.buildChangelog(pkgFile, PackageInstalledVersion[PackageName])
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineCoreLib.py", line 1158, in buildChangelog
    pkgHandle = DebPackage(pkgPath)#############]  99.9% of 385 MiB
  File "/usr/lib/python3/dist-packages/apt/debfile.py", line 65, in __init__
    self.open(filename)#########################]  99.9% of 385 MiB
  File "/usr/lib/python3/dist-packages/apt/debfile.py", line 75, in open
    self._debfile = apt_inst.DebFile(self.filename)99.9% of 385 MiB
apt_pkg.Error: E:Invalid archive member header
llvm-13-tools done                                                             
Downloading libclang1-13 - 5 MiB                                                             
libclang1-13 done                                                             
Downloading libdaxctl1 - 19 KiB                                                                                                                   

.....snipped.......

Downloading wpasupplicant - 1 MiB                                                             
wpasupplicant done                                                             
Downloading xapps-common - 52 KiB                                                             
xapps-common done                                                             
libpython2.7-stdlib done                                                             
Exception in thread Thread-5:###################]  99.7% of 469 MiB
Traceback (most recent call last):##############]  99.7% of 469 MiB
  File "/usr/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()s: [##############################]  99.7% of 469 MiB
  File "/usr/lib/python3.9/threading.py", line 910, in runf 469 MiB
    self._target(*self._args, **self._kwargs)###]  99.7% of 469 MiB
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineLib.py", line 703, in run
    self.responseQueue.put( self.WorkerFunction( item, thread_name ) )
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineCoreLib.py", line 1341, in DataFetcher
    FetcherInstance.buildChangelog(pkgFile, PackageInstalledVersion[PackageName])
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineCoreLib.py", line 1158, in buildChangelog
    pkgHandle = DebPackage(pkgPath)#############]  99.7% of 469 MiB
  File "/usr/lib/python3/dist-packages/apt/debfile.py", line 65, in __init__
    self.open(filename)#########################]  99.7% of 469 MiB
  File "/usr/lib/python3/dist-packages/apt/debfile.py", line 75, in open
    self._debfile = apt_inst.DebFile(self.filename)99.7% of 469 MiB
apt_pkg.Error: E:Invalid archive member header##]  99.7% of 469 MiB
virtualbox-guest-additions-iso done                                                             
linux-image-5.15.0-16.1-liquorix-amd64 done                                                             
170 / 170 items: [##############################] 100.0% of 469 MiB
Downloaded data to /tmp/upgrade.zip
14:37 ♒ ॐ ♅ ♄ ⛢     ☺ 😄    

@rickysarraf rickysarraf self-assigned this Jan 29, 2022
@rickysarraf
Copy link
Owner Author

Woohooo!!! A consecutive run resulted in no problems whatsoever. I love such bugs

  • Given that this isn't a persistent oddity, consider this a minor obscure bug.
  • It only happened with large size binary packages. My gut feel is that it is the proxy which abruptly returns, resulting in the error.
  • I don't think it would be a wise idea to handle this exception. We really should want such exceptions reported.
Downloading xapps-common - 52 KiB                                                             
xapps-common done                                                             
libpython2.7-stdlib done                                                             
Exception in thread Thread-5:###################]  99.7% of 469 MiB
Traceback (most recent call last):##############]  99.7% of 469 MiB
  File "/usr/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()s: [##############################]  99.7% of 469 MiB
  File "/usr/lib/python3.9/threading.py", line 910, in runf 469 MiB
    self._target(*self._args, **self._kwargs)###]  99.7% of 469 MiB
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineLib.py", line 703, in run
    self.responseQueue.put( self.WorkerFunction( item, thread_name ) )
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineCoreLib.py", line 1341, in DataFetcher
    FetcherInstance.buildChangelog(pkgFile, PackageInstalledVersion[PackageName])
  File "/home/rrs/rrs-home/devel/apt-offline/apt-offline/apt_offline_core/AptOfflineCoreLib.py", line 1158, in buildChangelog
    pkgHandle = DebPackage(pkgPath)#############]  99.7% of 469 MiB
  File "/usr/lib/python3/dist-packages/apt/debfile.py", line 65, in __init__
    self.open(filename)#########################]  99.7% of 469 MiB
  File "/usr/lib/python3/dist-packages/apt/debfile.py", line 75, in open
    self._debfile = apt_inst.DebFile(self.filename)99.7% of 469 MiB
apt_pkg.Error: E:Invalid archive member header##]  99.7% of 469 MiB
virtualbox-guest-additions-iso done                                                             
linux-image-5.15.0-16.1-liquorix-amd64 done                                                             
170 / 170 items: [##############################] 100.0% of 469 MiB
Downloaded data to /tmp/upgrade.zip
14:37 ♒ ॐ ♅ ♄ ⛢     ☺ 😄    
rrs@priyasi:~/.../apt-offline (master)$ ^Capt-offline get /tmp/upgrade.uris --bundle /tmp/upgrade.zip --threads 5 --proxy-host chutzpah --proxy-port 3142
14:43 ♒ ॐ ♅ ♄ ⛢      ☹ 😟=> 130  
rrs@priyasi:~/.../apt-offline (master)$ rm /tmp/upg
upgrade.uris  upgrade.zip   
14:43 ♒ ॐ ♅ ♄ ⛢      ☹ 😟=> 130  
rrs@priyasi:~/.../apt-offline (master)$ rm /tmp/upgrade.zip 
rm: remove regular file '/tmp/upgrade.zip'? y
14:43 ♒ ॐ ♅ ♄ ⛢     ☺ 😄    
rrs@priyasi:~/.../apt-offline (master)$ ./apt-offline get /tmp/upgrade.uris --bundle /tmp/upgrade.zip --threads 5 --proxy-host chutzpah --proxy-port 3142

Fetching APT Data

WARNING: If you are on a slow connection, it is good to
WARNING: limit the number of threads to a low number like 2.
WARNING: Else higher number of threads executed could cause
WARNING: network congestion and timeouts.

Downloading linux-headers-5.15.0-16.1-liquorix-amd64 - 11 MiB                                                             
Downloading linux-headers-liquorix-amd64 - 163 KiB                                                             
Downloading linux-image-5.15.0-16.1-liquorix-amd64 - 61 MiB                                                             
Downloading linux-image-liquorix-amd64 - 163 KiB                                                             
Downloading linux-headers-5.15.0-17.1-liquorix-amd64 - 11 MiB                                                             
linux-image-liquorix-amd64 done                                                             
linux-headers-liquorix-amd64 done                                                             
Downloading linux-image-5.15.0-17.1-liquorix-amd64 - 61 MiB                                                             
Downloading bsdutils - 145 KiB                                                             
bsdutils done                                                             
Downloading util-linux - 1 MiB                                                             
util-linux done                                                             
Downloading libc6-dbg - 7 MiB                                                             
linux-headers-5.15.0-17.1-liquorix-amd64 done                                                             
linux-headers-5.15.0-16.1-liquorix-amd64 done                                                             
Downloading libc6-i386 - 2 MiB                                                             
Downloading libc-devtools - 244 KiB                                                             
libc-devtools done                                                             
libc6-dbg done                                                             
libc6-i386 done                                                             
Downloading libc-dev-bin - 236 KiB                                                             
libc-dev-bin done                                                             
Downloading libc6-dev - 2 MiB                                                             
Downloading libc6 - 2 MiB                                                             
Downloading libc6 - 2 MiB                                                             
libc6-dev done                                                             
Downloading libc-bin - 814 KiB                                                             
libc6 done                                                             
libc6 done                                                             
libc-bin done                                                             
Downloading systemd-timesyncd - 135 KiB                                                             
WARN: Ignoring err ENOENT, multiarch package name clash /tmp/libc6.changelog

Downloading libnss-resolve - 167 KiB                                                             
systemd-timesyncd done                                                             
libnss-resolve done                                                             
Downloading systemd-coredump - 156 KiB                                                             
Downloading libnss-mymachines - 240 KiB                                                             
Downloading systemd-container - 471 KiB                                                             
systemd-coredump done                                                             
libnss-mymachines done                                                             
systemd-container done                                                             
Downloading systemd-sysv - 117 KiB                                                             
systemd-sysv done                                                             
Downloading libpam-systemd - 293 KiB                                                             
Downloading libnss-systemd - 230 KiB                                                             
Downloading ifupdown - 80 KiB                                                             
libpam-systemd done                                                             
ifupdown done                                                             
libnss-systemd done                                                             
Downloading libblkid1 - 196 KiB                                                             
Downloading libuuid1 - 83 KiB                                                             
libblkid1 done                                                             
Downloading libfdisk1 - 236 KiB                                                             
libuuid1 done                                                             
Downloading libgnutls30 - 1 MiB                                                             
libfdisk1 done                                                             
Downloading libgnutls30 - 1 MiB                                                             
Downloading libmount1 - 214 KiB                                                             
libgnutls30 done                                                             
linux-image-5.15.0-16.1-liquorix-amd64 done                                                             
libmount1 done                                                             
libgnutls30 done                                                             
linux-image-5.15.0-17.1-liquorix-amd64 done                                                             
Downloading mount - 186 KiB                                                             
mount done                                                             
Downloading systemd - 4 MiB                                                             
Downloading libsystemd0 - 394 KiB                                                             
WARN: Ignoring err type Duplicate name: 'libgnutls30.changelog' MiB

Downloading fontconfig-config - 274 KiB                                                             
Downloading libexpat1-dev - 154 KiB                                                             
libexpat1-dev done                                                             
fontconfig-config done                                                             
libsystemd0 done                                                             
Downloading libexpat1 - 105 KiB                                                             
systemd done                                                             
Downloading libexpat1 - 103 KiB                                                             
libexpat1 done                                                             
libexpat1 done                                                             
Downloading libfontconfig1 - 341 KiB                                                             
Downloading libglib2.0-data - 1 MiB                                                             
Downloading libglib2.0-bin - 142 KiB                                                             
Downloading libglib2.0-0 - 1 MiB                                                             
WARN: Ignoring err type Duplicate name: 'libexpat1.changelog'77 MiB

Downloading calibre-bin - 832 KiB                                                             
libfontconfig1 done                                                             
Downloading python3-cssselect - 19 KiB                                                             
libglib2.0-bin done                                                             
python3-cssselect done                                                             
Downloading calibre - 23 MiB                                                             
Downloading libdeflate0 - 65 KiB                                                             
calibre-bin done                                                             
libglib2.0-data done                                                             
libglib2.0-0 done                                                             
libdeflate0 done                                                             
Downloading libtiff5 - 287 KiB                                                             
Downloading libcupsfilters1 - 141 KiB                                                             
Downloading cups-browsed - 157 KiB                                                             
Downloading pypy3-lib - 2 MiB                                                             
libcupsfilters1 done                                                             
cups-browsed done                                                             
libtiff5 done                                                             
Downloading pypy3 - 9 MiB                                                             
Downloading libsmartcols1 - 158 KiB                                                             
Downloading uuid-runtime - 101 KiB                                                             
pypy3-lib done                                                             
uuid-runtime done                                                             
libsmartcols1 done                                                             
Downloading udev - 1 MiB                                                             
Downloading libudev-dev - 127 KiB                                                             
Downloading libudev1 - 173 KiB                                                             
libudev-dev done                                                             
libudev1 done                                                             
Downloading mawk - 110 KiB                                                             
Downloading fdisk - 192 KiB                                                             
mawk done                                                             
Downloading bind9-host - 302 KiB                                                             
udev done                                                             
fdisk done                                                             
calibre done                                                             
bind9-host done                                                             
pypy3 done                                                             
Downloading bind9-dnsutils - 392 KiB                                                             
Downloading bind9-libs - 1 MiB                                                             
bind9-dnsutils done                                                             
bind9-libs done                                                             
Downloading libc-l10n - 843 KiB                                                             
Downloading locales - 3 MiB                                                             
Downloading media-types - 31 KiB                                                             
Downloading adb - 585 KiB                                                             
Downloading axel - 68 KiB                                                             
libc-l10n done                                                             
media-types done                                                             
Downloading libctf-nobfd0 - 151 KiB                                                             
axel done                                                             
Downloading libctf0 - 91 KiB                                                             
libctf-nobfd0 done                                                             
libctf0 done                                                             
adb done                                                             
Downloading binutils-x86-64-linux-gnu - 1 MiB                                                             
locales done                                                             
Downloading binutils - 60 KiB                                                             
Downloading libbinutils - 571 KiB                                                             
binutils done                                                             
Downloading binutils-common - 2 MiB                                                             
libbinutils done                                                             
Downloading black - 131 KiB                                                             
Downloading bsdextrautils - 140 KiB                                                             
binutils-x86-64-linux-gnu done                                                             
Downloading cinnamon-desktop-data - 150 KiB                                                             
binutils-common done                                                             
black done                                                             
bsdextrautils done                                                             
cinnamon-desktop-data done                                                             
Downloading cups-filters-core-drivers - 219 KiB                                                             
cups-filters-core-drivers done                                                             
Downloading libfontembed1 - 73 KiB                                                             
Downloading cups-filters - 573 KiB                                                             
Downloading libwww-perl - 188 KiB                                                             
Downloading devscripts - 1 MiB                                                             
Downloading dmtracedump - 32 KiB                                                             
libfontembed1 done                                                             
dmtracedump done                                                             
Downloading docker-compose - 120 KiB                                                             
libwww-perl done                                                             
Downloading dose-extra - 1 MiB                                                             
cups-filters done                                                             
devscripts done                                                             
Downloading eject - 102 KiB                                                             
docker-compose done                                                             
eject done                                                             
Downloading etc1tool - 24 KiB                                                             
dose-extra done                                                             
etc1tool done                                                             
Downloading exfat-fuse - 30 KiB                                                             
exfat-fuse done                                                             
Downloading fastboot - 371 KiB                                                             
Downloading fontconfig - 406 KiB                                                             
Downloading gcompris-qt - 171 KiB                                                             
Downloading gcompris-qt-data - 68 MiB                                                             
Downloading librsvg2-common - 33 KiB                                                             
fastboot done                                                             
librsvg2-common done                                                             
Downloading librsvg2-2 - 2 MiB                                                             
Downloading gir1.2-rsvg-2.0 - 32 KiB                                                             
gcompris-qt done                                                             
fontconfig done                                                             
gir1.2-rsvg-2.0 done                                                             
Downloading hprof-conv - 18 KiB                                                             
hprof-conv done                                                             
Downloading libibverbs1 - 60 KiB                                                             
Downloading ibverbs-providers - 307 KiB                                                             
Downloading icewm - 686 KiB                                                             
libibverbs1 done                                                             
Downloading icewm-common - 1 MiB                                                             
librsvg2-2 done                                                             
ibverbs-providers done                                                             
icewm done                                                             
Downloading libinotifytools0 - 23 KiB                                                             
icewm-common done                                                             
Downloading inotify-tools - 34 KiB                                                             
libinotifytools0 done                                                             
Downloading python3-wcwidth - 21 KiB                                                             
inotify-tools done                                                             
python3-wcwidth done                                                             
Downloading python3-prompt-toolkit - 263 KiB                                                             
Downloading ipython3 - 29 KiB                                                             
Downloading python3-ipython - 515 KiB                                                             
Downloading latte-dock - 1 MiB                                                             
ipython3 done                                                             
Downloading libbabeltrace1 - 170 KiB                                                             
python3-prompt-toolkit done                                                             
Downloading libbsd0 - 113 KiB                                                             
python3-ipython done                                                             
libbabeltrace1 done                                                             
latte-dock done                                                             
libbsd0 done                                                             
Downloading libbsd0 - 109 KiB                                                             
libbsd0 done                                                             
Downloading libccid - 351 KiB                                                             
Downloading llvm-13 - 10 MiB                                                             
Downloading llvm-13-linker-tools - 1 MiB                                                             
WARN: Ignoring err type Duplicate name: 'libbsd0.changelog' 324 MiB

Downloading llvm-13-dev - 29 MiB                                                             
libccid done                                                             
Downloading libclang-cpp13 - 10 MiB                                                             
llvm-13-linker-tools done                                                             
Downloading libllvm13 - 19 MiB                                                             
llvm-13 done                                                             
Downloading llvm-13-runtime - 258 KiB                                                             
llvm-13-runtime done                                                             
Downloading llvm-13-tools - 410 KiB                                                             
libclang-cpp13 done                                                             
llvm-13-tools done                                                             
Downloading libclang1-13 - 5 MiB                                                             
Downloading libdaxctl1 - 19 KiB                                                             
libdaxctl1 done                                                             
Downloading libfido2-1 - 72 KiB                                                             
libfido2-1 done                                                             
Downloading libgfxdr0 - 2 MiB                                                             
gcompris-qt-data done                                                             
libllvm13 done                                                             
libgfxdr0 done                                                             
libclang1-13 done                                                             
Downloading libglusterfs0 - 3 MiB                                                             
Downloading libgfrpc0 - 2 MiB                                                             
Downloading libgfapi0 - 3 MiB                                                             
Downloading libglibmm-2.4-1v5 - 601 KiB                                                             
libglibmm-2.4-1v5 done                                                             
Downloading libjack-jackd2-0 - 285 KiB                                                             
libgfapi0 done                                                             
libgfrpc0 done                                                             
libglusterfs0 done                                                             
libjack-jackd2-0 done                                                             
Downloading libjs-underscore - 113 KiB                                                             
Downloading libkpmcore11 - 576 KiB                                                             
Downloading libluajit-5.1-2 - 238 KiB                                                             
Downloading libluajit-5.1-common - 47 KiB                                                             
libluajit-5.1-common done                                                             
libluajit-5.1-2 done                                                             
Downloading mailutils - 572 KiB                                                             
libjs-underscore done                                                             
llvm-13-dev done                                                             
libkpmcore11 done                                                             
mailutils done                                                             
Downloading mailutils-common - 772 KiB                                                             
Downloading libmailutils8 - 918 KiB                                                             
mailutils-common done                                                             
libmailutils8 done                                                             
Downloading libnbd0 - 61 KiB                                                             
Downloading libndctl6 - 53 KiB                                                             
libnbd0 done                                                             
libndctl6 done                                                             
Downloading libnss-myhostname - 152 KiB                                                             
Downloading libostree-1-1 - 312 KiB                                                             
libnss-myhostname done                                                             
Downloading pipewire-pulse - 14 KiB                                                             
Downloading libpipewire-0.3-modules - 473 KiB                                                             
Downloading pipewire - 11 KiB                                                             
pipewire done                                                             
pipewire-pulse done                                                             
Downloading pipewire-bin - 291 KiB                                                             
Downloading libpipewire-0.3-0 - 248 KiB                                                             
Downloading libspa-0.2-modules - 482 KiB                                                             
libostree-1-1 done                                                             
libpipewire-0.3-modules done                                                             
pipewire-bin done                                                             
libpipewire-0.3-0 done                                                             
Downloading libpipewire-0.3-common - 59 KiB                                                             
libspa-0.2-modules done                                                             
libpipewire-0.3-common done                                                             
Downloading libpython2.7-stdlib - 1 MiB                                                             
Downloading libpython2.7-minimal - 387 KiB                                                             
Downloading libqalculate22 - 1 MiB                                                             
Downloading librdmacm1 - 67 KiB                                                             
Downloading librsvg2-bin - 1 MiB                                                             
libpython2.7-minimal done                                                             
librdmacm1 done                                                             
libpython2.7-stdlib done                                                             
librsvg2-bin done                                                             
libqalculate22 done                                                             
Downloading sbuild - 131 KiB                                                             
Downloading libsbuild-perl - 123 KiB                                                             
Downloading libscim8v5 - 249 KiB                                                             
libsbuild-perl done                                                             
sbuild done                                                             
libscim8v5 done                                                             
Downloading libxml-libxml-perl - 331 KiB                                                             
Downloading python3-breezy - 1 MiB                                                             
Downloading lintian-brush - 145 KiB                                                             
libxml-libxml-perl done                                                             
Downloading muffin-common - 719 KiB                                                             
Downloading ostree - 175 KiB                                                             
lintian-brush done                                                             
Downloading partitionmanager - 2 MiB                                                             
python3-breezy done                                                             
Downloading perl-tk - 1 MiB                                                             
muffin-common done                                                             
ostree done                                                             
partitionmanager done                                                             
perl-tk done                                                             
Downloading python3-dnspython - 132 KiB                                                             
python3-dnspython done                                                             
Downloading python3-jsondiff - 7 KiB                                                             
python3-jsondiff done                                                             
Downloading rfkill - 89 KiB                                                             
Downloading ruby-bundler - 377 KiB                                                             
rfkill done                                                             
Downloading ruby-rubygems - 282 KiB                                                             
Downloading ruby-mini-mime - 17 KiB                                                             
Downloading ruby-text - 13 KiB                                                             
ruby-mini-mime done                                                             
ruby-text done                                                             
ruby-bundler done                                                             
Downloading tpm-udev - 3 KiB                                                             
ruby-rubygems done                                                             
Downloading util-linux-locales - 1 MiB                                                             
tpm-udev done                                                             
Downloading virtualbox-guest-additions-iso - 43 MiB                                                             
Downloading wpasupplicant - 1 MiB                                                             
Downloading xapps-common - 52 KiB                                                             
util-linux-locales done                                                             
xapps-common done                                                             
wpasupplicant done                                                             
virtualbox-guest-additions-iso done                                                             
170 / 170 items: [##############################] 100.0% of 469 MiB
Downloaded data to /tmp/upgrade.zip
14:47 ♒ ॐ ♅ ♄ ⛢     ☺ 😄    
rrs@priyasi:~/.../apt-offline (master)$ 

@rickysarraf
Copy link
Owner Author

Also, to wrap up this bug report, the follow-up install operation with the same payload succeeded. So it clearly must be the proxy.

rrs@priyasi:~/.../apt-offline (master)$ sudo ./apt-offline install /tmp/upgrade.zip 
[sudo] password for rrs: 
(Y) Yes. Proceed with installation
(N) No, Abort.
(C) Display changelog
(?) Display this help message.
What would you like to do next:  (y, N, ?)y
Proceeding with installation
linux-image-liquorix-amd64_5.15-21.1~sid_amd64.deb file synced.
linux-headers-liquorix-amd64_5.15-21.1~sid_amd64.deb file synced.
bsdutils_1%3a2.37.3-1+b1_amd64.deb file synced.
util-linux_2.37.3-1+b1_amd64.deb file synced.
linux-headers-5.15.0-17.1-liquorix-amd64_5.15-21.1~sid_amd64.deb file synced.
linux-headers-5.15.0-16.1-liquorix-amd64_5.15-19.1~sid_amd64.deb file synced.
libc-devtools_2.33-5_amd64.deb file synced.
libc6-dbg_2.33-5_amd64.deb file synced.
libc6-i386_2.33-5_amd64.deb file synced.
libc-dev-bin_2.33-5_amd64.deb file synced.
libc6-dev_2.33-5_amd64.deb file synced.
libc6_2.33-5_i386.deb file synced.
libc6_2.33-5_amd64.deb file synced.
libc-bin_2.33-5_amd64.deb file synced.
systemd-timesyncd_250.3-2_amd64.deb file synced.
libnss-resolve_250.3-2_amd64.deb file synced.
systemd-coredump_250.3-2_amd64.deb file synced.
libnss-mymachines_250.3-2_amd64.deb file synced.
systemd-container_250.3-2_amd64.deb file synced.
systemd-sysv_250.3-2_amd64.deb file synced.
libpam-systemd_250.3-2_amd64.deb file synced.
ifupdown_0.8.37_amd64.deb file synced.
libnss-systemd_250.3-2_amd64.deb file synced.
libblkid1_2.37.3-1+b1_amd64.deb file synced.
libuuid1_2.37.3-1+b1_amd64.deb file synced.
libfdisk1_2.37.3-1+b1_amd64.deb file synced.
libgnutls30_3.7.3-4+b1_i386.deb file synced.
linux-image-5.15.0-16.1-liquorix-amd64_5.15-19.1~sid_amd64.deb file synced.
libmount1_2.37.3-1+b1_amd64.deb file synced.
libgnutls30_3.7.3-4+b1_amd64.deb file synced.
linux-image-5.15.0-17.1-liquorix-amd64_5.15-21.1~sid_amd64.deb file synced.
mount_2.37.3-1+b1_amd64.deb file synced.
libexpat1-dev_2.4.3-3_amd64.deb file synced.
fontconfig-config_2.13.1-4.3_all.deb file synced.
libsystemd0_250.3-2_amd64.deb file synced.
systemd_250.3-2_amd64.deb file synced.
libexpat1_2.4.3-3_i386.deb file synced.
libexpat1_2.4.3-3_amd64.deb file synced.
libfontconfig1_2.13.1-4.3_amd64.deb file synced.
libglib2.0-bin_2.70.3-1_amd64.deb file synced.
python3-cssselect_1.1.0+ds-3_all.deb file synced.
calibre-bin_5.35.0+dfsg-3_amd64.deb file synced.
libglib2.0-data_2.70.3-1_all.deb file synced.
libglib2.0-0_2.70.3-1_amd64.deb file synced.
libdeflate0_1.9-1_amd64.deb file synced.
libcupsfilters1_1.28.11-2_amd64.deb file synced.
cups-browsed_1.28.11-2_amd64.deb file synced.
libtiff5_4.3.0-3_amd64.deb file synced.
pypy3-lib_7.3.7+dfsg-5_amd64.deb file synced.
uuid-runtime_2.37.3-1+b1_amd64.deb file synced.
libsmartcols1_2.37.3-1+b1_amd64.deb file synced.
libudev-dev_250.3-2_amd64.deb file synced.
libudev1_250.3-2_amd64.deb file synced.
mawk_1.3.4.20200120-3+b1_amd64.deb file synced.
udev_250.3-2_amd64.deb file synced.
fdisk_2.37.3-1+b1_amd64.deb file synced.
calibre_5.35.0+dfsg-3_all.deb file synced.
bind9-host_1%3a9.18.0-2_amd64.deb file synced.
pypy3_7.3.7+dfsg-5_amd64.deb file synced.
bind9-dnsutils_1%3a9.18.0-2_amd64.deb file synced.
bind9-libs_1%3a9.18.0-2_amd64.deb file synced.
libc-l10n_2.33-5_all.deb file synced.
media-types_5.0.0_all.deb file synced.
axel_2.17.11-1_amd64.deb file synced.
libctf-nobfd0_2.37.90.20220123-2_amd64.deb file synced.
libctf0_2.37.90.20220123-2_amd64.deb file synced.
adb_1%3a29.0.6-3+b1_amd64.deb file synced.
locales_2.33-5_all.deb file synced.
binutils_2.37.90.20220123-2_amd64.deb file synced.
libbinutils_2.37.90.20220123-2_amd64.deb file synced.
binutils-x86-64-linux-gnu_2.37.90.20220123-2_amd64.deb file synced.
binutils-common_2.37.90.20220123-2_amd64.deb file synced.
black_21.12b0-1_all.deb file synced.
bsdextrautils_2.37.3-1+b1_amd64.deb file synced.
cinnamon-desktop-data_5.2.1-1_all.deb file synced.
cups-filters-core-drivers_1.28.11-2_amd64.deb file synced.
libfontembed1_1.28.11-2_amd64.deb file synced.
dmtracedump_29.0.6-3+b1_amd64.deb file synced.
libwww-perl_6.61-1_all.deb file synced.
cups-filters_1.28.11-2_amd64.deb file synced.
devscripts_2.22.1_amd64.deb file synced.
docker-compose_1.29.2-1_all.deb file synced.
eject_2.37.3-1+b1_amd64.deb file synced.
dose-extra_6.0.1-3+b1_amd64.deb file synced.
etc1tool_29.0.6-3+b1_amd64.deb file synced.
exfat-fuse_1.3.0+git20220115-2_amd64.deb file synced.
fastboot_1%3a29.0.6-3+b1_amd64.deb file synced.
librsvg2-common_2.52.5+dfsg-3+b1_amd64.deb file synced.
gcompris-qt_2.1-1_amd64.deb file synced.
fontconfig_2.13.1-4.3_amd64.deb file synced.
gir1.2-rsvg-2.0_2.52.5+dfsg-3+b1_amd64.deb file synced.
hprof-conv_29.0.6-3+b1_amd64.deb file synced.
libibverbs1_39.0-1_amd64.deb file synced.
librsvg2-2_2.52.5+dfsg-3+b1_amd64.deb file synced.
ibverbs-providers_39.0-1_amd64.deb file synced.
icewm_2.9.5-1_amd64.deb file synced.
icewm-common_2.9.5-1_amd64.deb file synced.
libinotifytools0_3.22.1.0-2+b1_amd64.deb file synced.
inotify-tools_3.22.1.0-2+b1_amd64.deb file synced.
python3-wcwidth_0.2.5+dfsg1-1_all.deb file synced.
ipython3_7.31.1-1_all.deb file synced.
python3-prompt-toolkit_3.0.26-1_all.deb file synced.
python3-ipython_7.31.1-1_all.deb file synced.
libbabeltrace1_1.5.8-2+b1_amd64.deb file synced.
latte-dock_0.10.8-1+b1_amd64.deb file synced.
libbsd0_0.11.5-1+b1_i386.deb file synced.
libbsd0_0.11.5-1+b1_amd64.deb file synced.
libccid_1.5.0-1_amd64.deb file synced.
llvm-13-linker-tools_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
llvm-13_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
llvm-13-runtime_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
libclang-cpp13_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
llvm-13-tools_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
libdaxctl1_72.1-1+b1_amd64.deb file synced.
libfido2-1_1.10.0-1_amd64.deb file synced.
gcompris-qt-data_2.1-1_all.deb file synced.
libllvm13_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
libgfxdr0_10.1-1+b1_amd64.deb file synced.
libclang1-13_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
libglibmm-2.4-1v5_2.66.2-2+b1_amd64.deb file synced.
libgfapi0_10.1-1+b1_amd64.deb file synced.
libgfrpc0_10.1-1+b1_amd64.deb file synced.
libglusterfs0_10.1-1+b1_amd64.deb file synced.
libjack-jackd2-0_1.9.20~dfsg-1+b1_amd64.deb file synced.
libluajit-5.1-common_2.1.0~beta3+git20210112+dfsg-2_all.deb file synced.
libluajit-5.1-2_2.1.0~beta3+git20210112+dfsg-2_amd64.deb file synced.
libjs-underscore_1.13.2~dfsg-2_all.deb file synced.
llvm-13-dev_1%3a13.0.1~+rc3-1~exp1+b1_amd64.deb file synced.
libkpmcore11_21.12.1-1_amd64.deb file synced.
mailutils_1%3a3.14-1_amd64.deb file synced.
mailutils-common_1%3a3.14-1_all.deb file synced.
libmailutils8_1%3a3.14-1_amd64.deb file synced.
libnbd0_1.10.3-1+b1_amd64.deb file synced.
libndctl6_72.1-1+b1_amd64.deb file synced.
libnss-myhostname_250.3-2_amd64.deb file synced.
pipewire_0.3.44-1_amd64.deb file synced.
pipewire-pulse_0.3.44-1_amd64.deb file synced.
libostree-1-1_2022.1-3+b1_amd64.deb file synced.
libpipewire-0.3-modules_0.3.44-1_amd64.deb file synced.
pipewire-bin_0.3.44-1_amd64.deb file synced.
libpipewire-0.3-0_0.3.44-1_amd64.deb file synced.
libspa-0.2-modules_0.3.44-1_amd64.deb file synced.
libpipewire-0.3-common_0.3.44-1_all.deb file synced.
libpython2.7-minimal_2.7.18-12+b1_amd64.deb file synced.
librdmacm1_39.0-1_amd64.deb file synced.
libpython2.7-stdlib_2.7.18-12+b1_amd64.deb file synced.
librsvg2-bin_2.52.5+dfsg-3+b1_amd64.deb file synced.
libqalculate22_3.22.0-3+b1_amd64.deb file synced.
libsbuild-perl_0.82.0_all.deb file synced.
sbuild_0.82.0_all.deb file synced.
libscim8v5_1.4.18+git20211204-0.1_amd64.deb file synced.
libxml-libxml-perl_2.0207+dfsg-2_amd64.deb file synced.
lintian-brush_0.120_all.deb file synced.
python3-breezy_3.2.1+bzr7585-1_amd64.deb file synced.
muffin-common_5.2.0-2_all.deb file synced.
ostree_2022.1-3+b1_amd64.deb file synced.
partitionmanager_21.12.1-1_amd64.deb file synced.
perl-tk_1%3a804.035-2_amd64.deb file synced.
python3-dnspython_2.2.0-2_all.deb file synced.
python3-jsondiff_1.3.1-1_all.deb file synced.
rfkill_2.37.3-1+b1_amd64.deb file synced.
ruby-mini-mime_1.1.1-2_all.deb file synced.
ruby-text_1.3.1-1_all.deb file synced.
ruby-bundler_2.3.5-2_all.deb file synced.
ruby-rubygems_3.3.5-2_all.deb file synced.
tpm-udev_0.6_all.deb file synced.
util-linux-locales_2.37.3-1_all.deb file synced.
xapps-common_2.2.8-1_all.deb file synced.
wpasupplicant_2%3a2.10-1_amd64.deb file synced.
virtualbox-guest-additions-iso_6.1.32-1_all.deb file synced.
14:52 ♒ ॐ ♅ ♄ ⛢     ☺ 😄    
rrs@priyasi:~/.../apt-offline (master)$ sudo apt upgrade
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
The following packages were automatically installed and are no longer required:
  linux-headers-5.15.0-16.1-liquorix-amd64 linux-image-5.15.0-16.1-liquorix-amd64
Use 'sudo apt autoremove' to remove them.
The following packages have been kept back:
  gcompris-qt-data
The following packages will be upgraded:
  fontconfig-config ipython3 libglib2.0-data libsbuild-perl media-types python3-cssselect python3-dnspython python3-ipython ruby-mini-mime ruby-text sbuild virtualbox-guest-additions-iso
12 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/48.0 MB of archives.
After this operation, 181 kB of additional disk space will be used.
Do you want to continue? [Y/n] 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant