Advertisement
maxattax97

docker / cgroups v1 / fakeroot

Apr 20th, 2023
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.66 KB | None | 0 0
  1. $ docker version
  2. Client:
  3.  Version:           23.0.3
  4.  API version:       1.42
  5.  Go version:        go1.20.2
  6.  Git commit:        3e7cbfdee1
  7.  Built:             Wed Apr  5 13:17:36 2023
  8.  OS/Arch:           linux/amd64
  9.  Context:           default
  10.  
  11. Server:
  12.  Engine:
  13.   Version:          23.0.3
  14.   API version:      1.42 (minimum version 1.12)
  15.   Go version:       go1.20.2
  16.   Git commit:       59118bff50
  17.   Built:            Wed Apr  5 13:17:36 2023
  18.   OS/Arch:          linux/amd64
  19.   Experimental:     false
  20.  containerd:
  21.   Version:          v1.7.0
  22.   GitCommit:        1fbd70374134b891f97ce19c70b6e50c7b9f4e0d.m
  23.  runc:
  24.   Version:          1.1.6
  25.   GitCommit:        
  26.  docker-init:
  27.   Version:          0.19.0
  28.   GitCommit:        de40ad0
  29.  
  30. $ docker info
  31. Client:
  32.  Context:    default
  33.  Debug Mode: false
  34.  Plugins:
  35.   compose: Docker Compose (Docker Inc.)
  36.     Version:  2.17.2
  37.     Path:     /usr/lib/docker/cli-plugins/docker-compose
  38.  
  39. Server:
  40.  Containers: 151
  41.   Running: 1
  42.   Paused: 0
  43.   Stopped: 150
  44.  Images: 506
  45.  Server Version: 23.0.3
  46.  Storage Driver: overlay2
  47.   Backing Filesystem: extfs
  48.   Supports d_type: true
  49.   Using metacopy: true
  50.   Native Overlay Diff: false
  51.   userxattr: false
  52.  Logging Driver: json-file
  53.  Cgroup Driver: cgroupfs
  54.  Cgroup Version: 1
  55.  Plugins:
  56.   Volume: local
  57.   Network: bridge host ipvlan macvlan null overlay
  58.   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
  59.  Swarm: inactive
  60.  Runtimes: io.containerd.runc.v2 runc
  61.  Default Runtime: runc
  62.  Init Binary: docker-init
  63.  containerd version: 1fbd70374134b891f97ce19c70b6e50c7b9f4e0d.m
  64.  runc version:
  65.  init version: de40ad0
  66.  Security Options:
  67.   seccomp
  68.    Profile: builtin
  69.  Kernel Version: 6.2.11-arch1-1
  70.  Operating System: Arch Linux
  71.  OSType: linux
  72.  Architecture: x86_64
  73.  CPUs: 24
  74.  Total Memory: 31.27GiB
  75.  Name: mocull-endeavor
  76.  ID: VUDR:URXR:LNY6:5ANR:5F5U:I7ET:POWR:IZTF:YJML:HL25:GTTI:TAQZ
  77.  Docker Root Dir: /var/lib/docker
  78.  Debug Mode: false
  79.  Registry: https://index.docker.io/v1/
  80.  Experimental: false
  81.  Insecure Registries:
  82.   registry.batswireless.lcl:5001
  83.   127.0.0.0/8
  84.  Live Restore Enabled: false
  85.  
  86. $ docker run --rm -it alpine sh
  87. / # apk update
  88. / # apk add fakeroot
  89. / # time fakeroot whoami
  90. root
  91. real    0m 0.00s
  92. user    0m 0.00s
  93. sys     0m 0.00s
  94. / # time fakeroot sh -c whoami
  95. fakeroot internal error #43: Identifier removed
  96. semop(2): encountered an error: Invalid argument
  97. sh: can't kill pid 71: No such process
  98. Command exited with non-zero status 1
  99. real    0m 16.51s
  100. user    0m 0.00s
  101. sys     0m 0.00s
  102. / # time fakeroot sh -c whoami
  103. root
  104. real    1m 46.91s
  105. user    0m 0.00s
  106. sys     0m 0.00s
  107. / # fakeroot -v
  108. fakeroot version 1.29
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement