Questions tagged [alpine]

Alpine Linux is a Linux distribution that prides itself on being small, simple, and secure. Alpine Linux is a common choice for running inside Docker containers.

Alpine Linux (https://alpinelinux.org/) is a Linux distribution that prides itself on being small, simple, and secure. Alpine Linux is a common choice for running inside Docker containers.

92 questions
0
votes
1 answer

Configure persistent wireguard network interface

I have configured Wireguard VPN on Alpine Linux 3.16.2. Manual server and client configuration works fine. uname -mrs # Linux 5.15.60-0-virt aarch64 ip link add dev wg0 type wireguard ip address add dev wg0 10.0.0.4/8 wg setconf wg0…
Alexander
  • 105
  • 4
0
votes
0 answers

on alpine linux, failing to install terraform modules of gcp, how to fix that?

I am trying to run on a docker image of alpine. Configured all the tools also in it and the public docker image is: docker run -it udayprojectn/alpinegcloud:1.0 /bin/bash When I ran terraform init, I am getting google cloud specific module install…
0
votes
0 answers

alpine vagrant image not connecting, how to fix that?

I tried using this image, https://app.vagrantup.com/alpine/boxes/alpine64 But, not connecting at the end, VM is showing as running in the virtualbox, but vagrant ssh command is not connecting. I observer, username vagrant and without password it is…
0
votes
1 answer

Run script after booting Alpine netboot

I have download alpine netboot distribution from this url: https://dl-cdn.alpinelinux.org/alpine/v3.16/releases/x86/alpine-netboot-3.16.1-x86.tar.gz I have run a virtual machine with qemu this way: qemu-system-i386 -m 256 -kernel boot/vmlinuz-lts…
Bob5421
  • 337
  • 2
  • 8
  • 13
0
votes
0 answers

Share a host folder to an alpine image running in qemu

I have try to run an alpine Linux in an emulated environment this way: $ wget https://dl-cdn.alpinelinux.org/alpine/v3.16/releases/x86/alpine-netboot-3.16.1-x86.tar.gz I have untar the archive and run: qemu-system-i386 -m 256 -kernel…
Bob5421
  • 337
  • 2
  • 8
  • 13
0
votes
0 answers

How can I add host.docker.internal to the trusted root certificate in an Alpine Linux container?

I'm using Alpine Linux via Docker. I want to make an HTTPS connection to host.docker.internal. There is a service on the host machine that can be reached via localhost:8443 on the host machine. I want to connect to this same service from the…
0
votes
0 answers

Configure Website Names on LLighttpd Alpine Linux

It has been a long time since I have done any hosting on Linux, and it that was on CentOS and Apache. I am working on creating some sites on an Alpine server running Lighttpd. Reviewing the config file for Adminer, I could add my sites as a…
Andrew
  • 209
  • 3
  • 9
0
votes
0 answers

Why linux-mint host is unable to ping a alpine vm?

I an alpine vm running inside virtualbox I have set up 2 network interfaces: eth0: a nat interface eth1: a host only one Guest network config (alpine VM) The /etc/network/interfaces have: auto lo iface lo inet loopback auto eth0 iface eth0 inet…
Dimitrios Desyllas
  • 523
  • 2
  • 10
  • 27
0
votes
0 answers

apk command to find which package installs a program? [Alpine Linux]

I want to install program /usr/bin/time using Alpine Linux package manager apk (time is a program runtime measurement tool). But I don't know which package to install. apk search time reports 147 matches. How do I narrow down apk search to a…
JamesThomasMoon
  • 633
  • 2
  • 5
  • 23
0
votes
1 answer

EBS root volume being mounted on /media/xvda instead of / (Alpine Linux)

I followed these instructions to install Alpine Linux on EC2. Everything went well and I was able to create an AMI from which I can launch new instances. My instance is supposed to act like a NAT Gateway. I, then, enabled net.ipv4.ip_forward and…
0
votes
1 answer

SSH server refuses multiple connections from same client

I have a simple openssh server running in a Alpine Linux 3.15 Docker container, and a client, also running on another Docker container (same version of Alpine of the server) that runs a X server with dwm The client is able to open a graphical…
henriquehbr
  • 113
  • 7
0
votes
0 answers

How to install cgroup tools on Alpine Linux

I need to install the control group tools on Alpine Linux; on some distros there is a cgroup-tools package or equivalent, but not on Alpine Linux. I have looked for the a package containing any cg* file on the contents pane at…
hstr
  • 143
  • 7
0
votes
0 answers

SASL PLAIN authentication failed: bad protocol / cancel

I try to configure postfix relay in kubernetes on Alpine using saslauthd. Dockerfile: FROM alpine:3.15 RUN apk update && \ apk add --no-cache postfix \ libsasl \ cyrus-sasl \ cyrus-sasl-login \ cyrus-sasl-plain \ …
john
  • 1
  • 1
0
votes
1 answer

PAM permit works only when dummy suffix is added

I am trying to use PAM to authenticate OpenVPN against 2FA (not important info). Here is my PAM configuration: account required pam_permit.so auth required pam_google_authenticator.so secret=/etc/openvpn/google-authenticator/${USER}…
Mohammed Noureldin
  • 491
  • 1
  • 9
  • 24
0
votes
2 answers

Permissions of /dev/null wrong in KVM guest

My host node is RHEL7 running KVM from the 'updates' repo. On the host node, the permissions for /dev/null are: crw-rw-rw-. 1 root root 1, 3 Dec 18 04:45 /dev/null In an Alpine KVM guest (5.14, but same behavior on other versions), the permissions…
tater
  • 1,395
  • 2
  • 9
  • 12