abraunegg / onedrive

OneDrive Client for Linux
https://abraunegg.github.io
GNU General Public License v3.0
10.21k stars 867 forks source link

Bug: Alpine Container won't sync files #2951

Closed DevDorrejo closed 3 weeks ago

DevDorrejo commented 3 weeks ago

Describe the bug

Execute container for first run, after a time fail:

DEBUG: ******************* SYNC LIST RULES EVALUATION START *******************
DEBUG: Evaluation against 'sync_list' rules for this input path: /Workspaces
DEBUG: [S]exludeExactMatch       = false
DEBUG: [S]excludeParentMatched   = false
DEBUG: [S]excludeAnywhereMatched = false
DEBUG: [S]excludeWildcardMatched = false
DEBUG: ------------------------------ NEW RULE --------------------------------
DEBUG: Evaluation against INCLUSION 'sync_list' rule: /Workspaces/scripts
DEBUG: Running exactMatchRuleSegmentsToPathSegments()
DEBUG: Rule Segments: ["Workspaces", "scripts"]
DEBUG: Input Segments: ["Workspaces"]
DEBUG: Running matchFirstSegmentToPathFirstSegment()
DEBUG: Rule Segments: ["Workspaces", "scripts"]
DEBUG: Input Segments: ["Workspaces"]
DEBUG: Parent root path match with 'sync_list' rule entry
DEBUG: Evaluation against 'sync_list' rule result: parent root path match to rule
DEBUG: ------------------------------------------------------------------------
DEBUG: [F]exludeExactMatch       = false
DEBUG: [F]excludeParentMatched   = false
DEBUG: [F]excludeAnywhereMatched = false
DEBUG: [F]excludeWildcardMatched = false
DEBUG: Evaluation against 'sync_list' final result: included for sync
DEBUG: ******************* SYNC LIST RULES EVALUATION END *********************
DEBUG: Flagging object as a directory
DEBUG: OneDrive change is an update to an existing local item
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!103
DEBUG: existingItemPath calculated full path is: ./Workspaces
DEBUG: Batched JSON item processing time: 639 μs and 9 hnsecs
DEBUG: ------------------------------------------------------------------
DEBUG: Number of JSON items to process is: 4977
DEBUG: Number of JSON items processed was: 4977
DEBUG: Number of items to download from Microsoft OneDrive: 2720
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!18442
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!169159
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!63859
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!163645
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!162926
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!162926
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!162926
DEBUG: Attempting to calculate local filesystem path for 77e390d002eb0b84 and 77E390D002EB0B84!63859
DEBUG: JSON Item calculated full path for download is: Workspaces/scripts/Personal/OneDrive.sh
Due to a termination signal, internal processing stopped abruptly. The application will now exit in a unclean manner.
DEBUG: JSON Item calculated full path for download is: Workspaces/scripts/Containers/Devs/Dev-PG.sh
Due to a termination signal, internal processing stopped abruptly. The application will now exit in a unclean manner.
/entrypoint.sh: line 172:    10 Segmentation fault      (core dumped) /usr/local/bin/onedrive "${ARGS[@]}"

Operating System Details

uname -a: `Linux devs 6.11.5-2-default #1 SMP PREEMPT_DYNAMIC Wed Oct 23 04:27:11 UTC 2024 (b4e3aa9) x86_64 x86_64 x86_64 GNU/Linux`

cat /etc/*-re*

NAME="openSUSE Tumbleweed"
# VERSION="20241103"
ID="opensuse-tumbleweed"
ID_LIKE="opensuse suse"
VERSION_ID="20241103"
PRETTY_NAME="openSUSE Tumbleweed"
ANSI_COLOR="0;32"
# CPE 2.3 format, boo#1217921
CPE_NAME="cpe:2.3:o:opensuse:tumbleweed:20241103:*:*:*:*:*:*:*"
#CPE 2.2 format
#CPE_NAME="cpe:/o:opensuse:tumbleweed:20241103"
BUG_REPORT_URL="https://bugzilla.opensuse.org"
SUPPORT_URL="https://bugs.opensuse.org"
HOME_URL="https://www.opensuse.org"
DOCUMENTATION_URL="https://en.opensuse.org/Portal:Tumbleweed"
LOGO="distributor-logo-Tumbleweed"

Client Installation Method

From 3rd Party Source (PPA, OpenSuSE Build Service etc)

OneDrive Account Type

Personal

What is your OneDrive Application Version

Latest

What is your OneDrive Application Configuration

Default is a container.

What is your 'curl' version

From the container one

Where is your 'sync_dir' located

Local

What are all your system 'mount points'

user mount point, not external

What are all your local file system partition types

NAME   FSTYPE FSVER LABEL UUID                                 FSAVAIL FSUSE% MOUNTPOINTS
sda
├─sda1 vfat   FAT32       C3A8-1BF8                             505.1M     1% /boot/efi
└─sda2 btrfs              6a952f3d-d3f4-473c-90f5-3e04d3fcb119  926.4G     0% /var
                                                                              /boot/grub2/x86_64-efi
                                                                              /root
                                                                              /boot/grub2/i386-pc
                                                                              /srv
                                                                              /opt
                                                                              /usr/local
                                                                              /home
                                                                              /.snapshots
                                                                              /

How do you use 'onedrive'

use the next script to execute the container

#!/usr/bin/env bash

## =================== ##
## Container variables ##
## =================== ##
ONEDRIVE_UID=$(id -u)
ONEDRIVE_GID=$(id -g)

## ================= ##
## Volume Management ##
## ================= ##
folders=(
    "conf"
    "data"
)
paths="${PWD}/.onedrive"
for d in "${folders[@]}"; do
    if [ ! -d "${paths}/${d}" ]; then
        mkdir -p "${paths}/${d}"
    fi
    podman volume create \
        -o type=none \
        -o device="${paths}/${d}" \
        -o=o=bind \
        "${d}"
done

cat >"${paths}"/conf/sync_list <<EOF
/Workspaces/scripts/
EOF

podman run -dt \
    --replace \
    --label "io.containers.autoupdate=image" \
    --name onedrive \
    --user "${ONEDRIVE_UID}:${ONEDRIVE_GID}" \
    --userns=keep-id \
    -v conf:/onedrive/conf:U \
    -v data:/onedrive/data:U \
    docker.io/driveone/onedrive:alpine

for first run use:

podman run --rm -it \
    --replace \
    --label "io.containers.autoupdate=image" \
    --name onedrive \
    --user "${ONEDRIVE_UID}:${ONEDRIVE_GID}" \
    --userns=keep-id \
    -v conf:/onedrive/conf:U \
    -v data:/onedrive/data:U \
    -e ONEDRIVE_DEBUG=1 \
    docker.io/driveone/onedrive:alpine

Steps to reproduce the behaviour

Setup onedrive podman container using alpine images.

Complete Verbose Log Output

This is the relevant information fo the logs:

Number of items to download from Microsoft OneDrive: 2720
Due to a termination signal, internal processing stopped abruptly. The application will now exit in a unclean manner.
Due to a termination signal, internal processing stopped abruptly. The application will now exit in a unclean manner.
/entrypoint.sh: line 172:    10 Segmentation fault      (core dumped) /usr/local/bin/onedrive "${ARGS[@]}"

others line only said:

- creating local directory
- Processing OneDrive JSON item batch [x/10] to ensure consistent local state
- Processing API Response Bundle: x - Quantity of 'changes|items' in this bundle to process: x
- Processing 4977 applicable changes and items received from Microsoft OneDrive
- Finished processing /delta JSON response from the OneDrive API

Screenshots

No response

Other Log Information or Details

No response

Additional context

No response

abraunegg commented 3 weeks ago

@DevDorrejo A couple of points:

Please perform the above steps, specifically updating / changing what container you are using.

abraunegg commented 3 weeks ago

@DevDorrejo Please can you respond

DevDorrejo commented 3 weeks ago

Hello,

Right now I am at work, like in four hours I will be at home and test with the edge version.

DevDorrejo commented 3 weeks ago

@abraunegg tried with edge and still failed, I sent the email.

Anything I will be attentive to.

abraunegg commented 3 weeks ago

@DevDorrejo Many thanks for diagnosing and testing.

To assist with debugging this issue further, please can you run the following python script on your host that runs podman:

import socket
import time
import sys

def keep_connection_open(host, port):
    # Create a TCP socket
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

    try:
        # Connect to the server
        print(f"Connecting to {host}:{port}...")
        sock.connect((host, port))
        print(f"Connected to {host}:{port}")

        # Record the start time
        start_time = time.time()

        # Keep the connection open and idle
        print("Keeping the connection open and idle...")
        while True:
            try:
                # Check if the connection is still open by sending a zero-length packet
                sock.send(b'')
            except socket.error:
                # Connection was closed
                break

            # Sleep for a bit to avoid busy-looping
            time.sleep(1)

        # Record the end time when the connection is closed
        end_time = time.time()
        duration = end_time - start_time

        print(f"Connection closed. It was open for {duration:.2f} seconds.")

    except socket.error as e:
        print(f"Error: {e}")
    finally:
        sock.close()

if __name__ == "__main__":
    if len(sys.argv) != 3:
        print(f"Usage: {sys.argv[0]} <host> <port>")
        sys.exit(1)

    host = sys.argv[1]
    port = int(sys.argv[2])

    keep_connection_open(host, port)

Please save this file as whatever you wish, or for example: test_connection_age.py

When running this python script, please do the following:

./test_connection_age.py graph.microsoft.com 443

The output, once complete will be similar to the following:

[alex@onedrive-client-dev ~]$ python3 ./test_connection_age.py graph.microsoft.com 443    
Connecting to graph.microsoft.com:443...
Connected to graph.microsoft.com:443
Keeping the connection open and idle...
Connection closed. It was open for 123.12 seconds.
[alex@onedrive-client-dev ~]$ 

Please can you post your results.

DevDorrejo commented 3 weeks ago

@abraunegg

Here is the script output:

devs@devs:~/bin> python3 main.py graph.microsoft.com 443
Connecting to graph.microsoft.com:443...
Connected to graph.microsoft.com:443
Keeping the connection open and idle...
Connection closed. It was open for 125.04 seconds.
jhayat commented 3 weeks ago

We are facing the exact same issue when running a Docker container on a Linux host using the image tags alpine or edge-alpine. Here's the output after running the provided python script inside the container:

Connecting to graph.microsoft.com:443...
Connected to graph.microsoft.com:443
Keeping the connection open and idle...
Connection closed. It was open for 126.02 seconds.

ℹ️ The image tag edge works for us.

abraunegg commented 3 weeks ago

@jhayat Thanks for the feedback - and as expected, the edge container solved the issue due to the code changes from v2.5.2 release and current 'master'

@DevDorrejo Can you please double check your usage of calling the 'edge' container please instead of 'alpine-edge'

There is potentially something in the 'alpine' Docker image curl wise that I will have to look into further.

abraunegg commented 3 weeks ago

Looking at the Alpine Edge container, this is running curl/libcurl 8.10.1 which is the same as the Debian Edge container .. so there must be something else going on deeper in that stack.

One difference I have noted is that the Debian container specifically includes curl + libcurl and the Alpine only includes libcurl.

I will push an update to ensure this is consistent to determine if this is the cause.

Lastly, I have been running Alpine / Alpine Edge locally against a 100k data set .... uploading / downloading files and cannot trigger this issue.

DevDorrejo commented 3 weeks ago

Can you share the dockerfile which you use to build?, maybe can I help to debug.

Get Outlook for Androidhttps://aka.ms/AAb9ysg


From: abraunegg @.> Sent: Wednesday, November 6, 2024 3:43:13 PM To: abraunegg/onedrive @.> Cc: Walddys Emmanuel Dorrejo Céspedes @.>; Mention @.> Subject: Re: [abraunegg/onedrive] Bug: Container won't sync files (Issue #2951)

Looking at the Alpine Edge container, this is running curl/libcurl 8.10.1 which is the same as the Debian Edge container .. so there must be something else going on deeper in that stack.

One difference I have noted is that the Debian container specifically includes curl + libcurl and the Alpine only includes libcurl.

I will push an update to ensure this is consistent to determine if this is the cause.

Lastly, I have been running Alpine / Alpine Edge locally against a 100k data set .... uploading / downloading files and cannot trigger this issue.

— Reply to this email directly, view it on GitHubhttps://github.com/abraunegg/onedrive/issues/2951#issuecomment-2460630296, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AB2XJHRPR4ORRQQR5X3MSDDZ7JWNDAVCNFSM6AAAAABRFRZM5GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDINRQGYZTAMRZGY. You are receiving this because you were mentioned.Message ID: @.***>

abraunegg commented 3 weeks ago

@DevDorrejo All the Docker files used to build the containers on Dockerhub are found here: https://github.com/abraunegg/onedrive/tree/master/contrib/docker

DevDorrejo commented 3 weeks ago

@DevDorrejo All the Docker files used to build the containers o n Dockerhub are found here: https://github.com/abraunegg/onedrive/tree/master/contrib/docker

Ok thanks, later in home will look into that.

abraunegg commented 3 weeks ago

@DevDorrejo Any update you can share ?

DevDorrejo commented 3 weeks ago

Not yet, still working in the debugging.

DevDorrejo commented 3 weeks ago

@abraunegg

I Just create a new container and inside do the container, I proceed to the installation from source of OneDrive which work without issue.

The process:

1. go inside a fresh container.
2. install packages and dependencies:
    1. apk add gpg-agent gpg bash curl xz git
    2. apk add libstdc++ dmd curl-dev sqlite-dev make gcc libc-dev
3. git clone https://github.com/abraunegg/onedrive.git
4. cd onedrive
5. ./configure
6. make && make install
7. Sync account
8. Work.

Building the container with this make it work:

# -*-Dockerfile-*-

ARG ALPINE_VERSION=3.20

FROM alpine:${ALPINE_VERSION} AS builder-onedrive

RUN apk add --update --no-cache libstdc++ dmd curl-dev sqlite-dev make gcc libc-dev gpg-agent gpg bash curl xz git
WORKDIR /opt
RUN set -xv && \
    git clone https://github.com/abraunegg/onedrive.git && \
    cd onedrive && \
    ./configure --enable-debug && \
    make clean && make && \
    make install

FROM docker.io/alpine:${ALPINE_VERSION}

RUN apk add --upgrade apk-tools && \
    apk upgrade --available

RUN apk add --update --no-cache llvm-libunwind sqlite-libs libcurl bash shadow && \
    mkdir -p /onedrive/conf /onedrive/data

COPY --from=builder-onedrive /usr/local/bin/onedrive /usr/local/bin/

COPY ./entrypoint.sh /
RUN chmod +x /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]

Image output: image

Image of process finish sync: image

abraunegg commented 3 weeks ago

@DevDorrejo Interesting .... will pull this in as a PR and test locally

abraunegg commented 3 weeks ago

@DevDorrejo This has build issues:

image

Will need to update the suggested change

DevDorrejo commented 3 weeks ago

@abraunegg

Let me see, I fail in asking you something, from where or which is you root at the moment to execute the build?, for example, I did the build, but I was inside of onedrive/contrib/docker at the moment of the build, maybe use and absolute path is better if using from onedrive folder.

abraunegg commented 3 weeks ago

@DevDorrejo Running the container also fails:

image

As your Dockerfile change removed gosu

DevDorrejo commented 3 weeks ago

When I run the container never asked for gosu

abraunegg commented 3 weeks ago

@DevDorrejo With changes made + adjustments:

[alex@fedora-38-docker-host onedrive-pr2955]$ docker run -it --name onedrive-alpine-new -v onedrive_conf:/onedrive/conf -v "/home/alex/docker/onedrive-data:/onedrive/data" -e "ONEDRIVE_UID=1000" -e "ONEDRIVE_GID=1000" local-onedrive-alpine:latest
# Running container as user: onedrive
# Base Args: --monitor
# Changing ownership permissions on /onedrive/data and /onedrive/conf to onedrive:onedrive
# Launching 'onedrive' as onedrive via gosu
Reading configuration file: /onedrive/conf/config
Configuration file successfully loaded
Using IPv4 and IPv6 (if configured) for all network operations
Attempting to contact Microsoft OneDrive Login Service
Successfully reached Microsoft OneDrive Login Service
Configuring Global Azure AD Endpoints
OneDrive synchronisation interval (seconds): 300
Initialising filesystem inotify monitoring ...
Performing initial synchronisation to ensure consistent local state ...
Attempting to contact Microsoft OneDrive Login Service
Successfully reached Microsoft OneDrive Login Service
Starting a sync with Microsoft OneDrive
Fetching items from the OneDrive API for Drive ID: 66d53be8a5056eca ..... 
Processing 144 applicable changes and items received from Microsoft OneDrive . 
Number of items to download from Microsoft OneDrive: 110
Downloading file: Issue_2783/General/P1.0 Test Data/P1.0 Testing Events/2020 Logs/SyncTest/YY_MM_DD.ulg ... done
Downloading file: Issue_2783/General/P1.0 Test Data/P1.0 Testing Events/2019 Logs/SyncTest/YY_MM_DD.ulg ... done
Downloading file: Issue_2783/General/P1.0 Test Data/P1.0 Testing Events/2021 Logs/SyncTest/YY_MM_DD.ulg ... done
Downloading file: Issue_2783/General/P1.0 Test Data/P1.0 Testing Events/2022 Logs/SyncTest/YY_MM_DD.ulg ... done
Downloading file: Issue_2783/General/YY_MM_DD.trc ... done
Downloading: Online Added Data/aa_dd_cc.ulg ... 0%   |  ETA    --:--:--
Downloading file: Online Added Data/55_44_33_.trc ... done
Downloading: Online Added Data/aa_dd_cc.ulg ... 5%   |  ETA    00:00:57
Downloading: Online Added Data/aa_dd_cc.ulg ... 10%  |  ETA    00:00:27
Downloading: Online Added Data/aa_dd_cc.ulg ... 15%  |  ETA    00:00:17
Downloading: Online Added Data/aa_dd_cc.ulg ... 20%  |  ETA    00:00:12
Downloading: Online Added Data/aa_dd_cc.ulg ... 25%  |  ETA    00:00:09
Downloading: Online Added Data/aa_dd_cc.ulg ... 30%  |  ETA    00:00:07
Downloading: Online Added Data/aa_dd_cc.ulg ... 35%  |  ETA    00:00:06
Downloading: Online Added Data/aa_dd_cc.ulg ... 40%  |  ETA    00:00:05
Downloading: Online Added Data/aa_dd_cc.ulg ... 45%  |  ETA    00:00:04
Downloading: Online Added Data/aa_dd_cc.ulg ... 50%  |  ETA    00:00:04
Downloading: Online Added Data/aa_dd_cc.ulg ... 55%  |  ETA    00:00:04
Downloading: Online Added Data/17_24_14.ulg ... 0%   |  ETA    --:--:--
Downloading: Online Added Data/aa_dd_cc.ulg ... 60%  |  ETA    00:00:03
Downloading: Online Added Data/aa_dd_cc.ulg ... 65%  |  ETA    00:00:03
Downloading: Online Added Data/17_24_14.ulg ... 5%   |  ETA    00:01:16
Downloading: Online Added Data/aa_dd_cc.ulg ... 70%  |  ETA    00:00:02
Downloading: Online Added Data/aa_dd_cc.ulg ... 75%  |  ETA    00:00:02
Downloading: Online Added Data/17_24_14.ulg ... 10%  |  ETA    00:00:36
Downloading: Online Added Data/aa_dd_cc.ulg ... 80%  |  ETA    00:00:01
Downloading: Online Added Data/aa_dd_cc.ulg ... 85%  |  ETA    00:00:01
Downloading: Online Added Data/17_24_14.ulg ... 15%  |  ETA    00:00:23
Downloading: Online Added Data/aa_dd_cc.ulg ... 90%  |  ETA    00:00:01
Downloading: Online Added Data/aa_dd_cc.ulg ... 95%  |  ETA    00:00:01
Downloading: Online Added Data/17_24_14.ulg ... 20%  |  ETA    00:00:16
Downloading: Online Added Data/aa_dd_cc.ulg ... 100% | DONE in 00:00:04
Downloading: Online Added Data/17_24_14.ulg ... 25%  |  ETA    00:00:12
Downloading: Online Added Data/17_24_14.ulg ... 30%  |  ETA    00:00:10
Downloading file: Online Added Data/aa_dd_cc.ulg ... done
Downloading: Online Added Data/17_24_14.ulg ... 35%  |  ETA    00:00:08
Downloading: Online Added Data/17_24_14.ulg ... 40%  |  ETA    00:00:06
Downloading: Online Added Data/17_24_14.ulg ... 45%  |  ETA    00:00:05
Downloading: Online Added Data/17_24_14.ulg ... 50%  |  ETA    00:00:04
Downloading: Online Added Data/17_24_14.ulg ... 55%  |  ETA    00:00:04
Downloading: Online Added Data/17_24_14.ulg ... 60%  |  ETA    00:00:03
Downloading: Online Added Data/17_24_14.ulg ... 65%  |  ETA    00:00:03
Downloading: Online Added Data/17_24_14.ulg ... 70%  |  ETA    00:00:02
Downloading: Online Added Data/17_24_14.ulg ... 75%  |  ETA    00:00:02
Downloading: Online Added Data/17_24_14.ulg ... 80%  |  ETA    00:00:01
Downloading: Online Added Data/17_24_14.ulg ... 85%  |  ETA    00:00:01
Downloading: Online Added Data/17_24_14.ulg ... 90%  |  ETA    00:00:01
Downloading: Online Added Data/17_24_14.ulg ... 95%  |  ETA    00:00:01
Downloading: Online Added Data/17_24_14.ulg ... 100% | DONE in 00:00:04
Downloading file: Online Added Data/17_24_14.ulg ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file0.data ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file8.data ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file4.data ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file5.data ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file2.data ... done
Downloading file: Issue_2783/General/P1.0 Test Data/P1.0 Testing Events/2023 Logs/SyncTest/YY_MM_DD.ulg ... done
Downloading file: Issue_2783/General/P1.0 Test Data/P1.0 Testing Events/2024 Logs/SyncTest/YY_MM_DD.ulg ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file9.data ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file6.data ... done
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 15%  |  ETA    00:00:06
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file4.data ... done
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 5%   |  ETA    00:00:38
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 40%  |  ETA    00:00:03
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file5.data ... done
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 15%  |  ETA    00:00:12
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file0.data ... done
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... 100% | DONE in 00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 65%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file7.data ... done
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 55%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 80%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file2.data ... done
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... 100% | DONE in 00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... 100% | DONE in 00:00:03
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file1.data ... done
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file1.data ... done
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 5%   |  ETA    00:00:38
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 15%  |  ETA    00:00:12
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file2.data ... done
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 5%   |  ETA    00:00:38
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file3.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 30%  |  ETA    00:00:05
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file6.data ... done
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 40%  |  ETA    00:00:03
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file9.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 30%  |  ETA    00:00:07
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 35%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 45%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 20%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 35%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 40%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 25%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 40%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 45%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 50%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 30%  |  ETA    00:00:07
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 50%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 45%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 35%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 55%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 55%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 50%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 40%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 55%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 45%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 50%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 55%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 75%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... 100% | DONE in 00:00:04
Downloading: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... 100% | DONE in 00:00:04
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... 100% | DONE in 00:00:04
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 90%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file5.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 95%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file8.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... 100% | DONE in 00:00:04
Downloading file: random_files_repeat_ubuntu24/bbqfgpLIGENMCOtQnaxa86fxwvm3QtNb/file3.data ... done
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file4.data ... done
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 0%   |  ETA    --:--:--
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file3.data ... done
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 5%   |  ETA    00:00:19
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file6.data ... done
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 15%  |  ETA    00:00:06
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file9.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 55%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file5.data ... done
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file1.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 90%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file2.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... 100% | DONE in 00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 95%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/W3DyFUi1mi4vfcM2C705N3v59lbY8y65/file7.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... 100% | DONE in 00:00:03
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file0.data ... done
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file8.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 15%  |  ETA    00:00:06
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file3.data ... done
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file1.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 20%  |  ETA    00:00:04
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file7.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 40%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 45%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 50%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 55%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file0.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... 100% | DONE in 00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 25%  |  ETA    00:00:06
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file9.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 50%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file8.data ... done
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... 100% | DONE in 00:00:03
Downloading file: random_files_repeat_ubuntu24/d3JjhDnRj13xjsgDUWrlSiVrLd92fXNX/file7.data ... done
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 40%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 45%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 50%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 55%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 60%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 65%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 10%  |  ETA    00:00:09
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file4.data ... done
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... 100% | DONE in 00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 30%  |  ETA    00:00:05
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file9.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 35%  |  ETA    00:00:04
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file6.data ... done
Downloading file: random_files_repeat_ubuntu24/rozhF7GbMW584nR9avY9OtgWqjrGcPKW/file4.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 70%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file5.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 75%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file8.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... 100% | DONE in 00:00:02
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file2.data ... done
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file7.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 5%   |  ETA    00:00:00
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 10%  |  ETA    00:00:00
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 15%  |  ETA    00:00:00
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 20%  |  ETA    00:00:00
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 25%  |  ETA    00:00:00
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 30%  |  ETA    00:00:00
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 35%  |  ETA    00:00:00
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 40%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 45%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 50%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 55%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 60%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 65%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 25%  |  ETA    00:00:03
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file1.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 80%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file0.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 40%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 45%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... 100% | DONE in 00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 55%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file4.data ... done
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file0.data ... done
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file5.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 75%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file8.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 80%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file6.data ... done
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... 100% | DONE in 00:00:03
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file1.data ... done
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 10%  |  ETA    00:00:09
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file2.data ... done
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 15%  |  ETA    00:00:17
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 20%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 25%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 30%  |  ETA    00:00:07
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 35%  |  ETA    00:00:08
Downloading file: random_files_repeat_ubuntu24/TX2usMRhFKfylfn80ECKR2m0RgzBdL2s/file3.data ... done
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 40%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 45%  |  ETA    00:00:05
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file3.data ... done
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 50%  |  ETA    00:00:04
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file6.data ... done
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 55%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 60%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 65%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 70%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 75%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 80%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... 100% | DONE in 00:00:05
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file7.data ... done
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file0.data ... done
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file2.data ... done
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file5.data ... done
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file5.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 0%   |  ETA    --:--:--
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file0.data ... done
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file4.data ... done
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file7.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 5%   |  ETA    00:00:57
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 10%  |  ETA    00:00:27
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 15%  |  ETA    00:00:23
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file1.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 20%  |  ETA    00:00:20
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 25%  |  ETA    00:00:15
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 30%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 35%  |  ETA    00:00:10
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 40%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 45%  |  ETA    00:00:07
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 50%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 55%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 60%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 65%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 70%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 75%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 80%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/15h5SD8KJV2F1oNP4dtPtZP8T6WFPEPi/file9.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... 100% | DONE in 00:00:05
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file4.data ... done
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file8.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 0%   |  ETA    --:--:--
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file6.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 10%  |  ETA    00:00:09
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file9.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 10%  |  ETA    00:00:09
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file1.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 40%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 45%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file6.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 40%  |  ETA    00:00:03
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file3.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 65%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file2.data ... done
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... 100% | DONE in 00:00:02
Downloading: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... 100% | DONE in 00:00:03
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file9.data ... done
Downloading file: random_files_repeat_ubuntu24/RMelOS1pD8gwZDFkGrv6UaEJRohe8V5k/file3.data ... done
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 20%  |  ETA    00:00:04
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file4.data ... done
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 40%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file6.data ... done
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 45%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 50%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 65%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file7.data ... done
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 70%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file2.data ... done
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file5.data ... done
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 75%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file7.data ... done
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... 100% | DONE in 00:00:02
Downloading file: random_files_repeat_ubuntu24/cTIID2EgbarkZ9ZKZ4XphZBkwzpWwxZM/file8.data ... done
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file8.data ... done
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 40%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 45%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 50%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file3.data ... done
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 55%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 60%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 65%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... 100% | DONE in 00:00:02
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file9.data ... done
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file0.data ... done
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 5%   |  ETA    00:00:38
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 10%  |  ETA    00:00:18
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 40%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 45%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 95%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file7.data ... done
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... 100% | DONE in 00:00:03
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file4.data ... done
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 50%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 55%  |  ETA    00:00:03
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file0.data ... done
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file2.data ... done
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... 100% | DONE in 00:00:04
Downloading file: random_files_repeat_ubuntu24/nVBaLQcDrubRDb2f4K7TSGC4MAMVPj7C/file1.data ... done
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 0%   |  ETA    --:--:--
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 5%   |  ETA    00:00:19
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 10%  |  ETA    00:00:09
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 15%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 15%  |  ETA    00:00:06
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file3.data ... done
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 20%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 30%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 35%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 40%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 25%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 70%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 30%  |  ETA    00:00:05
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 15%  |  ETA    00:00:12
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 20%  |  ETA    00:00:08
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... 100% | DONE in 00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 25%  |  ETA    00:00:06
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 30%  |  ETA    00:00:05
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file1.data ... done
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 35%  |  ETA    00:00:04
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 40%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 45%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 55%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 50%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 50%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 55%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 55%  |  ETA    00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 60%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 65%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 70%  |  ETA    00:00:02
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file9.data ... done
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 70%  |  ETA    00:00:02
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 75%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 80%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 85%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... 100% | DONE in 00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 90%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 90%  |  ETA    00:00:01
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file5.data ... done
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 95%  |  ETA    00:00:01
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... 100% | DONE in 00:00:03
Downloading: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... 100% | DONE in 00:00:03
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file6.data ... done
Downloading file: random_files_repeat_ubuntu24/5WaYfxL3qegFFKFmaJ8MNELw3q5pYTRD/file8.data ... done
Syncing this OneDrive Personal Shared Folder: OneDrive - Constanze
Generating a /delta response from the OneDrive API from this Item ID: BC7D88EC1F539DCF!2875 ... 
Finished processing self generated /delta JSON response from the OneDrive API
Processing 29 applicable changes and items received from Microsoft OneDrive . 
Syncing this OneDrive Personal Shared Folder: Shared Bilder
Generating a /delta response from the OneDrive API from this Item ID: BC7D88EC1F539DCF!103 .... 
Finished processing self generated /delta JSON response from the OneDrive API
Processing 502 applicable changes and items received from Microsoft OneDrive .. 
Performing a database consistency and integrity check on locally stored data ..... 
Scanning the local file system '/onedrive/data' for new data to upload . 
Performing a last examination of the most recent online data within Microsoft OneDrive to complete the reconciliation process
Fetching items from the OneDrive API for Drive ID: 66d53be8a5056eca .. 
No changes or items that can be applied were discovered while processing the data received from Microsoft OneDrive
Syncing this OneDrive Personal Shared Folder: OneDrive - Constanze
Generating a /delta response from the OneDrive API from this Item ID: BC7D88EC1F539DCF!2875 ... 
Finished processing self generated /delta JSON response from the OneDrive API
Processing 29 applicable changes and items received from Microsoft OneDrive . 
Syncing this OneDrive Personal Shared Folder: Shared Bilder
Generating a /delta response from the OneDrive API from this Item ID: BC7D88EC1F539DCF!103 .... 
Finished processing self generated /delta JSON response from the OneDrive API
Processing 502 applicable changes and items received from Microsoft OneDrive .. 
Sync with Microsoft OneDrive is complete

Testing this PR

Cloning the repository

Use a script similar to the following to clone the PR:

#!/bin/bash
#  
PR=2955

rm -rf ./onedrive-pr${PR}
git clone https://github.com/abraunegg/onedrive.git onedrive-pr${PR}
cd onedrive-pr${PR}
git fetch origin pull/${PR}/head:pr${PR}
git checkout pr${PR}

Building the container

For Docker, build the container in the following manner:

[alex@fedora-38-docker-host onedrive-pr2955]$ docker build . -t local-onedrive-alpine -f contrib/docker/Dockerfile-alpine

Adjust as needed for podman

Container size after build

[alex@fedora-38-docker-host onedrive-pr2955]$ docker images local-onedrive-alpine
REPOSITORY              TAG       IMAGE ID       CREATED         SIZE
local-onedrive-alpine   latest    b6e0e2357d64   5 minutes ago   41.2MB
[alex@fedora-38-docker-host onedrive-pr2955]$ 
DevDorrejo commented 3 weeks ago

Improve Dockerfile with comment:

# -*-Dockerfile-*-

# Specify Alpine version as a build argument
ARG ALPINE_VERSION=3.20

# Stage 1: Build OneDrive from source
FROM alpine:${ALPINE_VERSION} AS builder-onedrive

# Install build dependencies
RUN apk add --no-cache libstdc++ dmd curl-dev sqlite-dev make gcc libc-dev gpg-agent gpg bash curl xz git

# Set the working directory for building
WORKDIR /opt

# Clone and build OneDrive
RUN set -xv && \
    git clone https://github.com/abraunegg/onedrive.git && \
    cd onedrive && \
    ./configure --enable-debug && \
    make clean && make && \
    make install

# Stage 2: Create the runtime image
FROM alpine:${ALPINE_VERSION}

# Upgrade apk-tools and all packages
RUN apk add --upgrade apk-tools && \
    apk upgrade --available

# Install runtime dependencies
RUN apk add --no-cache llvm-libunwind sqlite-libs libcurl bash shadow && \
    mkdir -p /onedrive/conf /onedrive/data

# Copy OneDrive binary from builder stage to the runtime image
COPY --from=builder-onedrive /usr/local/bin/onedrive /usr/local/bin/

# Add entrypoint script, with a flexible source location
# If `entrypoint.sh` is in the same directory as the Dockerfile, this will copy it without requiring a specific path
COPY entrypoint.sh /entrypoint.sh

# Make entrypoint executable
RUN chmod +x /entrypoint.sh

# Set entrypoint to the script
ENTRYPOINT ["/entrypoint.sh"]

I don't know, but gosu dependency never appear in my side when build and use the application.

Video of build process:

https://github.com/user-attachments/assets/a4f70cb7-cdca-4427-8593-61d63760ec1b

abraunegg commented 3 weeks ago

@DevDorrejo

I don't know, but gosu dependency never appear in my side when build and use the application.

Because of how you built the container | run the container. As per entrypoint.sh:

image

gosu is used to switch the container user to the correct user

In your instance, how you built & run the container, gosu is not required - thus you are not hitting that requirement.

DevDorrejo commented 3 weeks ago

Ok, because is rootless

abraunegg commented 3 weeks ago

@DevDorrejo Another issue with the proposed fix, is that the compiler DMD, is not available for Alpine on AARCH64, leading to this build error:

 > [linux/arm64 builder-onedrive 2/5] RUN apk add --update --no-cache alpine-sdk gnupg xz curl-dev sqlite-dev binutils-gold autoconf automake dmd:
0.283 fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/main/aarch64/APKINDEX.tar.gz
1.368 fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/community/aarch64/APKINDEX.tar.gz
3.471 ERROR: unable to select packages:
3.471   dmd (no such package):
3.471     required by: world[dmd]

image

DevDorrejo commented 3 weeks ago

I don't have Arm where to test, unless you can tell me an alternative like virtualization or the container simulate it

abraunegg commented 3 weeks ago

@DevDorrejo I have determined that this is an Alpine LDC Compiler issue - specific to Alpine 3.20

Taking the original Docker file and downgrading Alpine to:

ARG ALPINE_VERSION=3.19

There is no issue.

This will be the fix that is rolled forward.

DevDorrejo commented 3 weeks ago

Good.

abraunegg commented 3 weeks ago

Updated PR has been pushed to 'master' - please allow ~1hr for updated images to be available on Dockerhub for Alpine.

abraunegg commented 3 weeks ago

Updated Alpine container available using the 'edge-alpine' tag:

image

abraunegg commented 2 weeks ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.