Giter Club home page Giter Club logo

cs305-proj's People

Contributors

fros1er avatar xinyingzheng00 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

cs305-proj's Issues

关于Throughput

1、f4m文件中的bitrate和计算的throughput的单位是什么?
2、“length of the video chunk” 可以从哪里获得?HTTP包的content-length吗?

关于Throughput实现

请问estimated throughput是否只针对apche,和browser无关

就是这样实现:

  1. browser请求proxy
  2. proxy找dns要一个apache
  3. 每个apache对应一个estimated throughput
  4. proxy根据apache选择一个bitrate
  5. proxy返回数据

这个过程中proxy不区分browser

vdn docker image启动失败

我尝试像视频里所说的启动docker镜像并与vscode挂钩,然而启动失败了,报了如下错误:

Traceback (most recent call last):

File "/autograder/harness.py", line 440, in <module>
harness.run()

File "/autograder/harness.py", line 413, in run

raise Exception("SUBMISSION_URL or PAYLOAD_FILE required")

Exception: SUBMISSION_URL or PAYLOAD_FILE required

我不知道是因为还没有写代码还是其他原因(比如初始启动命令出错)导致启动失败了,也不太清楚该怎么做

index.html运行时是以哪个文件为主?

您好,我们现在在proxy中以@app.route("/index.html") 来实现访问127.0.0.1:xxxx/index.html时能接收到视频
但是查看源代码后,这个页面的网页源代码并非是CS305-proj/docker_setup/www/index.html 或者 CS305-proj/docker_setup/apache2/htdocs/index.html 中的其中一个,因为在这两个html文件上做修改是无法显示到我们访问的页面上去的。
请问若需要在访问页面中实现添加元素比如弹幕系统之类的,应该怎么办呢?还是说我们前面有做错的地方使得其无法实现?或者这个文件并不在本地能够修改的范围?

关于f4m的修改问题

QQ图片20220503174959

这段我有点没理解,proxy从server处获得的f4m文件包含了多个bitrate以及它的metadata信息,proxy是只能传一个bitrate的metadata信息给client吗?还是可以整个文件都给client,然后只是分发seg片段的时候帮助客户端选择?

apache的动态链接库问题

rt,apache的动态链接好像全炸了。。。
暂时这么修了一下,要不netsim跑不起来

apt install libapr1 # 不知道需不需要
chmod +x /usr/local/apache2/bin/httpd
cd /usr/local/apache2/lib/
rm libaprutil-1.so.0
ln -s libaprutil-1.so.0.5.3 libaprutil-1.so.0
rm libexpat.so.0
ln -s libexpat.so.0.5.0 libexpat.so.0
rm libapr-1.so.0
ln -s libapr-1.so.0.5.1 libapr-1.so.0

更新:我在自己的repo里加上了。。。
不过顺手装了个fish,所以不太适合合到这里面了
https://github.com/Fros1er/CS305-proj/blob/main/docker_setup/DockerFile

关于dns server和throughput的问题

  1. project里的DNS Server需要是一个单独的server吗....能否直接集成到proxy里
  2. 文档中提到To calculate the throughput for a particular chunk, you should note the start time ts of the request and the end time tf we you finished receiving the chunk from the server。这里的request是指的client到proxy的请求还是proxy到server的请求,还是两者都有?

问题

请问一下build image的命令是在哪里运行呢?在本机终端吗还是先在docker新建环境再运行

关于Throughput的估计

请问estimated throughput是只针对apache server的吗,这样子实现是否正确:

  1. browser找proxy要一个资源
  2. proxy找dns要一个apache
  3. 每个apache对应一个estimated throughput
  4. proxy根据apache选择一个bitrate
  5. proxy返回

在这个过程中,proxy不需要区分browser,只需要区分apache,不清楚是不是应该这样写。

关于exit proxy properly的疑问

请问关于文档中exit proxy properly的含义是不能ctrl+C直接退出程序,还是说需要视频播放完后线程自己退出,程序自行结束?

docker image build failed

Local Environment:
Mac OS 12.2
Docker version 20.10.14
VirtualBox version 6.1.34

It seems something wrong with apt-get tool, but I'm not familiar with docker:

MacZhong:Desktop zhongfantasty$ cd CS305-proj/docker_setup
MacZhong:docker_setup zhongfantasty$ sudo docker build -t project:latest -f ./DockerFile .
[+] Building 59.0s (14/14) FINISHED                                                                               
 => [internal] load build definition from DockerFile                                                         0.0s
 => => transferring dockerfile: 1.29kB                                                                       0.0s
 => [internal] load .dockerignore                                                                            0.0s
 => => transferring context: 2B                                                                              0.0s
 => [internal] load metadata for docker.io/gradescope/auto-builds:ubuntu-18.04                               2.7s
 => [auth] gradescope/auto-builds:pull token for registry-1.docker.io                                        0.0s
 => [1/9] FROM docker.io/gradescope/auto-builds:ubuntu-18.04@sha256:955b8c02ede6821322554357252e053734fd85a  0.0s
 => [internal] load build context                                                                           12.6s
 => => transferring context: 558.28MB                                                                       11.7s
 => CACHED [2/9] RUN sed -i "s/archive.ubuntu.com/mirrors.sustech.edu.cn/g" /etc/apt/sources.list            0.0s
 => CACHED [3/9] RUN sed -i "s/security.ubuntu.com/mirrors.sustech.edu.cn/g" /etc/apt/sources.list           0.0s
 => CACHED [4/9] RUN mkdir /var/www/ &&    mkdir /usr/local/apache2/ &&    mkdir /home/click/ &&    mkdir /  0.0s
 => CACHED [5/9] ADD ./netsim/ /autograder/netsim/                                                           0.0s
 => CACHED [6/9] ADD ./www/ /var/www/                                                                        0.0s
 => CACHED [7/9] ADD ./apache2/ /usr/local/apache2/                                                          0.0s
 => CACHED [8/9] ADD ./click/ /home/click/                                                                   0.0s
 => ERROR [9/9] RUN apt-get update &&    apt-get -y install net-tools &&    apt-get install psmisc &&    a  43.5s
------                                                                                                            
 > [9/9] RUN apt-get update &&    apt-get -y install net-tools &&    apt-get install psmisc &&    apt-get -y install gdb &&    apt-get -y install tcpdump &&    apt-get -y install build-essential &&    apt-get -y install python python-pip &&    apt-get -y install bison flex &&    cd /home/click &&    chmod +x ./mkinstalldirs &&    chmod +x ./configure &&    ./configure --enable-local &&    make elemlist &&    make install:                               
#14 0.533 Get:1 http://mirrors.sustech.edu.cn/ubuntu bionic InRelease [242 kB]                                    
#14 0.576 Get:2 http://mirrors.sustech.edu.cn/ubuntu bionic-updates InRelease [88.7 kB]
#14 0.583 Get:3 http://mirrors.sustech.edu.cn/ubuntu bionic-backports InRelease [74.6 kB]
#14 0.593 Get:4 http://mirrors.sustech.edu.cn/ubuntu bionic-security InRelease [88.7 kB]
#14 0.713 Get:5 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 Packages [1344 kB]
#14 0.852 Get:6 http://mirrors.sustech.edu.cn/ubuntu bionic/restricted amd64 Packages [13.5 kB]
#14 0.869 Get:7 http://mirrors.sustech.edu.cn/ubuntu bionic/universe amd64 Packages [11.3 MB]
#14 1.715 Get:8 http://mirrors.sustech.edu.cn/ubuntu bionic/multiverse amd64 Packages [186 kB]
#14 1.726 Get:9 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/universe amd64 Packages [2272 kB]
#14 1.905 Get:10 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 Packages [3167 kB]
#14 2.172 Get:11 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/restricted amd64 Packages [942 kB]
#14 2.240 Get:12 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/multiverse amd64 Packages [29.8 kB]
#14 2.241 Get:13 http://mirrors.sustech.edu.cn/ubuntu bionic-backports/universe amd64 Packages [12.9 kB]
#14 2.245 Get:14 http://mirrors.sustech.edu.cn/ubuntu bionic-backports/main amd64 Packages [12.2 kB]
#14 2.246 Get:15 http://mirrors.sustech.edu.cn/ubuntu bionic-security/universe amd64 Packages [1496 kB]
#14 2.363 Get:16 http://mirrors.sustech.edu.cn/ubuntu bionic-security/main amd64 Packages [2733 kB]
#14 2.592 Get:17 http://mirrors.sustech.edu.cn/ubuntu bionic-security/restricted amd64 Packages [909 kB]
#14 2.668 Get:18 http://mirrors.sustech.edu.cn/ubuntu bionic-security/multiverse amd64 Packages [21.1 kB]
#14 3.409 Fetched 25.0 MB in 3s (8488 kB/s)
#14 3.409 Reading package lists...
#14 4.550 Reading package lists...
#14 5.651 Building dependency tree...
#14 5.816 Reading state information...
#14 6.016 The following NEW packages will be installed:
#14 6.016   net-tools
#14 6.344 0 upgraded, 1 newly installed, 0 to remove and 24 not upgraded.
#14 6.344 Need to get 194 kB of archives.
#14 6.344 After this operation, 803 kB of additional disk space will be used.
#14 6.344 Get:1 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 net-tools amd64 1.60+git20161116.90da8a0-1ubuntu1 [194 kB]
#14 6.543 debconf: delaying package configuration, since apt-utils is not installed
#14 6.572 Fetched 194 kB in 0s (553 kB/s)
#14 6.594 Selecting previously unselected package net-tools.
(Reading database ... 27809 files and directories currently installed.)
#14 6.630 Preparing to unpack .../net-tools_1.60+git20161116.90da8a0-1ubuntu1_amd64.deb ...
#14 6.632 Unpacking net-tools (1.60+git20161116.90da8a0-1ubuntu1) ...
#14 6.679 Setting up net-tools (1.60+git20161116.90da8a0-1ubuntu1) ...
#14 6.740 Reading package lists...
#14 7.818 Building dependency tree...
#14 8.022 Reading state information...
#14 8.276 The following NEW packages will be installed:
#14 8.276   psmisc
#14 8.369 0 upgraded, 1 newly installed, 0 to remove and 24 not upgraded.
#14 8.369 Need to get 52.5 kB of archives.
#14 8.369 After this operation, 266 kB of additional disk space will be used.
#14 8.369 Get:1 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 psmisc amd64 23.1-1ubuntu0.1 [52.5 kB]
#14 8.525 debconf: delaying package configuration, since apt-utils is not installed
#14 8.550 Fetched 52.5 kB in 0s (538 kB/s)
#14 8.570 Selecting previously unselected package psmisc.
(Reading database ... 27857 files and directories currently installed.)
#14 8.583 Preparing to unpack .../psmisc_23.1-1ubuntu0.1_amd64.deb ...
#14 8.586 Unpacking psmisc (23.1-1ubuntu0.1) ...
#14 8.617 Setting up psmisc (23.1-1ubuntu0.1) ...
#14 8.679 Reading package lists...
#14 9.803 Building dependency tree...
#14 9.966 Reading state information...
#14 10.15 The following additional packages will be installed:
#14 10.15   gdbserver libbabeltrace1 libc6-dbg libdw1 libelf1
#14 10.15 Suggested packages:
#14 10.15   gdb-doc
#14 10.18 The following NEW packages will be installed:
#14 10.18   gdb gdbserver libbabeltrace1 libc6-dbg libdw1 libelf1
#14 10.47 0 upgraded, 6 newly installed, 0 to remove and 24 not upgraded.
#14 10.47 Need to get 8784 kB of archives.
#14 10.47 After this operation, 51.8 MB of additional disk space will be used.
#14 10.47 Get:1 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libelf1 amd64 0.170-0.4ubuntu0.1 [44.8 kB]
#14 10.53 Get:2 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libdw1 amd64 0.170-0.4ubuntu0.1 [203 kB]
#14 10.56 Get:3 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libbabeltrace1 amd64 1.5.5-1 [154 kB]
#14 10.61 Get:4 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 gdb amd64 8.1.1-0ubuntu1 [2937 kB]
#14 11.08 Get:5 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 gdbserver amd64 8.1.1-0ubuntu1 [282 kB]
#14 11.09 Get:6 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libc6-dbg amd64 2.27-3ubuntu1.5 [5163 kB]
#14 11.96 debconf: delaying package configuration, since apt-utils is not installed
#14 11.99 Fetched 8784 kB in 2s (5409 kB/s)
#14 12.01 Selecting previously unselected package libelf1:amd64.
(Reading database ... 27879 files and directories currently installed.)
#14 12.03 Preparing to unpack .../0-libelf1_0.170-0.4ubuntu0.1_amd64.deb ...
#14 12.03 Unpacking libelf1:amd64 (0.170-0.4ubuntu0.1) ...
#14 12.06 Selecting previously unselected package libdw1:amd64.
#14 12.06 Preparing to unpack .../1-libdw1_0.170-0.4ubuntu0.1_amd64.deb ...
#14 12.06 Unpacking libdw1:amd64 (0.170-0.4ubuntu0.1) ...
#14 12.10 Selecting previously unselected package libbabeltrace1:amd64.
#14 12.11 Preparing to unpack .../2-libbabeltrace1_1.5.5-1_amd64.deb ...
#14 12.11 Unpacking libbabeltrace1:amd64 (1.5.5-1) ...
#14 12.14 Selecting previously unselected package gdb.
#14 12.15 Preparing to unpack .../3-gdb_8.1.1-0ubuntu1_amd64.deb ...
#14 12.15 Unpacking gdb (8.1.1-0ubuntu1) ...
#14 12.42 Selecting previously unselected package gdbserver.
#14 12.43 Preparing to unpack .../4-gdbserver_8.1.1-0ubuntu1_amd64.deb ...
#14 12.43 Unpacking gdbserver (8.1.1-0ubuntu1) ...
#14 12.48 Selecting previously unselected package libc6-dbg:amd64.
#14 12.48 Preparing to unpack .../5-libc6-dbg_2.27-3ubuntu1.5_amd64.deb ...
#14 12.48 Unpacking libc6-dbg:amd64 (2.27-3ubuntu1.5) ...
#14 13.24 Setting up libc6-dbg:amd64 (2.27-3ubuntu1.5) ...
#14 13.24 Setting up libelf1:amd64 (0.170-0.4ubuntu0.1) ...
#14 13.25 Setting up gdbserver (8.1.1-0ubuntu1) ...
#14 13.25 Setting up libdw1:amd64 (0.170-0.4ubuntu0.1) ...
#14 13.26 Setting up libbabeltrace1:amd64 (1.5.5-1) ...
#14 13.27 Setting up gdb (8.1.1-0ubuntu1) ...
#14 13.28 Processing triggers for libc-bin (2.27-3ubuntu1.5) ...
#14 13.42 Reading package lists...
#14 14.51 Building dependency tree...
#14 14.72 Reading state information...
#14 14.94 The following additional packages will be installed:
#14 14.95   libpcap0.8
#14 14.95 Suggested packages:
#14 14.95   apparmor
#14 14.99 The following NEW packages will be installed:
#14 14.99   libpcap0.8 tcpdump
#14 15.19 0 upgraded, 2 newly installed, 0 to remove and 24 not upgraded.
#14 15.19 Need to get 482 kB of archives.
#14 15.19 After this operation, 1408 kB of additional disk space will be used.
#14 15.19 Get:1 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libpcap0.8 amd64 1.8.1-6ubuntu1.18.04.2 [118 kB]
#14 15.25 Get:2 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 tcpdump amd64 4.9.3-0ubuntu0.18.04.2 [364 kB]
#14 15.42 debconf: delaying package configuration, since apt-utils is not installed
#14 15.44 Fetched 482 kB in 0s (1699 kB/s)
#14 15.47 Selecting previously unselected package libpcap0.8:amd64.
(Reading database ... 28319 files and directories currently installed.)
#14 15.48 Preparing to unpack .../libpcap0.8_1.8.1-6ubuntu1.18.04.2_amd64.deb ...
#14 15.48 Unpacking libpcap0.8:amd64 (1.8.1-6ubuntu1.18.04.2) ...
#14 15.52 Selecting previously unselected package tcpdump.
#14 15.52 Preparing to unpack .../tcpdump_4.9.3-0ubuntu0.18.04.2_amd64.deb ...
#14 15.52 Unpacking tcpdump (4.9.3-0ubuntu0.18.04.2) ...
#14 15.58 Setting up libpcap0.8:amd64 (1.8.1-6ubuntu1.18.04.2) ...
#14 15.59 Setting up tcpdump (4.9.3-0ubuntu0.18.04.2) ...
#14 15.60 Processing triggers for libc-bin (2.27-3ubuntu1.5) ...
#14 15.67 Reading package lists...
#14 16.75 Building dependency tree...
#14 16.96 Reading state information...
#14 17.22 build-essential is already the newest version (12.4ubuntu1).
#14 17.22 build-essential set to manually installed.
#14 17.22 0 upgraded, 0 newly installed, 0 to remove and 24 not upgraded.
#14 17.26 Reading package lists...
#14 18.35 Building dependency tree...
#14 18.56 Reading state information...
#14 18.79 The following additional packages will be installed:
#14 18.79   libpython-all-dev libpython-dev libpython-stdlib libpython2.7
#14 18.79   libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib python-all
#14 18.79   python-all-dev python-asn1crypto python-cffi-backend python-crypto
#14 18.79   python-cryptography python-dbus python-dev python-enum34 python-gi
#14 18.79   python-idna python-ipaddress python-keyring python-keyrings.alt
#14 18.79   python-minimal python-pkg-resources python-secretstorage python-setuptools
#14 18.80   python-six python-wheel python-xdg python2.7 python2.7-dev python2.7-minimal
#14 18.80 Suggested packages:
#14 18.80   python-doc python-tk python-crypto-doc python-cryptography-doc
#14 18.80   python-cryptography-vectors python-dbus-dbg python-dbus-doc
#14 18.80   python-enum34-doc python-gi-cairo gnome-keyring libkf5wallet-bin
#14 18.80   gir1.2-gnomekeyring-1.0 python-fs python-gdata python-keyczar
#14 18.80   python-secretstorage-doc python-setuptools-doc python2.7-doc binfmt-support
#14 18.94 The following NEW packages will be installed:
#14 18.94   libpython-all-dev libpython-dev libpython-stdlib libpython2.7
#14 18.94   libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib python python-all
#14 18.94   python-all-dev python-asn1crypto python-cffi-backend python-crypto
#14 18.94   python-cryptography python-dbus python-dev python-enum34 python-gi
#14 18.94   python-idna python-ipaddress python-keyring python-keyrings.alt
#14 18.94   python-minimal python-pip python-pkg-resources python-secretstorage
#14 18.94   python-setuptools python-six python-wheel python-xdg python2.7 python2.7-dev
#14 18.94   python2.7-minimal
#14 19.02 0 upgraded, 33 newly installed, 0 to remove and 24 not upgraded.
#14 19.02 Need to get 35.3 MB of archives.
#14 19.02 After this operation, 71.1 MB of additional disk space will be used.
#14 19.02 Get:1 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04ubuntu1.7 [335 kB]
#14 19.12 Get:2 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04ubuntu1.7 [1288 kB]
#14 19.35 Get:3 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB]
#14 19.36 Get:4 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04ubuntu1.7 [1917 kB]
#14 19.54 Get:5 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04ubuntu1.7 [248 kB]
#14 19.58 Get:6 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7620 B]
#14 19.58 Get:7 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB]
#14 19.59 Get:8 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libpython2.7 amd64 2.7.17-1~18.04ubuntu1.7 [1054 kB]
#14 19.82 Get:9 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 libpython2.7-dev amd64 2.7.17-1~18.04ubuntu1.7 [28.3 MB]
#14 23.64 Get:10 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libpython-dev amd64 2.7.15~rc1-1 [7684 B]
#14 23.64 Get:11 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libpython-all-dev amd64 2.7.15~rc1-1 [1092 B]
#14 23.64 Get:12 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-all amd64 2.7.15~rc1-1 [1076 B]
#14 23.64 Get:13 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 python2.7-dev amd64 2.7.17-1~18.04ubuntu1.7 [285 kB]
#14 23.65 Get:14 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-dev amd64 2.7.15~rc1-1 [1256 B]
#14 23.65 Get:15 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-all-dev amd64 2.7.15~rc1-1 [1100 B]
#14 23.65 Get:16 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-asn1crypto all 0.24.0-1 [72.7 kB]
#14 23.65 Get:17 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-cffi-backend amd64 1.11.5-1 [63.4 kB]
#14 23.66 Get:18 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-crypto amd64 2.6.1-8ubuntu2 [244 kB]
#14 23.68 Get:19 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-enum34 all 1.1.6-2 [34.8 kB]
#14 23.68 Get:20 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-idna all 2.6-1 [32.4 kB]
#14 23.69 Get:21 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-ipaddress all 1.0.17-1 [18.2 kB]
#14 23.70 Get:22 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-six all 1.11.0-2 [11.3 kB]
#14 23.73 Get:23 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 python-cryptography amd64 2.1.4-1ubuntu1.4 [276 kB]
#14 23.75 Get:24 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-dbus amd64 1.2.6-1 [90.2 kB]
#14 23.77 Get:25 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/main amd64 python-gi amd64 3.26.1-2ubuntu1 [197 kB]
#14 23.78 Get:26 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-secretstorage all 2.3.1-2 [11.8 kB]
#14 23.80 Get:27 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-keyring all 10.6.0-1 [30.6 kB]
#14 23.81 Get:28 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-keyrings.alt all 3.0-1 [16.7 kB]
#14 23.95 Get:29 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/universe amd64 python-pip all 9.0.1-2.3~ubuntu1.18.04.5 [151 kB]
#14 23.97 Get:30 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB]
#14 23.98 Get:31 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 python-setuptools all 39.0.1-2 [329 kB]
#14 24.02 Get:32 http://mirrors.sustech.edu.cn/ubuntu bionic/universe amd64 python-wheel all 0.30.0-0.2 [36.4 kB]
#14 24.02 Get:33 http://mirrors.sustech.edu.cn/ubuntu bionic-updates/universe amd64 python-xdg all 0.25-4ubuntu1.1 [31.2 kB]
#14 24.16 debconf: delaying package configuration, since apt-utils is not installed
#14 24.19 Fetched 35.3 MB in 5s (6970 kB/s)
#14 24.30 Selecting previously unselected package libpython2.7-minimal:amd64.
(Reading database ... 28342 files and directories currently installed.)
#14 24.33 Preparing to unpack .../0-libpython2.7-minimal_2.7.17-1~18.04ubuntu1.7_amd64.deb ...
#14 24.33 Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 24.40 Selecting previously unselected package python2.7-minimal.
#14 24.40 Preparing to unpack .../1-python2.7-minimal_2.7.17-1~18.04ubuntu1.7_amd64.deb ...
#14 24.41 Unpacking python2.7-minimal (2.7.17-1~18.04ubuntu1.7) ...
#14 24.55 Selecting previously unselected package python-minimal.
#14 24.55 Preparing to unpack .../2-python-minimal_2.7.15~rc1-1_amd64.deb ...
#14 24.56 Unpacking python-minimal (2.7.15~rc1-1) ...
#14 24.58 Selecting previously unselected package libpython2.7-stdlib:amd64.
#14 24.58 Preparing to unpack .../3-libpython2.7-stdlib_2.7.17-1~18.04ubuntu1.7_amd64.deb ...
#14 24.58 Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 24.79 Selecting previously unselected package python2.7.
#14 24.80 Preparing to unpack .../4-python2.7_2.7.17-1~18.04ubuntu1.7_amd64.deb ...
#14 24.80 Unpacking python2.7 (2.7.17-1~18.04ubuntu1.7) ...
#14 24.83 Selecting previously unselected package libpython-stdlib:amd64.
#14 24.83 Preparing to unpack .../5-libpython-stdlib_2.7.15~rc1-1_amd64.deb ...
#14 24.83 Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ...
#14 24.86 Setting up libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 24.87 Setting up python2.7-minimal (2.7.17-1~18.04ubuntu1.7) ...
#14 25.14 Setting up python-minimal (2.7.15~rc1-1) ...
#14 25.20 Selecting previously unselected package python.
(Reading database ... 29091 files and directories currently installed.)
#14 25.22 Preparing to unpack .../00-python_2.7.15~rc1-1_amd64.deb ...
#14 25.22 Unpacking python (2.7.15~rc1-1) ...
#14 25.26 Selecting previously unselected package libpython2.7:amd64.
#14 25.26 Preparing to unpack .../01-libpython2.7_2.7.17-1~18.04ubuntu1.7_amd64.deb ...
#14 25.27 Unpacking libpython2.7:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 25.39 Selecting previously unselected package libpython2.7-dev:amd64.
#14 25.39 Preparing to unpack .../02-libpython2.7-dev_2.7.17-1~18.04ubuntu1.7_amd64.deb ...
#14 25.39 Unpacking libpython2.7-dev:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 27.14 Selecting previously unselected package libpython-dev:amd64.
#14 27.15 Preparing to unpack .../03-libpython-dev_2.7.15~rc1-1_amd64.deb ...
#14 27.15 Unpacking libpython-dev:amd64 (2.7.15~rc1-1) ...
#14 27.17 Selecting previously unselected package libpython-all-dev:amd64.
#14 27.17 Preparing to unpack .../04-libpython-all-dev_2.7.15~rc1-1_amd64.deb ...
#14 27.17 Unpacking libpython-all-dev:amd64 (2.7.15~rc1-1) ...
#14 27.19 Selecting previously unselected package python-all.
#14 27.19 Preparing to unpack .../05-python-all_2.7.15~rc1-1_amd64.deb ...
#14 27.20 Unpacking python-all (2.7.15~rc1-1) ...
#14 27.22 Selecting previously unselected package python2.7-dev.
#14 27.22 Preparing to unpack .../06-python2.7-dev_2.7.17-1~18.04ubuntu1.7_amd64.deb ...
#14 27.22 Unpacking python2.7-dev (2.7.17-1~18.04ubuntu1.7) ...
#14 27.25 Selecting previously unselected package python-dev.
#14 27.25 Preparing to unpack .../07-python-dev_2.7.15~rc1-1_amd64.deb ...
#14 27.25 Unpacking python-dev (2.7.15~rc1-1) ...
#14 27.27 Selecting previously unselected package python-all-dev.
#14 27.27 Preparing to unpack .../08-python-all-dev_2.7.15~rc1-1_amd64.deb ...
#14 27.28 Unpacking python-all-dev (2.7.15~rc1-1) ...
#14 27.30 Selecting previously unselected package python-asn1crypto.
#14 27.30 Preparing to unpack .../09-python-asn1crypto_0.24.0-1_all.deb ...
#14 27.30 Unpacking python-asn1crypto (0.24.0-1) ...
#14 27.33 Selecting previously unselected package python-cffi-backend.
#14 27.33 Preparing to unpack .../10-python-cffi-backend_1.11.5-1_amd64.deb ...
#14 27.34 Unpacking python-cffi-backend (1.11.5-1) ...
#14 27.36 Selecting previously unselected package python-crypto.
#14 27.36 Preparing to unpack .../11-python-crypto_2.6.1-8ubuntu2_amd64.deb ...
#14 27.37 Unpacking python-crypto (2.6.1-8ubuntu2) ...
#14 27.46 Selecting previously unselected package python-enum34.
#14 27.47 Preparing to unpack .../12-python-enum34_1.1.6-2_all.deb ...
#14 27.47 Unpacking python-enum34 (1.1.6-2) ...
#14 27.50 Selecting previously unselected package python-idna.
#14 27.50 Preparing to unpack .../13-python-idna_2.6-1_all.deb ...
#14 27.50 Unpacking python-idna (2.6-1) ...
#14 27.53 Selecting previously unselected package python-ipaddress.
#14 27.53 Preparing to unpack .../14-python-ipaddress_1.0.17-1_all.deb ...
#14 27.53 Unpacking python-ipaddress (1.0.17-1) ...
#14 27.55 Selecting previously unselected package python-six.
#14 27.56 Preparing to unpack .../15-python-six_1.11.0-2_all.deb ...
#14 27.56 Unpacking python-six (1.11.0-2) ...
#14 27.58 Selecting previously unselected package python-cryptography.
#14 27.58 Preparing to unpack .../16-python-cryptography_2.1.4-1ubuntu1.4_amd64.deb ...
#14 27.59 Unpacking python-cryptography (2.1.4-1ubuntu1.4) ...
#14 27.65 Selecting previously unselected package python-dbus.
#14 27.65 Preparing to unpack .../17-python-dbus_1.2.6-1_amd64.deb ...
#14 27.65 Unpacking python-dbus (1.2.6-1) ...
#14 27.69 Selecting previously unselected package python-gi.
#14 27.69 Preparing to unpack .../18-python-gi_3.26.1-2ubuntu1_amd64.deb ...
#14 27.69 Unpacking python-gi (3.26.1-2ubuntu1) ...
#14 27.73 Selecting previously unselected package python-secretstorage.
#14 27.73 Preparing to unpack .../19-python-secretstorage_2.3.1-2_all.deb ...
#14 27.73 Unpacking python-secretstorage (2.3.1-2) ...
#14 27.76 Selecting previously unselected package python-keyring.
#14 27.76 Preparing to unpack .../20-python-keyring_10.6.0-1_all.deb ...
#14 27.76 Unpacking python-keyring (10.6.0-1) ...
#14 27.79 Selecting previously unselected package python-keyrings.alt.
#14 27.79 Preparing to unpack .../21-python-keyrings.alt_3.0-1_all.deb ...
#14 27.79 Unpacking python-keyrings.alt (3.0-1) ...
#14 27.82 Selecting previously unselected package python-pip.
#14 27.82 Preparing to unpack .../22-python-pip_9.0.1-2.3~ubuntu1.18.04.5_all.deb ...
#14 27.82 Unpacking python-pip (9.0.1-2.3~ubuntu1.18.04.5) ...
#14 27.86 Selecting previously unselected package python-pkg-resources.
#14 27.86 Preparing to unpack .../23-python-pkg-resources_39.0.1-2_all.deb ...
#14 27.86 Unpacking python-pkg-resources (39.0.1-2) ...
#14 27.90 Selecting previously unselected package python-setuptools.
#14 27.90 Preparing to unpack .../24-python-setuptools_39.0.1-2_all.deb ...
#14 27.90 Unpacking python-setuptools (39.0.1-2) ...
#14 27.96 Selecting previously unselected package python-wheel.
#14 27.96 Preparing to unpack .../25-python-wheel_0.30.0-0.2_all.deb ...
#14 27.96 Unpacking python-wheel (0.30.0-0.2) ...
#14 27.99 Selecting previously unselected package python-xdg.
#14 28.00 Preparing to unpack .../26-python-xdg_0.25-4ubuntu1.1_all.deb ...
#14 28.00 Unpacking python-xdg (0.25-4ubuntu1.1) ...
#14 28.03 Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 28.04 Setting up python2.7 (2.7.17-1~18.04ubuntu1.7) ...
#14 28.74 Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ...
#14 28.75 Setting up libpython2.7:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 28.75 Setting up libpython2.7-dev:amd64 (2.7.17-1~18.04ubuntu1.7) ...
#14 28.76 Setting up python2.7-dev (2.7.17-1~18.04ubuntu1.7) ...
#14 28.76 Setting up python (2.7.15~rc1-1) ...
#14 28.77 Setting up python-xdg (0.25-4ubuntu1.1) ...
#14 29.06 Setting up python-idna (2.6-1) ...
#14 29.38 Setting up libpython-dev:amd64 (2.7.15~rc1-1) ...
#14 29.39 Setting up python-asn1crypto (0.24.0-1) ...
#14 29.71 Setting up python-crypto (2.6.1-8ubuntu2) ...
#14 30.06 Setting up python-dev (2.7.15~rc1-1) ...
#14 30.07 Setting up python-wheel (0.30.0-0.2) ...
#14 30.34 Setting up libpython-all-dev:amd64 (2.7.15~rc1-1) ...
#14 30.35 Setting up python-pkg-resources (39.0.1-2) ...
#14 30.72 Setting up python-cffi-backend (1.11.5-1) ...
#14 30.72 Setting up python-gi (3.26.1-2ubuntu1) ...
#14 31.02 Setting up python-six (1.11.0-2) ...
#14 31.29 Setting up python-enum34 (1.1.6-2) ...
#14 31.57 Setting up python-dbus (1.2.6-1) ...
#14 31.85 Setting up python-ipaddress (1.0.17-1) ...
#14 32.12 Setting up python-pip (9.0.1-2.3~ubuntu1.18.04.5) ...
#14 32.45 Setting up python-all (2.7.15~rc1-1) ...
#14 32.45 Setting up python-setuptools (39.0.1-2) ...
#14 32.81 Setting up python-keyrings.alt (3.0-1) ...
#14 33.09 Setting up python-all-dev (2.7.15~rc1-1) ...
#14 33.09 Setting up python-cryptography (2.1.4-1ubuntu1.4) ...
#14 33.43 Setting up python-secretstorage (2.3.1-2) ...
#14 33.70 Setting up python-keyring (10.6.0-1) ...
#14 33.97 Processing triggers for libc-bin (2.27-3ubuntu1.5) ...
#14 33.98 Processing triggers for mime-support (3.60ubuntu1) ...
#14 34.07 Reading package lists...
#14 35.16 Building dependency tree...
#14 35.36 Reading state information...
#14 35.58 The following additional packages will be installed:
#14 35.59   libbison-dev libfl-dev libfl2 libsigsegv2 m4
#14 35.59 Suggested packages:
#14 35.59   bison-doc flex-doc m4-doc
#14 35.62 The following NEW packages will be installed:
#14 35.62   bison flex libbison-dev libfl-dev libfl2 libsigsegv2 m4
#14 35.68 0 upgraded, 7 newly installed, 0 to remove and 24 not upgraded.
#14 35.68 Need to get 1150 kB of archives.
#14 35.68 After this operation, 3323 kB of additional disk space will be used.
#14 35.68 Get:1 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libsigsegv2 amd64 2.12-1 [14.7 kB]
#14 35.73 Get:2 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 m4 amd64 1.4.18-1 [197 kB]
#14 35.77 Get:3 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 flex amd64 2.6.4-6 [316 kB]
#14 35.80 Get:4 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libbison-dev amd64 2:3.0.4.dfsg-1build1 [339 kB]
#14 35.83 Get:5 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 bison amd64 2:3.0.4.dfsg-1build1 [266 kB]
#14 35.86 Get:6 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libfl2 amd64 2.6.4-6 [11.4 kB]
#14 35.86 Get:7 http://mirrors.sustech.edu.cn/ubuntu bionic/main amd64 libfl-dev amd64 2.6.4-6 [6320 B]
#14 35.99 debconf: delaying package configuration, since apt-utils is not installed
#14 36.02 Fetched 1150 kB in 0s (5146 kB/s)
#14 36.05 Selecting previously unselected package libsigsegv2:amd64.
(Reading database ... 30075 files and directories currently installed.)
#14 36.06 Preparing to unpack .../0-libsigsegv2_2.12-1_amd64.deb ...
#14 36.07 Unpacking libsigsegv2:amd64 (2.12-1) ...
#14 36.09 Selecting previously unselected package m4.
#14 36.09 Preparing to unpack .../1-m4_1.4.18-1_amd64.deb ...
#14 36.09 Unpacking m4 (1.4.18-1) ...
#14 36.13 Selecting previously unselected package flex.
#14 36.13 Preparing to unpack .../2-flex_2.6.4-6_amd64.deb ...
#14 36.13 Unpacking flex (2.6.4-6) ...
#14 36.18 Selecting previously unselected package libbison-dev:amd64.
#14 36.18 Preparing to unpack .../3-libbison-dev_2%3a3.0.4.dfsg-1build1_amd64.deb ...
#14 36.18 Unpacking libbison-dev:amd64 (2:3.0.4.dfsg-1build1) ...
#14 36.22 Selecting previously unselected package bison.
#14 36.22 Preparing to unpack .../4-bison_2%3a3.0.4.dfsg-1build1_amd64.deb ...
#14 36.23 Unpacking bison (2:3.0.4.dfsg-1build1) ...
#14 36.28 Selecting previously unselected package libfl2:amd64.
#14 36.28 Preparing to unpack .../5-libfl2_2.6.4-6_amd64.deb ...
#14 36.28 Unpacking libfl2:amd64 (2.6.4-6) ...
#14 36.30 Selecting previously unselected package libfl-dev:amd64.
#14 36.30 Preparing to unpack .../6-libfl-dev_2.6.4-6_amd64.deb ...
#14 36.31 Unpacking libfl-dev:amd64 (2.6.4-6) ...
#14 36.34 Setting up libsigsegv2:amd64 (2.12-1) ...
#14 36.35 Setting up m4 (1.4.18-1) ...
#14 36.35 Setting up libbison-dev:amd64 (2:3.0.4.dfsg-1build1) ...
#14 36.36 Setting up libfl2:amd64 (2.6.4-6) ...
#14 36.36 Setting up bison (2:3.0.4.dfsg-1build1) ...
#14 36.37 update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode
#14 36.37 update-alternatives: warning: skip creation of /usr/share/man/man1/yacc.1.gz because associated file /usr/share/man/man1/bison.yacc.1.gz (of link group yacc) doesn't exist
#14 36.37 Setting up flex (2.6.4-6) ...
#14 36.38 Setting up libfl-dev:amd64 (2.6.4-6) ...
#14 36.39 Processing triggers for install-info (6.5.0.dfsg.1-2) ...
#14 36.46 Processing triggers for libc-bin (2.27-3ubuntu1.5) ...
#14 36.66 checking build system type... x86_64-pc-linux-gnu
#14 36.73 checking host system type... x86_64-pc-linux-gnu
#14 36.73 checking target system type... x86_64-pc-linux-gnu
#14 36.73 checking for gcc... gcc
#14 36.73 checking for g++... g++
#14 36.73 checking for gcc... (cached) gcc
#14 36.76 checking whether the C compiler works... yes
#14 36.81 checking for C compiler default output file name... a.out
#14 36.81 checking for suffix of executables... 
#14 36.85 checking whether we are cross compiling... no
#14 36.89 checking for suffix of object files... o
#14 36.91 checking whether we are using the GNU C compiler... yes
#14 36.93 checking whether gcc accepts -g... yes
#14 36.95 checking for gcc option to accept ISO C89... none needed
#14 37.00 checking how to run the C preprocessor... gcc -E
#14 37.04 checking for grep that handles long lines and -e... /bin/grep
#14 37.05 checking for egrep... /bin/grep -E
#14 37.05 checking for ANSI C header files... yes
#14 37.16 checking for sys/types.h... yes
#14 37.20 checking for sys/stat.h... yes
#14 37.23 checking for stdlib.h... yes
#14 37.27 checking for string.h... yes
#14 37.31 checking for memory.h... yes
#14 37.35 checking for strings.h... yes
#14 37.39 checking for inttypes.h... yes
#14 37.43 checking for stdint.h... yes
#14 37.47 checking for unistd.h... yes
#14 37.51 checking for sys/types.h... (cached) yes
#14 37.52 checking for unistd.h... (cached) yes
#14 37.52 checking for stdint.h... (cached) yes
#14 37.53 checking for inttypes.h... (cached) yes
#14 37.54 checking for endian.h... yes
#14 37.58 checking for machine/endian.h... no
#14 37.62 checking for byteswap.h... yes
#14 37.67 checking for strings.h... (cached) yes
#14 37.67 checking for time.h... yes
#14 37.72 checking for termio.h... yes
#14 37.77 checking for netdb.h... yes
#14 37.82 checking for sys/event.h... no
#14 37.86 checking for pwd.h... yes
#14 37.90 checking for grp.h... yes
#14 37.94 checking for execinfo.h... yes
#14 37.99 checking for poll.h... yes
#14 38.03 checking for dlfcn.h... yes
#14 38.07 checking for sys/mman.h... yes
#14 38.12 checking for stdlib.h... (cached) yes
#14 38.13 checking for sys/param.h... yes
#14 38.17 checking for ifaddrs.h... yes
#14 38.22 checking for linux/if_tun.h... yes
#14 38.28 checking for net/if_dl.h... no
#14 38.32 checking for net/if_tap.h... no
#14 38.35 checking for net/if_tun.h... no
#14 38.39 checking for net/if_types.h... no
#14 38.43 checking for net/bpf.h... no
#14 38.46 checking for netpacket/packet.h... yes
#14 38.51 checking whether the C compiler accepts -W -Wall... yes
#14 38.53 checking whether the C compiler accepts -Werror... yes
#14 38.55 checking how to run the C preprocessor... gcc -E
#14 38.58 checking for inline... inline
#14 38.62 checking whether we are using the GNU C++ compiler... yes
#14 38.65 checking whether g++ accepts -g... yes
#14 38.67 checking whether <new> works... yes
#14 38.75 checking whether the C++ compiler understands 'auto'... yes
#14 38.78 checking whether the C++ compiler understands constexpr... yes
#14 38.80 checking whether the C++ compiler understands rvalue references... yes
#14 38.83 checking whether the C++ compiler understands static_assert... yes
#14 38.85 checking whether the C++ compiler understands template alias... yes
#14 38.87 checking whether the C++ compiler understands #pragma interface... yes
#14 38.90 checking how to run the C++ preprocessor... g++ -E
#14 38.95 checking for ar... ar
#14 38.95 checking for ld... ld
#14 38.95 checking for nm... nm
#14 38.96 checking for objcopy... objcopy
#14 38.96 checking for ranlib... ranlib
#14 38.96 checking for strip... strip
#14 38.99 checking whether we are compiling for Linux... yes
#14 39.02 checking for strerror... yes
#14 39.06 checking for random... yes
#14 39.11 checking for snprintf... yes
#14 39.16 checking for strnlen... yes
#14 39.21 checking for strtof... yes
#14 39.26 checking for strtold... yes
#14 39.30 checking for strtoul... yes
#14 39.35 checking for tcgetpgrp... yes
#14 39.40 checking for vsnprintf... yes
#14 39.45 checking size of int... 4
#14 39.53 checking size of long... 8
#14 39.62 checking size of size_t... 8
#14 39.70 checking size of ptrdiff_t... 8
#14 39.79 checking size of void *... 8
#14 39.87 checking whether char is unsigned... no
#14 39.92 checking whether machine is indifferent to alignment... yes
#14 40.00 checking size of long long... 8
#14 40.08 checking for long long... yes
#14 40.18 checking for int64_t... yes
#14 40.23 checking for uint64_t... yes
#14 40.28 checking whether long and int64_t are the same type... yes
#14 40.30 checking whether long long and int64_t are the same type... no
#14 40.33 checking whether byte ordering is bigendian... no
#14 40.41 checking whether signed right shift is arithmetic... yes
#14 40.43 checking for addressable va_list type... no
#14 40.45 checking for __builtin_clz... yes
#14 40.48 checking for __builtin_clzl... yes
#14 40.50 checking for __builtin_clzll... yes
#14 40.53 checking for __builtin_ffs... yes
#14 40.56 checking for __builtin_ffsl... yes
#14 40.59 checking for __builtin_ffsll... yes
#14 40.62 checking for __sync_synchronize... yes
#14 40.65 checking whether __sync_synchronize supports arguments... no
#14 40.67 checking for __has_trivial_copy... yes
#14 40.69 checking for __thread storage class support... yes
#14 40.73 checking for ffs... yes
#14 40.79 checking for ffsl... yes
#14 40.85 checking for ffsll... yes
#14 40.91 checking size of struct timeval... 16
#14 40.99 checking for struct timespec... yes
#14 41.09 checking size of struct timespec... 16
#14 41.18 checking whether clock_gettime is declared... yes
#14 41.21 checking for library containing clock_gettime... none required
#14 41.26 checking for clock_gettime... yes
#14 41.32 checking whether <poll.h> is emulated... no
#14 41.35 checking for pselect... yes
#14 41.40 checking for sigaction... yes
#14 41.46 checking for kqueue... no
#14 41.52 checking for dlopen in -ldl... yes
#14 41.57 checking whether linker accepts the -rdynamic flag... yes
#14 41.62 checking compiler flags for building loadable modules... -shared
#14 41.62 checking for library containing gethostbyname... none required
#14 41.66 checking for library containing connect... none required
#14 41.70 checking whether accept() uses socklen_t... yes
#14 41.73 checking for large file support in C library... yes
#14 41.77 checking size of off_t... 8
#14 41.82 checking for getpagesize... yes
#14 41.87 checking for working mmap... yes
#14 41.95 checking for madvise... yes
#14 42.01 checking whether madvise is declared... yes
#14 42.24 checking for pcap.h... not found
#14 42.25 checking for net/netmap.h... not found
#14 42.26 checking whether struct if_data has ifi_datalen... no
#14 42.29 checking whether struct sockaddr_in has sin_len... no
#14 42.32 checking expat.h usability... yes
#14 42.37 checking expat.h presence... yes
#14 42.38 checking for expat.h... yes
#14 42.38 checking for XML_ParserCreateNS in -lexpat... yes
#14 42.43 checking for a BSD-compatible install... /usr/bin/install -c
#14 42.44 checking whether install accepts -C... yes
#14 42.45 checking for GNU make... make
#14 42.45 checking for working autoconf... missing
#14 42.46 checking for perl5... no
#14 42.46 checking for perl... perl
#14 42.46 checking for gawk... no
#14 42.46 checking for mawk... mawk
#14 42.46 checking for grep that handles long lines and -e... (cached) /bin/grep
#14 42.46 checking for egrep... (cached) /bin/grep -E
#14 42.46 checking for md5sum... md5sum
#14 42.46 checking for working makeinfo... missing
#14 42.47 checking for working texi2dvi... missing
#14 42.47 checking for install-info... /usr/bin/install-info
#14 42.47 checking for working install-info... found
#14 42.47 checking for working pod2man... found
#14 42.57 configure: creating ./config.status
#14 42.67 config.status: creating Makefile
#14 42.68 config.status: creating bin/click-buildtool
#14 42.70 config.status: creating bin/click-compile
#14 42.71 config.status: creating installch
#14 42.73 config.status: creating share/click/config.mk
#14 42.75 config.status: creating share/click/pkg-config.mk
#14 42.76 config.status: creating doc/Makefile
#14 42.78 config.status: creating etc/libclick/Makefile
#14 42.80 config.status: creating tools/Makefile
#14 42.81 config.status: creating tools/lib/Makefile
#14 42.83 config.status: creating bsdmodule/Makefile
#14 42.85 config.status: creating linuxmodule/Makefile
#14 42.87 config.status: creating minios/Makefile
#14 42.88 config.status: creating minios/config.mk
#14 42.90 config.status: creating ns/Makefile
#14 42.92 config.status: creating userlevel/Makefile
#14 42.93 config.status: creating tools/click-align/Makefile
#14 42.95 config.status: creating tools/click-check/Makefile
#14 42.97 config.status: creating tools/click-combine/Makefile
#14 42.99 config.status: creating tools/click-devirtualize/Makefile
#14 43.01 config.status: creating tools/click-fastclassifier/Makefile
#14 43.02 config.status: creating tools/click-flatten/Makefile
#14 43.04 config.status: creating tools/click-install/Makefile
#14 43.06 config.status: creating tools/click-mkmindriver/Makefile
#14 43.08 config.status: creating tools/click-pretty/Makefile
#14 43.09 config.status: creating tools/click-undead/Makefile
#14 43.11 config.status: creating tools/click-xform/Makefile
#14 43.13 config.status: creating tools/click2xml/Makefile
#14 43.15 config.status: creating include/click/config.h
#14 43.16 config.status: creating include/click/pathvars.h
#14 43.17 config.status: creating include/click/config-bsdmodule.h
#14 43.19 config.status: creating include/click/config-linuxmodule.h
#14 43.20 config.status: creating include/click/config-ns.h
#14 43.21 config.status: creating include/click/config-userlevel.h
#14 43.22 config.status: creating include/click/config-minios.h
#14 43.27 cd . && ./missing autoconf
#14 43.27 /bin/bash: ./missing: Permission denied
#14 43.28 make: *** [configure] Error 126
#14 43.28 Makefile:166: recipe for target 'configure' failed
------
executor failed running [/bin/sh -c apt-get update &&    apt-get -y install net-tools &&    apt-get install psmisc &&    apt-get -y install gdb &&    apt-get -y install tcpdump &&    apt-get -y install build-essential &&    apt-get -y install python python-pip &&    apt-get -y install bison flex &&    cd /home/click &&    chmod +x ./mkinstalldirs &&    chmod +x ./configure &&    ./configure --enable-local &&    make elemlist &&    make install]: exit code: 2
MacZhong:docker_setup zhongfantasty$ 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.