openapi中job提交


镜像地址: https://www.jianshu.com/p/fcb3094f8c48?v=1693020692471

简介

这里使用微软OpenPAI, 在nvidia的GPU设备上进行job测试。

创建job

在这里插入图片描述

protocolVersion: 2
name: lenet_gpu_pytorch112_jiaxiaolei_20230825_1013
type: job
jobRetryCount: 0
prerequisites:
  - type: dockerimage
    uri: 'nvcr.io/nvidia/pytorch:22.05-py3'
    name: docker_image_0
taskRoles:
  taskrole:
    instances: 1
    completion:
      minFailedInstances: 1
    taskRetryCount: 0
    dockerImage: docker_image_0
    resourcePerInstance:
      gpu: 1
      cpu: 19
      memoryMB: 62546
    commands:
      - mkdir /root/data/ -p
      - cd /root/data/
      - 'wget http://192.168.10.89:8000/lenet_gpu.py'
      - mkdir /root/data/MNIST/raw/ -p
      - cd /root/data/MNIST/raw/
      - 'wget http://192.168.10.89:8000/t10k-images-idx3-ubyte.gz'
      - 'wget http://192.168.10.89:8000/t10k-labels-idx1-ubyte.gz'
      - 'wget http://192.168.10.89:8000/train-images-idx3-ubyte.gz'
      - 'wget http://192.168.10.89:8000/train-labels-idx1-ubyte.gz'
      - gunzip t10k-images-idx3-ubyte.gz
      - gunzip t10k-labels-idx1-ubyte.gz
      - gunzip train-images-idx3-ubyte.gz
      - gunzip train-labels-idx1-ubyte.gz
      - cd /root/data/
      - python lenet_gpu.py
defaults:
  virtualCluster: default
extras:
  com.microsoft.pai.runtimeplugin:
    - plugin: ssh
      parameters:
        jobssh: true
  hivedScheduler:
    taskRoles:
      taskrole:
        skuNum: 1
        skuType: gpu-machine-nv

查看job

查看job 的描述

root@master-181:~# kubectl get pods -A |grep task                                                                                                             
default       1536ce943faaf62ea062002eeed9328b-taskrole-0     0/1     PodInitializing    0          10s
root@master-181:~# kubectl describe pods 1536ce943faaf62ea062002eeed9328b-taskrole-0 
Name:                 1536ce943faaf62ea062002eeed9328b-taskrole-0
Namespace:            default
Priority:             -1951302150
Priority Class Name:  1536ce943faaf62ea062002eeed9328b-priority
Node:                 worker-nvidia/192.168.10.212
Start Time:           Fri, 25 Aug 2023 11:30:53 +0800
Labels:               FC_FRAMEWORK_NAME=1536ce943faaf62ea062002eeed9328b
                      FC_TASKROLE_NAME=taskrole
                      FC_TASK_INDEX=0
                      type=kube-launcher-task
                      userName=admin
                      virtualCluster=default
Annotations:          FC_CONFIGMAP_NAME: 1536ce943faaf62ea062002eeed9328b-attempt
                      FC_CONFIGMAP_UID: 91164353-558f-4693-b6e2-929912fe1b67
                      FC_FRAMEWORK_ATTEMPT_ID: 0
                      FC_FRAMEWORK_ATTEMPT_INSTANCE_UID: 0_91164353-558f-4693-b6e2-929912fe1b67
                      FC_FRAMEWORK_NAME: 1536ce943faaf62ea062002eeed9328b
                      FC_FRAMEWORK_NAMESPACE: default
                      FC_FRAMEWORK_UID: c36c751c-094c-4432-9197-3872341e9f53
                      FC_POD_NAME: 1536ce943faaf62ea062002eeed9328b-taskrole-0
                      FC_TASKROLE_NAME: taskrole
                      FC_TASKROLE_UID: cb7d2180-42f7-11ee-afe1-3e7a5abc8c82
                      FC_TASK_ATTEMPT_ID: 0
                      FC_TASK_INDEX: 0
                      FC_TASK_UID: cb7d21aa-42f7-11ee-afe1-3e7a5abc8c82
                      container.apparmor.security.beta.kubernetes.io/app: unconfined
                      hivedscheduler.microsoft.com/pod-bind-info:
                        node: worker-nvidia
                        leafCellIsolation:
                        - 0
                        cellChain: gpu-machine-nv-NODE-POOL
                        affinityGroupBindInfo:
                        - podPlacements:
                          - physicalNode: worker-nvidia
                            physicalLeafCellIndices:
                            - 0
                            preassignedCellTypes:
                            - gpu-machine-nv-NODE
                      hivedscheduler.microsoft.com/pod-leaf-cell-isolation: 0
                      hivedscheduler.microsoft.com/pod-scheduling-spec:
                        virtualCluster: default
                        priority: 10
                        pinnedCellId: null
                        leafCellType: gpu-machine-nv
                        leafCellNumber: 1
                        affinityGroup:
                          name: admin~lenet_gpu_pytorch112_jiaxiaolei_20230825_1013_be78e57/default
                          members:
                            - podNumber: 1
                              leafCellNumber: 1
                      rest-server/port-scheduling-spec: {"schedulePortStart":15000,"schedulePortEnd":40000,"ports":{"ssh":{"count":1},"http":{"count":1}}}
Status:               Running
IP:                   192.168.10.212
Controlled By:        ConfigMap/1536ce943faaf62ea062002eeed9328b-attempt
Init Containers:
  init:
    Container ID:   docker://da8125c6c40f52448728eb4fb9075253ae8ccf072455f7cae3c4cc6cee32f03b
    Image:          openpai/openpai-runtime:v1.8.0
    Image ID:       docker-pullable://192.168.10.72:8001/openpai/openpai-runtime@sha256:dcc0b622249c0538c95e794111ab38823a801600dee9ef44cbbe9d28a2623388
    Port:           <none>
    Host Port:      <none>
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Fri, 25 Aug 2023 11:30:54 +0800
      Finished:     Fri, 25 Aug 2023 11:31:00 +0800
    Ready:          True
    Restart Count:  0
    Environment:
      FC_FRAMEWORK_NAMESPACE:                    default
      FC_FRAMEWORK_NAME:                         1536ce943faaf62ea062002eeed9328b
      FC_TASKROLE_NAME:                          taskrole
      FC_TASK_INDEX:                             0
      FC_CONFIGMAP_NAME:                         1536ce943faaf62ea062002eeed9328b-attempt
      FC_POD_NAME:                               1536ce943faaf62ea062002eeed9328b-taskrole-0
      FC_FRAMEWORK_UID:                          c36c751c-094c-4432-9197-3872341e9f53
      FC_FRAMEWORK_ATTEMPT_ID:                   0
      FC_FRAMEWORK_ATTEMPT_INSTANCE_UID:         0_91164353-558f-4693-b6e2-929912fe1b67
      FC_CONFIGMAP_UID:                          91164353-558f-4693-b6e2-929912fe1b67
      FC_TASKROLE_UID:                           cb7d2180-42f7-11ee-afe1-3e7a5abc8c82
      FC_TASK_UID:                               cb7d21aa-42f7-11ee-afe1-3e7a5abc8c82
      FC_TASK_ATTEMPT_ID:                        0
      FC_POD_UID:                                 (v1:metadata.uid)
      FC_TASK_ATTEMPT_INSTANCE_UID:              0_$(FC_POD_UID)
      USER_CMD:                                  mkdir /root/data/ -p
                                                 cd /root/data/
                                                 wget http://192.168.10.89:8000/lenet_gpu.py
                                                 mkdir /root/data/MNIST/raw/ -p
                                                 cd /root/data/MNIST/raw/
                                                 wget http://192.168.10.89:8000/t10k-images-idx3-ubyte.gz
                                                 wget http://192.168.10.89:8000/t10k-labels-idx1-ubyte.gz
                                                 wget http://192.168.10.89:8000/train-images-idx3-ubyte.gz
                                                 wget http://192.168.10.89:8000/train-labels-idx1-ubyte.gz
                                                 gunzip t10k-images-idx3-ubyte.gz
                                                 gunzip t10k-labels-idx1-ubyte.gz
                                                 gunzip train-images-idx3-ubyte.gz
                                                 gunzip train-labels-idx1-ubyte.gz
                                                 cd /root/data/
                                                 python lenet_gpu.py
                                                 tail -f /dev/null
      KUBE_APISERVER_ADDRESS:                    https://10.192.0.1:443
      REST_SERVER_URI:                           http://192.168.10.181:9186
      GANG_ALLOCATION:                           true
      PAI_FRAMEWORK_NAME:                        admin~lenet_gpu_pytorch112_jiaxiaolei_20230825_1013_be78e57
      PAI_JOB_NAME:                              admin~lenet_gpu_pytorch112_jiaxiaolei_20230825_1013_be78e57
      PAI_USER_NAME:                             admin
      PAI_DEFAULT_FS_URI:                        
      PAI_TASK_ROLE_COUNT:                       1
      PAI_TASK_ROLE_LIST:                        taskrole
      PAI_VIRTUAL_CLUSTER:                       default
      PAI_TASK_ROLE_TASK_COUNT_taskrole:         1
      PAI_RESOURCE_taskrole:                     1,19,62546,0
      PAI_MIN_FAILED_TASK_COUNT_taskrole:        1
      PAI_MIN_SUCCEEDED_TASK_COUNT_taskrole:     1
      PAI_USERNAME:                              admin
      PAI_TASKS_NUM:                             1
      PAI_JOB_TASK_COUNT:                        1
      PAI_TASK_ROLES_NUM:                        1
      PAI_JOB_TASK_ROLE_COUNT:                   1
      PAI_JOB_TASK_ROLE_LIST:                    taskrole
      PAI_CURRENT_TASK_ROLE_NAME:                taskrole
      PAI_CURRENT_TASK_ROLE_CURRENT_TASK_INDEX:   (v1:metadata.annotations['FC_TASK_INDEX'])
    Mounts:
      /usr/local/pai from pai-vol (rw)
      /usr/local/pai-config from job-exit-spec (rw)
      /usr/local/pai/logs from host-log (rw,path="admin/1536ce943faaf62ea062002eeed9328b/taskrole")
      /usr/local/pai/user-extension-secrets from user-extension-secrets (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from runtime-account-token-k8ll2 (ro)
Containers:
  app:
    Container ID:  docker://e690c02a33b13fb25f9a97b064a072ddf5b9d32db2369c64aba3dabe81341d06
    Image:         nvcr.io/nvidia/pytorch:22.05-py3
    Image ID:      docker-pullable://nvcr.io/nvidia/pytorch@sha256:63ea06f4f74424fee3f3df4e6a0d26ce37211b0b7fb43e719c559ef970674c69
    Port:          <none>
    Host Port:     <none>
    Command:
      /usr/local/pai/runtime
    State:          Running
      Started:      Fri, 25 Aug 2023 11:31:04 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:                                                 19
      github.com/fuse:                                     1
      hivedscheduler.microsoft.com/pod-scheduling-enable:  1
      memory:                                              62546Mi
    Requests:
      cpu:                                                 19
      github.com/fuse:                                     1
      hivedscheduler.microsoft.com/pod-scheduling-enable:  1
      memory:                                              62546Mi
    Environment:
      FC_FRAMEWORK_NAMESPACE:                    default
      FC_FRAMEWORK_NAME:                         1536ce943faaf62ea062002eeed9328b
      FC_TASKROLE_NAME:                          taskrole
      FC_TASK_INDEX:                             0
      FC_CONFIGMAP_NAME:                         1536ce943faaf62ea062002eeed9328b-attempt
      FC_POD_NAME:                               1536ce943faaf62ea062002eeed9328b-taskrole-0
      FC_FRAMEWORK_UID:                          c36c751c-094c-4432-9197-3872341e9f53
      FC_FRAMEWORK_ATTEMPT_ID:                   0
      FC_FRAMEWORK_ATTEMPT_INSTANCE_UID:         0_91164353-558f-4693-b6e2-929912fe1b67
      FC_CONFIGMAP_UID:                          91164353-558f-4693-b6e2-929912fe1b67
      FC_TASKROLE_UID:                           cb7d2180-42f7-11ee-afe1-3e7a5abc8c82
      FC_TASK_UID:                               cb7d21aa-42f7-11ee-afe1-3e7a5abc8c82
      FC_TASK_ATTEMPT_ID:                        0
      FC_POD_UID:                                 (v1:metadata.uid)
      FC_TASK_ATTEMPT_INSTANCE_UID:              0_$(FC_POD_UID)
      PAI_FRAMEWORK_NAME:                        admin~lenet_gpu_pytorch112_jiaxiaolei_20230825_1013_be78e57
      PAI_JOB_NAME:                              admin~lenet_gpu_pytorch112_jiaxiaolei_20230825_1013_be78e57
      PAI_USER_NAME:                             admin
      PAI_DEFAULT_FS_URI:                        
      PAI_TASK_ROLE_COUNT:                       1
      PAI_TASK_ROLE_LIST:                        taskrole
      PAI_VIRTUAL_CLUSTER:                       default
      PAI_TASK_ROLE_TASK_COUNT_taskrole:         1
      PAI_RESOURCE_taskrole:                     1,19,62546,0
      PAI_MIN_FAILED_TASK_COUNT_taskrole:        1
      PAI_MIN_SUCCEEDED_TASK_COUNT_taskrole:     1
      PAI_USERNAME:                              admin
      PAI_TASKS_NUM:                             1
      PAI_JOB_TASK_COUNT:                        1
      PAI_TASK_ROLES_NUM:                        1
      PAI_JOB_TASK_ROLE_COUNT:                   1
      PAI_JOB_TASK_ROLE_LIST:                    taskrole
      PAI_CURRENT_TASK_ROLE_NAME:                taskrole
      PAI_CURRENT_TASK_ROLE_CURRENT_TASK_INDEX:   (v1:metadata.annotations['FC_TASK_INDEX'])
      PAI_TASK_INDEX:                             (v1:metadata.annotations['FC_TASK_INDEX'])
      NVIDIA_VISIBLE_DEVICES:                     (v1:metadata.annotations['hivedscheduler.microsoft.com/pod-leaf-cell-isolation'])
      HIVED_VISIBLE_DEVICES:                      (v1:metadata.annotations['hivedscheduler.microsoft.com/pod-leaf-cell-isolation'])
    Mounts:
      /dev/shm from dshm (rw)
      /usr/local/pai from pai-vol (rw)
      /usr/local/pai/logs from host-log (rw,path="admin/1536ce943faaf62ea062002eeed9328b/taskrole")
      /usr/local/pai/ssh-secret from job-ssh-secret-volume (ro)
      /usr/local/pai/user-extension-secrets from user-extension-secrets (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from runtime-account-token-k8ll2 (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  dshm:
    Type:       EmptyDir (a temporary directory that shares a pod's lifetime)
    Medium:     Memory
    SizeLimit:  512Mi
  pai-vol:
    Type:       EmptyDir (a temporary directory that shares a pod's lifetime)
    Medium:     
    SizeLimit:  <unset>
  host-log:
    Type:          HostPath (bare host directory volume)
    Path:          /var/log/pai
    HostPathType:  
  job-ssh-secret-volume:
    Type:        Secret (a volume populated by a Secret)
    SecretName:  job-ssh-secret
    Optional:    false
  job-exit-spec:
    Type:      ConfigMap (a volume populated by a ConfigMap)
    Name:      runtime-exit-spec-configuration
    Optional:  false
  user-extension-secrets:
    Type:        Secret (a volume populated by a Secret)
    SecretName:  1536ce943faaf62ea062002eeed9328b-usercred
    Optional:    false
  runtime-account-token-k8ll2:
    Type:        Secret (a volume populated by a Secret)
    SecretName:  runtime-account-token-k8ll2
    Optional:    false
QoS Class:       Guaranteed
Node-Selectors:  <none>
Tolerations:     node.kubernetes.io/not-ready:NoExecute for 300s
                 node.kubernetes.io/unreachable:NoExecute for 300s
Events:
  Type    Reason     Age   From                       Message
  ----    ------     ----  ----                       -------
  Normal  Scheduled  25s   hivedscheduler-ds-default  Successfully assigned default/1536ce943faaf62ea062002eeed9328b-taskrole-0 to worker-nvidia
  Normal  Pulling    24s   kubelet, worker-nvidia     Pulling image "openpai/openpai-runtime:v1.8.0"
  Normal  Pulled     24s   kubelet, worker-nvidia     Successfully pulled image "openpai/openpai-runtime:v1.8.0"
  Normal  Created    24s   kubelet, worker-nvidia     Created container init
  Normal  Started    24s   kubelet, worker-nvidia     Started container init
  Normal  Pulling    17s   kubelet, worker-nvidia     Pulling image "nvcr.io/nvidia/pytorch:22.05-py3"
  Normal  Pulled     14s   kubelet, worker-nvidia     Successfully pulled image "nvcr.io/nvidia/pytorch:22.05-py3"
  Normal  Created    14s   kubelet, worker-nvidia     Created container app
  Normal  Started    14s   kubelet, worker-nvidia     Started container app
  

通过查看pod的描述文件,可以看到使用了 openpai/openpai-runtime:v1.8.0 作为初始容器。在openpai-runtime的容器中运行自定义job。

这里的请求资源只显示github.com/fuse:1, 没有明确显示 nvidia.com/gpu。但是,实际肯定需要使用 nvidia.com/gpu 资源的,可能是在别的地方通过某种机制进行的配置。如果github.com/fuse资源不足,也会导致在选择nvidia.com/gpu资源时失败:
一个案例是:worker-nvidia 节点上nvidia.com/gpu资源正常,但是github.com/fuse不足。最终导致需要 nvidia.com/gpu资源的任务无法调度到worker-nvidia节点上,提示 github.com/fuse不足。调整github.com/fuse不足之后,可以正常调度。

查看job 的日志

root@master-181:~# kubectl logs -f  4b32968dc521a0f05e125bcb50368fda-taskrole-0
[Fri Aug 25 02:14:27 UTC 2023] [openpai-runtime] [INFO] Starting to exec precommands
[Fri Aug 25 02:14:27 UTC 2023] [openpai-runtime] [package_cache] This os doesn't support package cache!
[Fri Aug 25 02:14:33 UTC 2023] [openpai-runtime] Get:1 http://archive.ubuntu.com/ubuntu focal InRelease [265 kB]
[Fri Aug 25 02:14:33 UTC 2023] [openpai-runtime] Get:2 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB]
[Fri Aug 25 02:14:34 UTC 2023] [openpai-runtime] Get:3 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1089 kB]
[Fri Aug 25 02:14:34 UTC 2023] [openpai-runtime] Get:4 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
[Fri Aug 25 02:14:34 UTC 2023] [openpai-runtime] Get:5 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB]
[Fri Aug 25 02:14:35 UTC 2023] [openpai-runtime] Get:6 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages [11.3 MB]
[Fri Aug 25 02:14:35 UTC 2023] [openpai-runtime] Get:7 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [29.3 kB]
[Fri Aug 25 02:14:35 UTC 2023] [openpai-runtime] Get:8 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2942 kB]
[Fri Aug 25 02:14:36 UTC 2023] [openpai-runtime] Get:9 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2648 kB]
[Fri Aug 25 02:15:07 UTC 2023] [openpai-runtime] Get:6 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages [11.3 MB]
[Fri Aug 25 02:15:11 UTC 2023] [openpai-runtime] Get:10 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages [1275 kB]
[Fri Aug 25 02:15:12 UTC 2023] [openpai-runtime] Get:11 http://archive.ubuntu.com/ubuntu focal/restricted amd64 Packages [33.4 kB]
[Fri Aug 25 02:15:12 UTC 2023] [openpai-runtime] Get:12 http://archive.ubuntu.com/ubuntu focal/multiverse amd64 Packages [177 kB]
[Fri Aug 25 02:15:12 UTC 2023] [openpai-runtime] Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1394 kB]
[Fri Aug 25 02:15:43 UTC 2023] [openpai-runtime] Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1394 kB]
[Fri Aug 25 02:15:44 UTC 2023] [openpai-runtime] Get:14 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3430 kB]
[Fri Aug 25 02:15:45 UTC 2023] [openpai-runtime] Get:15 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [32.0 kB]
[Fri Aug 25 02:15:45 UTC 2023] [openpai-runtime] Get:16 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2795 kB]
[Fri Aug 25 02:15:46 UTC 2023] [openpai-runtime] Get:17 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [28.6 kB]
[Fri Aug 25 02:15:46 UTC 2023] [openpai-runtime] Get:18 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [55.2 kB]
[Fri Aug 25 02:15:46 UTC 2023] [openpai-runtime] Fetched 24.7 MB in 1min 19s (313 kB/s)
[Fri Aug 25 02:15:46 UTC 2023] [openpai-runtime] Reading package lists...
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] Reading package lists...
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] Building dependency tree...
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] Reading state information...
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] The following additional packages will be installed:
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] dbus distro-info-data dmsetup gir1.2-glib-2.0 libapparmor1 libargon2-1
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libcap2 libcryptsetup12 libdbus-1-3 libdevmapper1.02.1 libgirepository-1.0-1
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libip4tc2 libjson-c4 libkmod2 libnss-systemd libpam-systemd
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libpython3-stdlib libpython3.8 libpython3.8-minimal libpython3.8-stdlib
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libsystemd0 libwrap0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libxmuu1 lsb-release ncurses-term networkd-dispatcher openssh-sftp-server
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3 python3-certifi python3-chardet python3-dbus python3-distro
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3-gi python3-idna python3-minimal python3-pkg-resources
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3-requests python3-six python3-urllib3 python3.8 python3.8-minimal
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] ssh-import-id systemd systemd-sysv systemd-timesyncd ucf xauth
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] Suggested packages:
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] default-dbus-session-bus | dbus-session-bus iw | wireless-tools keychain
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libpam-ssh monkeysphere ssh-askpass molly-guard ufw python3-doc python3-tk
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3-venv python-dbus-doc python3-dbus-dbg python3-setuptools
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3-cryptography python3-openssl python3-socks python3.8-venv
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3.8-doc binfmt-support systemd-container policykit-1
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] The following NEW packages will be installed:
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] dbus distro-info-data dmsetup gir1.2-glib-2.0 libapparmor1 libargon2-1
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libcap2 libcryptsetup12 libdbus-1-3 libdevmapper1.02.1 libgirepository-1.0-1
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libip4tc2 libjson-c4 libkmod2 libnss-systemd libpam-systemd
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libpython3-stdlib libwrap0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libxext6 libxmuu1 lsb-release ncurses-term networkd-dispatcher
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] openssh-server openssh-sftp-server python3 python3-certifi python3-chardet
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3-dbus python3-distro python3-gi python3-idna python3-minimal
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3-pkg-resources python3-requests python3-six python3-urllib3 python3.8
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] python3.8-minimal ssh-import-id systemd systemd-sysv systemd-timesyncd ucf
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] xauth
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] The following packages will be upgraded:
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] libpython3.8 libpython3.8-minimal libpython3.8-stdlib libsystemd0
[Fri Aug 25 02:15:47 UTC 2023] [openpai-runtime] openssh-client
[Fri Aug 25 02:15:53 UTC 2023] [openpai-runtime] 5 upgraded, 50 newly installed, 0 to remove and 143 not upgraded.
[Fri Aug 25 02:15:53 UTC 2023] [openpai-runtime] Need to get 15.0 MB of archives.
[Fri Aug 25 02:15:53 UTC 2023] [openpai-runtime] After this operation, 41.1 MB of additional disk space will be used.
[Fri Aug 25 02:15:53 UTC 2023] [openpai-runtime] Get:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libsystemd0 amd64 245.4-4ubuntu3.22 [267 kB]
[Fri Aug 25 02:15:54 UTC 2023] [openpai-runtime] Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8 amd64 3.8.10-0ubuntu1~20.04.8 [1625 kB]
[Fri Aug 25 02:15:55 UTC 2023] [openpai-runtime] Get:3 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8-minimal amd64 3.8.10-0ubuntu1~20.04.8 [717 kB]
[Fri Aug 25 02:15:55 UTC 2023] [openpai-runtime] Get:4 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8-stdlib amd64 3.8.10-0ubuntu1~20.04.8 [1675 kB]
[Fri Aug 25 02:15:56 UTC 2023] [openpai-runtime] Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3.8-minimal amd64 3.8.10-0ubuntu1~20.04.8 [1902 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:6 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-minimal amd64 3.8.2-0ubuntu2 [23.6 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3.8 amd64 3.8.10-0ubuntu1~20.04.8 [387 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:8 http://archive.ubuntu.com/ubuntu focal/main amd64 libpython3-stdlib amd64 3.8.2-0ubuntu2 [7068 B]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:9 http://archive.ubuntu.com/ubuntu focal/main amd64 python3 amd64 3.8.2-0ubuntu2 [47.6 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libapparmor1 amd64 2.13.3-7ubuntu5.2 [35.4 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libcap2 amd64 1:2.32-1ubuntu0.1 [15.8 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.2 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 libdevmapper1.02.1 amd64 2:1.02.167-1ubuntu1 [127 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:14 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libjson-c4 amd64 0.13.1+dfsg-7ubuntu0.3 [29.3 kB]
[Fri Aug 25 02:15:57 UTC 2023] [openpai-runtime] Get:15 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libcryptsetup12 amd64 2:2.2.2-3ubuntu2.4 [166 kB]
[Fri Aug 25 02:15:58 UTC 2023] [openpai-runtime] Get:16 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libip4tc2 amd64 1.8.4-3ubuntu2.1 [19.1 kB]
[Fri Aug 25 02:15:58 UTC 2023] [openpai-runtime] Get:17 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libkmod2 amd64 27-1ubuntu2.1 [45.3 kB]
[Fri Aug 25 02:15:58 UTC 2023] [openpai-runtime] Get:18 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 systemd-timesyncd amd64 245.4-4ubuntu3.22 [28.1 kB]
[Fri Aug 25 02:15:58 UTC 2023] [openpai-runtime] Get:19 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 systemd amd64 245.4-4ubuntu3.22 [3811 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:20 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 systemd-sysv amd64 245.4-4ubuntu3.22 [10.3 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:21 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-3 amd64 1.12.16-2ubuntu2.3 [179 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 dbus amd64 1.12.16-2ubuntu2.3 [151 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 distro-info-data all 0.43ubuntu1.13 [4836 B]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:24 http://archive.ubuntu.com/ubuntu focal/main amd64 dmsetup amd64 2:1.02.167-1ubuntu1 [75.6 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:25 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgirepository-1.0-1 amd64 1.64.1-1~ubuntu20.04.1 [85.7 kB]   
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:26 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-glib-2.0 amd64 1.64.1-1~ubuntu20.04.1 [134 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:27 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libnss-systemd amd64 245.4-4ubuntu3.22 [95.8 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:28 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpam-systemd amd64 245.4-4ubuntu3.22 [186 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:29 http://archive.ubuntu.com/ubuntu focal/main amd64 lsb-release all 11.1.0ubuntu2 [10.6 kB]
[Fri Aug 25 02:15:59 UTC 2023] [openpai-runtime] Get:30 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-dbus amd64 1.2.16-1build1 [94.0 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:31 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-gi amd64 3.36.0-1 [165 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:32 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 networkd-dispatcher all 2.1-2~ubuntu20.04.3 [15.5 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:33 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-pkg-resources all 45.2.0-1ubuntu0.1 [130 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:34 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-six all 1.14.0-2 [12.1 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:35 http://archive.ubuntu.com/ubuntu focal/main amd64 ucf all 3.0038+nmu1 [51.6 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:36 http://archive.ubuntu.com/ubuntu focal/main amd64 libxau6 amd64 1:1.0.9-0ubuntu1 [7488 B]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:37 http://archive.ubuntu.com/ubuntu focal/main amd64 libxdmcp6 amd64 1:1.1.3-0ubuntu1 [10.6 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:38 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb1 amd64 1.14-2 [44.7 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:39 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libx11-data all 2:1.6.9-2ubuntu1.5 [113 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:40 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libx11-6 amd64 2:1.6.9-2ubuntu1.5 [572 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:41 http://archive.ubuntu.com/ubuntu focal/main amd64 libxext6 amd64 2:1.3.4-0ubuntu1 [29.1 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:42 http://archive.ubuntu.com/ubuntu focal/main amd64 libxmuu1 amd64 2:1.1.3-0ubuntu1 [9728 B]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:43 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 openssh-client amd64 1:8.2p1-4ubuntu0.9 [671 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:44 http://archive.ubuntu.com/ubuntu focal/main amd64 xauth amd64 1:1.1-0ubuntu1 [25.0 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:45 http://archive.ubuntu.com/ubuntu focal/main amd64 libwrap0 amd64 7.6.q-30 [46.3 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:46 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 ncurses-term all 6.2-0ubuntu2.1 [249 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:47 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 openssh-sftp-server amd64 1:8.2p1-4ubuntu0.9 [51.7 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:48 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 openssh-server amd64 1:8.2p1-4ubuntu0.9 [377 kB]
[Fri Aug 25 02:16:00 UTC 2023] [openpai-runtime] Get:49 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-certifi all 2019.11.28-1 [149 kB]
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Get:50 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-chardet all 3.0.4-4build1 [80.4 kB]
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Get:51 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-idna all 2.8-1 [34.6 kB]
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Get:52 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-urllib3 all 1.25.8-2ubuntu0.2 [88.4 kB]
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Get:53 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-requests all 2.22.0-2ubuntu1.1 [47.2 kB]
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Get:54 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-distro all 1.4.0-1 [14.6 kB]
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Get:55 http://archive.ubuntu.com/ubuntu focal/main amd64 ssh-import-id all 5.10-0ubuntu1 [10.0 kB]
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] debconf: unable to initialize frontend: Dialog
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] debconf: (TERM is not set, so the dialog frontend is not usable.)
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] debconf: falling back to frontend: Readline
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] debconf: unable to initialize frontend: Readline
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] debconf: (This frontend requires a controlling tty.)
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] debconf: falling back to frontend: Teletype
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] dpkg-preconfigure: unable to re-open stdin:
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Fetched 15.0 MB in 14s (1078 kB/s)
(Reading database ... 20099 files and directories currently installed.)
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Preparing to unpack .../libsystemd0_245.4-4ubuntu3.22_amd64.deb ...
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Unpacking libsystemd0:amd64 (245.4-4ubuntu3.22) over (245.4-4ubuntu3.16) ...
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Setting up libsystemd0:amd64 (245.4-4ubuntu3.22) ...
(Reading database ... 20099 files and directories currently installed.)
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Preparing to unpack .../libpython3.8_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Unpacking libpython3.8:amd64 (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Preparing to unpack .../libpython3.8-minimal_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] find: ‘/usr/lib/python3’: No such file or directory
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Unpacking libpython3.8-minimal:amd64 (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Preparing to unpack .../libpython3.8-stdlib_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] find: ‘/usr/lib/python3’: No such file or directory
[Fri Aug 25 02:16:01 UTC 2023] [openpai-runtime] Unpacking libpython3.8-stdlib:amd64 (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package python3.8-minimal.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../python3.8-minimal_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking python3.8-minimal (3.8.10-0ubuntu1~20.04.8) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Setting up libpython3.8-minimal:amd64 (3.8.10-0ubuntu1~20.04.8) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Setting up python3.8-minimal (3.8.10-0ubuntu1~20.04.8) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-minimal.
(Reading database ... 20108 files and directories currently installed.)
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../python3-minimal_3.8.2-0ubuntu2_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking python3-minimal (3.8.2-0ubuntu2) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package python3.8.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../python3.8_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking python3.8 (3.8.10-0ubuntu1~20.04.8) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libpython3-stdlib:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../libpython3-stdlib_3.8.2-0ubuntu2_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libpython3-stdlib:amd64 (3.8.2-0ubuntu2) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Setting up python3-minimal (3.8.2-0ubuntu2) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package python3.
(Reading database ... 20153 files and directories currently installed.)
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../00-python3_3.8.2-0ubuntu2_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking python3 (3.8.2-0ubuntu2) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libapparmor1:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../01-libapparmor1_2.13.3-7ubuntu5.2_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libapparmor1:amd64 (2.13.3-7ubuntu5.2) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libcap2:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../02-libcap2_1%3a2.32-1ubuntu0.1_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libcap2:amd64 (1:2.32-1ubuntu0.1) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libargon2-1:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../03-libargon2-1_0~20171227-0.2_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libargon2-1:amd64 (0~20171227-0.2) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libdevmapper1.02.1:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../04-libdevmapper1.02.1_2%3a1.02.167-1ubuntu1_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libdevmapper1.02.1:amd64 (2:1.02.167-1ubuntu1) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libjson-c4:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../05-libjson-c4_0.13.1+dfsg-7ubuntu0.3_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libjson-c4:amd64 (0.13.1+dfsg-7ubuntu0.3) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libcryptsetup12:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../06-libcryptsetup12_2%3a2.2.2-3ubuntu2.4_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libcryptsetup12:amd64 (2:2.2.2-3ubuntu2.4) ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Selecting previously unselected package libip4tc2:amd64.
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Preparing to unpack .../07-libip4tc2_1.8.4-3ubuntu2.1_amd64.deb ...
[Fri Aug 25 02:16:02 UTC 2023] [openpai-runtime] Unpacking libip4tc2:amd64 (1.8.4-3ubuntu2.1) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Selecting previously unselected package libkmod2:amd64.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Preparing to unpack .../08-libkmod2_27-1ubuntu2.1_amd64.deb ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Unpacking libkmod2:amd64 (27-1ubuntu2.1) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Selecting previously unselected package systemd-timesyncd.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Preparing to unpack .../09-systemd-timesyncd_245.4-4ubuntu3.22_amd64.deb ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Unpacking systemd-timesyncd (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Selecting previously unselected package systemd.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Preparing to unpack .../10-systemd_245.4-4ubuntu3.22_amd64.deb ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Unpacking systemd (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libapparmor1:amd64 (2.13.3-7ubuntu5.2) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libcap2:amd64 (1:2.32-1ubuntu0.1) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libargon2-1:amd64 (0~20171227-0.2) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libdevmapper1.02.1:amd64 (2:1.02.167-1ubuntu1) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libjson-c4:amd64 (0.13.1+dfsg-7ubuntu0.3) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libcryptsetup12:amd64 (2:2.2.2-3ubuntu2.4) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libip4tc2:amd64 (1.8.4-3ubuntu2.1) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up libkmod2:amd64 (27-1ubuntu2.1) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up systemd-timesyncd (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Setting up systemd (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/dbus-org.freedesktop.resolve1.service → /lib/systemd/system/systemd-resolved.service.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/multi-user.target.wants/systemd-resolved.service → /lib/systemd/system/systemd-resolved.service.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] ln: failed to create symbolic link '/etc/resolv.conf': Device or resource busy
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/multi-user.target.wants/ondemand.service → /lib/systemd/system/ondemand.service.
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service.   
[Fri Aug 25 02:16:03 UTC 2023] [openpai-runtime] Initializing machine ID from random generator.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package systemd-sysv.
(Reading database ... 20983 files and directories currently installed.)
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../00-systemd-sysv_245.4-4ubuntu3.22_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking systemd-sysv (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libdbus-1-3:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../01-libdbus-1-3_1.12.16-2ubuntu2.3_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libdbus-1-3:amd64 (1.12.16-2ubuntu2.3) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package dbus.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../02-dbus_1.12.16-2ubuntu2.3_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking dbus (1.12.16-2ubuntu2.3) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package distro-info-data.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../03-distro-info-data_0.43ubuntu1.13_all.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking distro-info-data (0.43ubuntu1.13) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package dmsetup.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../04-dmsetup_2%3a1.02.167-1ubuntu1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking dmsetup (2:1.02.167-1ubuntu1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libgirepository-1.0-1:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../05-libgirepository-1.0-1_1.64.1-1~ubuntu20.04.1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libgirepository-1.0-1:amd64 (1.64.1-1~ubuntu20.04.1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package gir1.2-glib-2.0:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../06-gir1.2-glib-2.0_1.64.1-1~ubuntu20.04.1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking gir1.2-glib-2.0:amd64 (1.64.1-1~ubuntu20.04.1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libnss-systemd:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../07-libnss-systemd_245.4-4ubuntu3.22_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libnss-systemd:amd64 (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libpam-systemd:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../08-libpam-systemd_245.4-4ubuntu3.22_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libpam-systemd:amd64 (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package lsb-release.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../09-lsb-release_11.1.0ubuntu2_all.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking lsb-release (11.1.0ubuntu2) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-dbus.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../10-python3-dbus_1.2.16-1build1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking python3-dbus (1.2.16-1build1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-gi.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../11-python3-gi_3.36.0-1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking python3-gi (3.36.0-1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package networkd-dispatcher.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../12-networkd-dispatcher_2.1-2~ubuntu20.04.3_all.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking networkd-dispatcher (2.1-2~ubuntu20.04.3) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-pkg-resources.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../13-python3-pkg-resources_45.2.0-1ubuntu0.1_all.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking python3-pkg-resources (45.2.0-1ubuntu0.1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-six.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../14-python3-six_1.14.0-2_all.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking python3-six (1.14.0-2) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package ucf.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../15-ucf_3.0038+nmu1_all.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Moving old data out of the way
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking ucf (3.0038+nmu1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libxau6:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../16-libxau6_1%3a1.0.9-0ubuntu1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libxau6:amd64 (1:1.0.9-0ubuntu1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libxdmcp6:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../17-libxdmcp6_1%3a1.1.3-0ubuntu1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libxdmcp6:amd64 (1:1.1.3-0ubuntu1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libxcb1:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../18-libxcb1_1.14-2_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libxcb1:amd64 (1.14-2) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libx11-data.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../19-libx11-data_2%3a1.6.9-2ubuntu1.5_all.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libx11-data (2:1.6.9-2ubuntu1.5) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libx11-6:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../20-libx11-6_2%3a1.6.9-2ubuntu1.5_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libx11-6:amd64 (2:1.6.9-2ubuntu1.5) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libxext6:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../21-libxext6_2%3a1.3.4-0ubuntu1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libxext6:amd64 (2:1.3.4-0ubuntu1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Selecting previously unselected package libxmuu1:amd64.
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../22-libxmuu1_2%3a1.1.3-0ubuntu1_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking libxmuu1:amd64 (2:1.1.3-0ubuntu1) ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Preparing to unpack .../23-openssh-client_1%3a8.2p1-4ubuntu0.9_amd64.deb ...
[Fri Aug 25 02:16:04 UTC 2023] [openpai-runtime] Unpacking openssh-client (1:8.2p1-4ubuntu0.9) over (1:8.2p1-4ubuntu0.4) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package xauth.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../24-xauth_1%3a1.1-0ubuntu1_amd64.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking xauth (1:1.1-0ubuntu1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package libwrap0:amd64.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../25-libwrap0_7.6.q-30_amd64.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking libwrap0:amd64 (7.6.q-30) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package ncurses-term.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../26-ncurses-term_6.2-0ubuntu2.1_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking ncurses-term (6.2-0ubuntu2.1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package openssh-sftp-server.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../27-openssh-sftp-server_1%3a8.2p1-4ubuntu0.9_amd64.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking openssh-sftp-server (1:8.2p1-4ubuntu0.9) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package openssh-server.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../28-openssh-server_1%3a8.2p1-4ubuntu0.9_amd64.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking openssh-server (1:8.2p1-4ubuntu0.9) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-certifi.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../29-python3-certifi_2019.11.28-1_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking python3-certifi (2019.11.28-1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-chardet.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../30-python3-chardet_3.0.4-4build1_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking python3-chardet (3.0.4-4build1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-idna.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../31-python3-idna_2.8-1_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking python3-idna (2.8-1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-urllib3.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../32-python3-urllib3_1.25.8-2ubuntu0.2_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking python3-urllib3 (1.25.8-2ubuntu0.2) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-requests.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../33-python3-requests_2.22.0-2ubuntu1.1_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking python3-requests (2.22.0-2ubuntu1.1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package python3-distro.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../34-python3-distro_1.4.0-1_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking python3-distro (1.4.0-1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Selecting previously unselected package ssh-import-id.
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Preparing to unpack .../35-ssh-import-id_5.10-0ubuntu1_all.deb ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Unpacking ssh-import-id (5.10-0ubuntu1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up systemd-sysv (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libxau6:amd64 (1:1.0.9-0ubuntu1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libxdmcp6:amd64 (1:1.1.3-0ubuntu1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libxcb1:amd64 (1.14-2) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up distro-info-data (0.43ubuntu1.13) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up openssh-client (1:8.2p1-4ubuntu0.9) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libnss-systemd:amd64 (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] First installation detected...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Checking NSS setup...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libwrap0:amd64 (7.6.q-30) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libx11-data (2:1.6.9-2ubuntu1.5) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libdbus-1-3:amd64 (1.12.16-2ubuntu2.3) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up dbus (1.12.16-2ubuntu2.3) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up ucf (3.0038+nmu1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] debconf: unable to initialize frontend: Dialog
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] debconf: (TERM is not set, so the dialog frontend is not usable.)
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] debconf: falling back to frontend: Readline
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up dmsetup (2:1.02.167-1ubuntu1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libpam-systemd:amd64 (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] debconf: unable to initialize frontend: Dialog
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] debconf: (TERM is not set, so the dialog frontend is not usable.)
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] debconf: falling back to frontend: Readline
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libx11-6:amd64 (2:1.6.9-2ubuntu1.5) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libgirepository-1.0-1:amd64 (1.64.1-1~ubuntu20.04.1) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up libpython3.8-stdlib:amd64 (3.8.10-0ubuntu1~20.04.8) ...
[Fri Aug 25 02:16:05 UTC 2023] [openpai-runtime] Setting up python3.8 (3.8.10-0ubuntu1~20.04.8) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up libxmuu1:amd64 (2:1.1.3-0ubuntu1) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up libpython3-stdlib:amd64 (3.8.2-0ubuntu2) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up ncurses-term (6.2-0ubuntu2.1) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up openssh-sftp-server (1:8.2p1-4ubuntu0.9) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up openssh-server (1:8.2p1-4ubuntu0.9) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] debconf: unable to initialize frontend: Dialog
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] debconf: (TERM is not set, so the dialog frontend is not usable.)
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] debconf: falling back to frontend: Readline
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime]
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Creating config file /etc/ssh/sshd_config with new version
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Creating SSH2 RSA key; this may take some time ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] 3072 SHA256:Z/9fZVHTaYIYMTZjJMz1VeF9LvEhYz3j/YbFowCE6aw root@worker-nvidia (RSA)
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Creating SSH2 ECDSA key; this may take some time ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] 256 SHA256:X1HTQjk3eixrsqAbE4pni9jMrDEjXWZyrZlG06lRBFo root@worker-nvidia (ECDSA)
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Creating SSH2 ED25519 key; this may take some time ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] 256 SHA256:lm8xUVJ+MFrNKjH2khW4LiOOjwQzrAciL1micvDt4TY root@worker-nvidia (ED25519)
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/sshd.service → /lib/systemd/system/ssh.service.
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/multi-user.target.wants/ssh.service → /lib/systemd/system/ssh.service.
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] invoke-rc.d: could not determine current runlevel
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] invoke-rc.d: policy-rc.d denied execution of start.
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up libxext6:amd64 (2:1.3.4-0ubuntu1) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up python3 (3.8.2-0ubuntu2) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] running python rtupdate hooks for python3.8...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] running python post-rtupdate hooks for python3.8...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up python3-six (1.14.0-2) ...
[Fri Aug 25 02:16:06 UTC 2023] [openpai-runtime] Setting up python3-certifi (2019.11.28-1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up libpython3.8:amd64 (3.8.10-0ubuntu1~20.04.8) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-idna (2.8-1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up gir1.2-glib-2.0:amd64 (1.64.1-1~ubuntu20.04.1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-urllib3 (1.25.8-2ubuntu0.2) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up xauth (1:1.1-0ubuntu1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up lsb-release (11.1.0ubuntu2) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-pkg-resources (45.2.0-1ubuntu0.1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-dbus (1.2.16-1build1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-distro (1.4.0-1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-chardet (3.0.4-4build1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-gi (3.36.0-1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up python3-requests (2.22.0-2ubuntu1.1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up networkd-dispatcher (2.1-2~ubuntu20.04.3) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Created symlink /etc/systemd/system/multi-user.target.wants/networkd-dispatcher.service → /lib/systemd/system/networkd-dispatcher.service.
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Setting up ssh-import-id (5.10-0ubuntu1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Attempting to convert /etc/ssh/ssh_import_id
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Processing triggers for systemd (245.4-4ubuntu3.22) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Processing triggers for mime-support (3.64ubuntu1) ...
[Fri Aug 25 02:16:07 UTC 2023] [openpai-runtime] Processing triggers for libc-bin (2.31-0ubuntu9.7) ...
[Fri Aug 25 02:16:08 UTC 2023] [openpai-runtime] [INFO] start ssh service
[Fri Aug 25 02:16:08 UTC 2023] [openpai-runtime] * Restarting OpenBSD Secure Shell server sshd
[Fri Aug 25 02:16:08 UTC 2023] [openpai-runtime] ...done.
[Fri Aug 25 02:16:08 UTC 2023] [openpai-runtime] [INFO] Precommands finished
[Fri Aug 25 02:16:08 UTC 2023] [openpai-runtime] [INFO] USER COMMAND START
--2023-08-25 02:16:08--  http://192.168.10.89:8000/lenet_gpu.py
Connecting to 192.168.10.89:8000... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3134 (3.1K) [text/x-python]
Saving to: ‘lenet_gpu.py’



     0K ...                                                   100% 19.8M=0s

2023-08-25 02:16:08 (19.8 MB/s) - ‘lenet_gpu.py’ saved [3134/3134]

--2023-08-25 02:16:08--  http://192.168.10.89:8000/t10k-images-idx3-ubyte.gz
Connecting to 192.168.10.89:8000... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1648877 (1.6M) [application/gzip]
Saving to: ‘t10k-images-idx3-ubyte.gz’

     0K .......... .......... .......... .......... ..........  3% 11.3M 0s
    50K .......... .......... .......... .......... ..........  6% 11.3M 0s
   100K .......... .......... .......... .......... ..........  9% 11.0M 0s
   150K .......... .......... .......... .......... .......... 12% 11.3M 0s
   200K .......... .......... .......... .......... .......... 15% 11.3M 0s
   250K .......... .......... .......... .......... .......... 18% 10.7M 0s
   300K .......... .......... .......... .......... .......... 21% 11.4M 0s
   350K .......... .......... .......... .......... .......... 24% 11.3M 0s
   400K .......... .......... .......... .......... .......... 27% 11.0M 0s
   450K .......... .......... .......... .......... .......... 31% 11.4M 0s
   500K .......... .......... .......... .......... .......... 34% 11.3M 0s
   550K .......... .......... .......... .......... .......... 37% 11.0M 0s
   600K .......... .......... .......... .......... .......... 40% 11.4M 0s
   650K .......... .......... .......... .......... .......... 43% 11.0M 0s
   700K .......... .......... .......... .......... .......... 46% 11.3M 0s
   750K .......... .......... .......... .......... .......... 49% 11.3M 0s
   800K .......... .......... .......... .......... .......... 52% 11.0M 0s
   850K .......... .......... .......... .......... .......... 55% 11.3M 0s
   900K .......... .......... .......... .......... .......... 58% 11.3M 0s
   950K .......... .......... .......... .......... .......... 62% 11.0M 0s
  1000K .......... .......... .......... .......... .......... 65% 11.3M 0s
  1050K .......... .......... .......... .......... .......... 68% 11.3M 0s

  1100K .......... .......... .......... .......... .......... 71% 11.0M 0s
  1150K .......... .......... .......... .......... .......... 74% 11.3M 0s
  1200K .......... .......... .......... .......... .......... 77% 11.4M 0s
  1250K .......... .......... .......... .......... .......... 80% 11.0M 0s
  1300K .......... .......... .......... .......... .......... 83% 11.3M 0s
  1350K .......... .......... .......... .......... .......... 86% 11.1M 0s
  1400K .......... .......... .......... .......... .......... 90% 11.3M 0s
  1450K .......... .......... .......... .......... .......... 93% 7.06M 0s
  1500K .......... .......... .......... .......... .......... 96% 26.9M 0s
  1550K .......... .......... .......... .......... .......... 99% 11.3M 0s
  1600K ..........                                            100% 12.0M=0.1s

2023-08-25 02:16:08 (11.2 MB/s) - ‘t10k-images-idx3-ubyte.gz’ saved [1648877/1648877]

--2023-08-25 02:16:08--  http://192.168.10.89:8000/t10k-labels-idx1-ubyte.gz
Connecting to 192.168.10.89:8000... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4542 (4.4K) [application/gzip]
Saving to: ‘t10k-labels-idx1-ubyte.gz’

     0K ....                                                  100% 10.1M=0s

2023-08-25 02:16:08 (10.1 MB/s) - ‘t10k-labels-idx1-ubyte.gz’ saved [4542/4542]

--2023-08-25 02:16:08--  http://192.168.10.89:8000/train-images-idx3-ubyte.gz
Connecting to 192.168.10.89:8000... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9912422 (9.5M) [application/gzip]
Saving to: ‘train-images-idx3-ubyte.gz’



     0K .......... .......... .......... .......... ..........  0% 11.0M 1s
    50K .......... .......... .......... .......... ..........  1% 11.3M 1s
   100K .......... .......... .......... .......... ..........  1% 11.0M 1s
   150K .......... .......... .......... .......... ..........  2% 11.3M 1s
   200K .......... .......... .......... .......... ..........  2% 11.3M 1s
   250K .......... .......... .......... .......... ..........  3% 11.0M 1s
   300K .......... .......... .......... .......... ..........  3% 11.3M 1s
   350K .......... .......... .......... .......... ..........  4% 11.3M 1s
   400K .......... .......... .......... .......... ..........  4% 11.1M 1s
   450K .......... .......... .......... .......... ..........  5% 11.3M 1s
   500K .......... .......... .......... .......... ..........  5% 11.3M 1s
   550K .......... .......... .......... .......... ..........  6% 11.0M 1s
   600K .......... .......... .......... .......... ..........  6% 11.3M 1s
   650K .......... .......... .......... .......... ..........  7% 11.0M 1s
   700K .......... .......... .......... .......... ..........  7% 11.3M 1s
   750K .......... .......... .......... .......... ..........  8% 11.3M 1s
   800K .......... .......... .......... .......... ..........  8% 11.0M 1s
   850K .......... .......... .......... .......... ..........  9% 11.3M 1s
   900K .......... .......... .......... .......... ..........  9% 11.3M 1s
   950K .......... .......... .......... .......... .......... 10% 11.0M 1s
  1000K .......... .......... .......... .......... .......... 10% 11.3M 1s
  1050K .......... .......... .......... .......... .......... 11% 11.3M 1s
  1100K .......... .......... .......... .......... .......... 11% 11.0M 1s
  1150K .......... .......... .......... .......... .......... 12% 11.4M 1s
  1200K .......... .......... .......... .......... .......... 12% 11.3M 1s
  1250K .......... .......... .......... .......... .......... 13% 11.0M 1s
  1300K .......... .......... .......... .......... .......... 13% 11.3M 1s
  1350K .......... .......... .......... .......... .......... 14% 11.0M 1s
  1400K .......... .......... .......... .......... .......... 14% 11.3M 1s
  1450K .......... .......... .......... .......... .......... 15% 11.3M 1s
  1500K .......... .......... .......... .......... .......... 16% 11.0M 1s
  1550K .......... .......... .......... .......... .......... 16% 11.3M 1s
  1600K .......... .......... .......... .......... .......... 17% 11.3M 1s
  1650K .......... .......... .......... .......... .......... 17% 11.0M 1s
  1700K .......... .......... .......... .......... .......... 18% 11.3M 1s
  1750K .......... .......... .......... .......... .......... 18% 11.3M 1s
  1800K .......... .......... .......... .......... .......... 19% 11.0M 1s
  1850K .......... .......... .......... .......... .......... 19% 11.3M 1s
  1900K .......... .......... .......... .......... .......... 20% 11.0M 1s
  1950K .......... .......... .......... .......... .......... 20% 11.3M 1s
  2000K .......... .......... .......... .......... .......... 21% 11.3M 1s
  2050K .......... .......... .......... .......... .......... 21% 11.0M 1s
  2100K .......... .......... .......... .......... .......... 22% 11.3M 1s
  2150K .......... .......... .......... .......... .......... 22% 11.3M 1s
  2200K .......... .......... .......... .......... .......... 23% 11.0M 1s
  2250K .......... .......... .......... .......... .......... 23% 11.3M 1s
  2300K .......... .......... .......... .......... .......... 24% 11.3M 1s
  2350K .......... .......... .......... .......... .......... 24% 11.0M 1s
  2400K .......... .......... .......... .......... .......... 25% 11.3M 1s
  2450K .......... .......... .......... .......... .......... 25% 11.3M 1s
  2500K .......... .......... .......... .......... .......... 26% 11.0M 1s
  2550K .......... .......... .......... .......... .......... 26% 11.4M 1s
  2600K .......... .......... .......... .......... .......... 27% 11.0M 1s
  2650K .......... .......... .......... .......... .......... 27% 11.3M 1s
  2700K .......... .......... .......... .......... .......... 28% 11.3M 1s
  2750K .......... .......... .......... .......... .......... 28% 11.0M 1s
  2800K .......... .......... .......... .......... .......... 29% 11.3M 1s
  2850K .......... .......... .......... .......... .......... 29% 11.3M 1s
  2900K .......... .......... .......... .......... .......... 30% 11.0M 1s
  2950K .......... .......... .......... .......... .......... 30% 11.3M 1s
  3000K .......... .......... .......... .......... .......... 31% 11.4M 1s
  3050K .......... .......... .......... .......... .......... 32% 11.0M 1s
  3100K .......... .......... .......... .......... .......... 32% 11.1M 1s
  3150K .......... .......... .......... .......... .......... 33% 11.3M 1s
  3200K .......... .......... .......... .......... .......... 33% 11.0M 1s
  3250K .......... .......... .......... .......... .......... 34% 11.3M 1s
  3300K .......... .......... .......... .......... .......... 34% 11.0M 1s
  3350K .......... .......... .......... .......... .......... 35% 11.3M 1s
  3400K .......... .......... .......... .......... .......... 35% 11.3M 1s
  3450K .......... .......... .......... .......... .......... 36% 11.0M 1s
  3500K .......... .......... .......... .......... .......... 36% 11.3M 1s
  3550K .......... .......... .......... .......... .......... 37% 11.3M 1s
  3600K .......... .......... .......... .......... .......... 37% 11.0M 1s
  3650K .......... .......... .......... .......... .......... 38% 11.3M 1s
  3700K .......... .......... .......... .......... .......... 38% 11.3M 1s
  3750K .......... .......... .......... .......... .......... 39% 11.0M 1s
  3800K .......... .......... .......... .......... .......... 39% 11.3M 1s
  3850K .......... .......... .......... .......... .......... 40% 11.0M 1s
  3900K .......... .......... .......... .......... .......... 40% 11.2M 0s
  3950K .......... .......... .......... .......... .......... 41% 11.5M 0s
  4050K .......... .......... .......... .......... .......... 42% 11.3M 0s
  4100K .......... .......... .......... .......... .......... 42% 11.3M 0s
  4150K .......... .......... .......... .......... .......... 43% 11.0M 0s
  4200K .......... .......... .......... .......... .......... 43% 11.3M 0s
  4250K .......... .......... .......... .......... .......... 44% 11.3M 0s
  4300K .......... .......... .......... .......... .......... 44% 11.0M 0s
  4350K .......... .......... .......... .......... .......... 45% 11.4M 0s
  4400K .......... .......... .......... .......... .......... 45% 11.3M 0s
  4450K .......... .......... .......... .......... .......... 46% 11.0M 0s
  4500K .......... .......... .......... .......... .......... 47% 11.4M 0s
  4550K .......... .......... .......... .......... .......... 47% 11.0M 0s
  4600K .......... .......... .......... .......... .......... 48% 11.3M 0s
  4650K .......... .......... .......... .......... .......... 48% 11.4M 0s
  4700K .......... .......... .......... .......... .......... 49% 11.0M 0s
  4750K .......... .......... .......... .......... .......... 49% 11.3M 0s
  4800K .......... .......... .......... .......... .......... 50% 11.3M 0s
  4850K .......... .......... .......... .......... .......... 50% 11.0M 0s
  4900K .......... .......... .......... .......... .......... 51% 11.3M 0s
  4950K .......... .......... .......... .......... .......... 51% 11.3M 0s
  5000K .......... .......... .......... .......... .......... 52% 10.9M 0s
  5050K .......... .......... .......... .......... .......... 52% 11.4M 0s
  5100K .......... .......... .......... .......... .......... 53% 11.1M 0s
  5150K .......... .......... .......... .......... .......... 53% 11.0M 0s
  5200K .......... .......... .......... .......... .......... 54% 11.3M 0s
  5250K .......... .......... .......... .......... .......... 54% 11.0M 0s
  5300K .......... .......... .......... .......... .......... 55% 11.3M 0s
  5350K .......... .......... .......... .......... .......... 55% 11.3M 0s
  5400K .......... .......... .......... .......... .......... 56% 11.0M 0s
  5450K .......... .......... .......... .......... .......... 56% 11.3M 0s
  5500K .......... .......... .......... .......... .......... 57% 11.3M 0s
  5550K .......... .......... .......... .......... .......... 57% 11.0M 0s
  5600K .......... .......... .......... .......... .......... 58% 11.3M 0s
  5650K .......... .......... .......... .......... .......... 58% 11.3M 0s
  5700K .......... .......... .......... .......... .......... 59% 11.0M 0s
  5750K .......... .......... .......... .......... .......... 59% 11.3M 0s
  5800K .......... .......... .......... .......... .......... 60% 11.0M 0s
  5850K .......... .......... .......... .......... .......... 60% 11.3M 0s
  5900K .......... .......... .......... .......... .......... 61% 11.3M 0s
  5950K .......... .......... .......... .......... .......... 61% 11.0M 0s
  6000K .......... .......... .......... .......... .......... 62% 11.2M 0s
  6050K .......... .......... .......... .......... .......... 63% 11.4M 0s
  6100K .......... .......... .......... .......... .......... 63% 11.0M 0s
  6150K .......... .......... .......... .......... .......... 64% 11.3M 0s
  6200K .......... .......... .......... .......... .......... 64% 11.3M 0s
  6250K .......... .......... .......... .......... .......... 65% 11.0M 0s
  6300K .......... .......... .......... .......... .......... 65% 11.4M 0s
  6350K .......... .......... .......... .......... .......... 66% 11.3M 0s
  6400K .......... .......... .......... .......... .......... 66% 11.0M 0s
  6450K .......... .......... .......... .......... .......... 67% 11.4M 0s
  6500K .......... .......... .......... .......... .......... 67% 11.0M 0s
  6550K .......... .......... .......... .......... .......... 68% 11.3M 0s
  6600K .......... .......... .......... .......... .......... 68% 11.3M 0s
  6650K .......... .......... .......... .......... .......... 69% 11.0M 0s
  6700K .......... .......... .......... .......... .......... 69% 11.3M 0s
  6750K .......... .......... .......... .......... .......... 70% 11.3M 0s
  6800K .......... .......... .......... .......... .......... 70% 11.0M 0s
  6850K .......... .......... .......... .......... .......... 71% 11.3M 0s
  6900K .......... .......... .......... .......... .......... 71% 11.4M 0s
  6950K .......... .......... .......... .......... .......... 72% 11.0M 0s
  7000K .......... .......... .......... .......... .......... 72% 11.3M 0s
  7050K .......... .......... .......... .......... .......... 73% 11.3M 0s
  7100K .......... .......... .......... .......... .......... 73% 11.0M 0s
  7150K .......... .......... .......... .......... .......... 74% 11.3M 0s
  7200K .......... .......... .......... .......... .......... 74% 11.0M 0s
  7250K .......... .......... .......... .......... .......... 75% 11.3M 0s
  7300K .......... .......... .......... .......... .......... 75% 11.3M 0s
  7350K .......... .......... .......... .......... .......... 76% 11.0M 0s
  7400K .......... .......... .......... .......... .......... 76% 11.3M 0s
  7450K .......... .......... .......... .......... .......... 77% 11.3M 0s
  7500K .......... .......... .......... .......... .......... 77% 11.0M 0s
  7550K .......... .......... .......... .......... .......... 78% 11.4M 0s
  7600K .......... .......... .......... .......... .......... 79% 11.3M 0s
  7650K .......... .......... .......... .......... .......... 79% 11.0M 0s
  7700K .......... .......... .......... .......... .......... 80% 11.3M 0s
  7750K .......... .......... .......... .......... .......... 80% 11.0M 0s
  7800K .......... .......... .......... .......... .......... 81% 11.3M 0s
  7850K .......... .......... .......... .......... .......... 81% 11.3M 0s
  7900K .......... .......... .......... .......... .......... 82% 11.0M 0s
  7950K .......... .......... .......... .......... .......... 82% 11.3M 0s
  8000K .......... .......... .......... .......... .......... 83% 11.3M 0s
  8050K .......... .......... .......... .......... .......... 83% 11.0M 0s
  8100K .......... .......... .......... .......... .......... 84% 11.3M 0s
  8150K .......... .......... .......... .......... .......... 84% 11.3M 0s
  8200K .......... .......... .......... .......... .......... 85% 11.0M 0s
  8250K .......... .......... .......... .......... .......... 85% 11.3M 0s
  8300K .......... .......... .......... .......... .......... 86% 11.3M 0s
  8350K .......... .......... .......... .......... .......... 86% 11.0M 0s
  8400K .......... .......... .......... .......... .......... 87% 11.3M 0s
  8450K .......... .......... .......... .......... .......... 87% 11.0M 0s
  8500K .......... .......... .......... .......... .......... 88% 11.3M 0s
  8550K .......... .......... .......... .......... .......... 88% 11.3M 0s
  8600K .......... .......... .......... .......... .......... 89% 11.0M 0s
  8650K .......... .......... .......... .......... .......... 89% 11.3M 0s
  8700K .......... .......... .......... .......... .......... 90% 11.3M 0s
  8750K .......... .......... .......... .......... .......... 90% 11.0M 0s
  8800K .......... .......... .......... .......... .......... 91% 11.3M 0s
  8850K .......... .......... .......... .......... .......... 91% 11.3M 0s
  8900K .......... .......... .......... .......... .......... 92% 11.0M 0s
  8950K .......... .......... .......... .......... .......... 92% 11.3M 0s
  9000K .......... .......... .......... .......... .......... 93% 11.3M 0s
  9050K .......... .......... .......... .......... .......... 94% 11.0M 0s
  9100K .......... .......... .......... .......... .......... 94% 11.3M 0s
  9150K .......... .......... .......... .......... .......... 95% 11.0M 0s
  9200K .......... .......... .......... .......... .......... 95% 11.3M 0s
  9250K .......... .......... .......... .......... .......... 96% 11.4M 0s
  9300K .......... .......... .......... .......... .......... 96% 10.1M 0s
  9350K .......... .......... .......... .......... .......... 97% 12.5M 0s
  9400K .......... .......... .......... .......... .......... 97% 11.3M 0s
  9450K .......... .......... .......... .......... .......... 98% 11.0M 0s
  9500K .......... .......... .......... .......... .......... 98% 11.3M 0s
  9550K .......... .......... .......... .......... .......... 99% 11.3M 0s
  9600K .......... .......... .......... .......... .......... 99% 11.0M 0s
  9650K .......... .......... ..........                      100% 11.6M=0.8s

2023-08-25 02:16:09 (11.2 MB/s) - ‘train-images-idx3-ubyte.gz’ saved [9912422/9912422]

--2023-08-25 02:16:09--  http://192.168.10.89:8000/train-labels-idx1-ubyte.gz
Connecting to 192.168.10.89:8000... connected.
HTTP request sent, awaiting response... 200 OK
Length: 28881 (28K) [application/gzip]
Saving to: ‘train-labels-idx1-ubyte.gz’

     0K .......... .......... ........                        100% 7.12M=0.004s

2023-08-25 02:16:09 (7.12 MB/s) - ‘train-labels-idx1-ubyte.gz’ saved [28881/28881]

[INFO] torch.cuda.is_available():  True
[INFO] device:  cuda:0
[INFO] cuda.device_count: 1
training1,Batch200,value of loss:2.300
training1,Batch400,value of loss:2.289
training1,Batch600,value of loss:2.255
training1,Batch800,value of loss:1.994
training1,Batch1000,value of loss:0.946
training1,Batch1200,value of loss:0.554
training1,Batch1400,value of loss:0.441
training1,Batch1600,value of loss:0.384
training1,Batch1800,value of loss:0.304
training2,Batch200,value of loss:0.286
training2,Batch400,value of loss:0.233
training2,Batch600,value of loss:0.226
training2,Batch800,value of loss:0.211
training2,Batch1000,value of loss:0.181
training2,Batch1200,value of loss:0.177
training2,Batch1400,value of loss:0.163
training2,Batch1600,value of loss:0.160
training2,Batch1800,value of loss:0.142
training3,Batch200,value of loss:0.130
training3,Batch400,value of loss:0.123
training3,Batch600,value of loss:0.119
training3,Batch800,value of loss:0.122
training3,Batch1000,value of loss:0.128
training3,Batch1200,value of loss:0.113
training3,Batch1400,value of loss:0.101
training3,Batch1600,value of loss:0.111
training3,Batch1800,value of loss:0.102
training4,Batch200,value of loss:0.099
training4,Batch400,value of loss:0.095
training4,Batch600,value of loss:0.080
training4,Batch800,value of loss:0.087
training3,Batch1000,value of loss:0.128
training3,Batch1200,value of loss:0.113
training3,Batch1400,value of loss:0.101
training3,Batch1600,value of loss:0.111
training3,Batch1800,value of loss:0.102
training4,Batch200,value of loss:0.099
training4,Batch400,value of loss:0.095
training4,Batch600,value of loss:0.080
training4,Batch800,value of loss:0.087
training4,Batch1000,value of loss:0.083
training4,Batch1200,value of loss:0.098
training4,Batch1400,value of loss:0.082
training4,Batch1600,value of loss:0.084
training4,Batch1800,value of loss:0.078
training5,Batch200,value of loss:0.074
training5,Batch400,value of loss:0.078
training5,Batch600,value of loss:0.083
training5,Batch800,value of loss:0.080
training5,Batch1000,value of loss:0.070
training5,Batch1200,value of loss:0.070
training5,Batch1400,value of loss:0.075
training5,Batch1600,value of loss:0.082
training5,Batch1800,value of loss:0.065
training6,Batch200,value of loss:0.071
training6,Batch400,value of loss:0.069
training6,Batch600,value of loss:0.066
training6,Batch800,value of loss:0.065
training6,Batch1000,value of loss:0.069
training6,Batch1200,value of loss:0.061
training6,Batch1400,value of loss:0.069
training6,Batch1600,value of loss:0.060
training6,Batch1800,value of loss:0.058
training7,Batch200,value of loss:0.057
training7,Batch400,value of loss:0.057
training7,Batch600,value of loss:0.061
training7,Batch800,value of loss:0.062
training7,Batch1000,value of loss:0.062
training7,Batch1200,value of loss:0.059
training7,Batch1400,value of loss:0.057
training7,Batch1600,value of loss:0.062
training7,Batch1800,value of loss:0.050
training8,Batch200,value of loss:0.046
training8,Batch400,value of loss:0.057
training8,Batch600,value of loss:0.045
training8,Batch800,value of loss:0.052
training8,Batch1000,value of loss:0.057
training8,Batch1200,value of loss:0.057
training8,Batch1400,value of loss:0.047
training8,Batch1600,value of loss:0.059
training8,Batch1800,value of loss:0.055
training9,Batch200,value of loss:0.048
training9,Batch400,value of loss:0.041
training9,Batch600,value of loss:0.049
training9,Batch800,value of loss:0.046
training9,Batch1000,value of loss:0.043
training9,Batch1200,value of loss:0.050
training9,Batch1400,value of loss:0.043
training9,Batch1600,value of loss:0.055
training9,Batch1800,value of loss:0.051
training10,Batch200,value of loss:0.051
training10,Batch400,value of loss:0.047
training10,Batch600,value of loss:0.041
training10,Batch800,value of loss:0.047
training10,Batch1000,value of loss:0.037
training10,Batch1200,value of loss:0.044
training10,Batch1400,value of loss:0.043
training10,Batch1600,value of loss:0.036
training10,Batch1800,value of loss:0.048
time: 44 s
accuracy rate: 98.74 %
[Fri Aug 25 02:16:55 UTC 2023] [openpai-runtime] [INFO] USER COMMAND END
root@master-181:~# 

通过日志可以看出,openpai 中的job 执行,用到了openpai-runtime. 或者说,openpai 中定义的job包装类一层openpai-runtime

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值