Questions tagged «alpine-linux»

4
如何解决Linux Alpine上的“ tar:无效魔术”错误
我正在Alpine Linux上安装sqlite。我下载了sqlite-autoconf-3130000.tar.gz但tar无法打开它。我尝试了这个答案,但是没有用。tar给出此消息: tar: invalid magic tar: short read 我写了这些命令。 wget https://www.sqlite.org/2015/sqlite-autoconf-3090100.tar.gz tar -zxvf sqlite-autoconf-3090100.tar.gz
22 tar  alpine-linux 

3
为什么Linux网络流量仅通过eth0?
我在服务器端有两个网卡eth0?192.168.8.140和eth1吗?192.168.8.142。客户端将数据发送到192.168.8.142,我希望iftop显示eth1的流量,但不会。所有网络都通过eth0,那么如何测试两个NIC? 为什么所有流量都经过eth0而不是eth1?我希望每个接口可以得到1 Gbit / s。我的设置或配置出了什么问题? 服务器 ifconfig eth0 Link encap:Ethernet HWaddr 00:00:00:19:26:B0 inet addr:192.168.8.140 Bcast:0.0.0.0 Mask:255.255.252.0 inet6 addr: 0000::0000:0000:fe19:26b0/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:45287446 errors:0 dropped:123343 overruns:2989 frame:0 TX packets:3907747 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:66881007720 (62.2 GiB) TX bytes:261053436 (248.9 MiB) Memory:f7e00000-f7efffff eth1 …


3
“ date -d”命令在Docker Alpine Linux容器上失败
我使用以下Dockerfile 在Docker容器中构建了Alpine Linux: FROM alpine:3.2 RUN apk add --update jq curl && rm -rf /var/cache/apk/* 构建成功运行: $ docker build -t collector . Sending build context to Docker daemon 2.048 kB Sending build context to Docker daemon Step 0 : FROM alpine:3.2 3.2: Pulling from alpine 8697b6cc1f48: Already exists alpine:3.2: The …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.