Questions tagged [debian-buster]

Buster is the development codename for Debian 10.

261 questions
3
votes
1 answer

Cannot install certbot with Snap method

Following the instruction from certbot website. https://snapcraft.io/docs/installing-snap-on-debian I have got an error when i use this command > sudo snap install core error: system does not fully support snapd: cannot mount squashfs image using…
Gary Houbre
  • 857
  • 8
  • 24
3
votes
1 answer

AWS: error while creating AMI from a debian 10 iso - Unsupported kernel version

We have a custom Debian10 (buster) ISO and want to create an AMI using this iso. We followed the steps from AWS documentation Importing a VM as an image using VM Import/Export but getting the below error : ClientError: Unsupported kernel version…
Sathish
  • 101
  • 7
3
votes
1 answer

zlib1g-dev is already installed but shows ModuleNotFoundError: No module named 'zlib'

In my Debian 10 OS, I have several Python versions as 2.7, 3.7 and 3.8. For Python 3.8, pip did not work(no module name pip) and I tried to install pip for Python 3.8 with 'sudo python3.8 get-pip.py' and it showed below error. Traceback (most recent…
Vidu VDS
  • 62
  • 9
3
votes
1 answer

Toggling the Wi-Fi with XF86WLAN and script

I have the following script (in my PATH): #!/usr/bin/env bash main() { local state=$(sudo rfkill list wifi -n -o SOFT) if [[ $state == 'blocked' ]] then sudo rfkill unblock wifi state='Unblocked' else sudo rfkill…
Bobby Wan-Kenobi
  • 885
  • 9
  • 18
3
votes
2 answers

Getting Error: JavaFX runtime components are missing, and are required to run this application while opening executable jar

I've build executable jar using NetBeans IDE 11.0 but when I open jar using : hemlata@hemlata-pc:~/NetBeansProjects/Sizing/dist$ java -jar Sizing.jar I'm getting Error: JavaFX runtime components are missing, and are required to run this…
Hemlata
  • 367
  • 1
  • 3
  • 13
3
votes
1 answer

How to install pandas and numpy on Debian Buster?

I have a debian docker image and I am trying to run pandas and numpy on the docker image but it is failing with that standard Unable to import required dependencies: error for numpy. What I am doing in the ENTRYPOINT script is downloading packaged…
vfrank66
  • 1,318
  • 19
  • 28
3
votes
2 answers

Cannot connect to the Docker daemon on debian buster on wsl 2

I am trying to install docker on Windows Subsystem for Linux (WSL) 2 (running on Windows Home build 19033.1). I installed wsl2 as per the instructions at https://learn.microsoft.com/en-us/windows/wsl/wsl2-install and installed debian from the…
jamiet
  • 10,501
  • 14
  • 80
  • 159
3
votes
1 answer

How to setup Selenium with headless Firefox on Raspbian Buster

I have gotten this to work in Jessie/Stretch with previous Firefox versions but can't seem to get it to work with Raspberry Pi 3B or 4 running Raspbian Buster and the latest Selenium, 3.141.0 in Python. Since iceweasel is no longer available I…
Pathead
  • 717
  • 10
  • 24
3
votes
1 answer

Docker PHP7 CLI Debian Buster how to install package php-imagick?

I have a PHP-CLI Docker image of Debian Buster and would like to install php-imagick package but with command: Dockerfile: RUN apt-get install -y php-imagick I get an error: Package php-imagick is not available, but is referred to by another …
Jimmix
  • 5,644
  • 6
  • 44
  • 71
3
votes
1 answer

Pygame display init on headless Raspberry Pi Zero (Raspbian Buster Lite)

I have Pi Zero running Raspbian Buster Lite, there's no display attached. It runs a python program at startup (crontab @reboot entry), something like this: @reboot sudo su username /home/username/launcher.sh >> /home/username/crontab.log 2>&1 I have…
Passiday
  • 7,573
  • 8
  • 42
  • 61
3
votes
3 answers

Downgrade Python 3.7 to 3.5 on Raspbian Buster

So it seems like Buster comes default with 2.7 on load and an alternate 3.7 version of Python. However, I am using this Raspberry Pi 3 B+ just for an application that is only compatible with Python 3.5. How do run Python 3.5 as default version or…
Stigma
  • 331
  • 1
  • 4
  • 15
2
votes
2 answers

How can I run dotnet CLI commands inside a running container?

I have a running container called tami-app. The Dockerfile is based on a .NET 5 SDK: FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build WORKDIR /Tami.Operations.Api COPY src/Tami.Operations.Domain/Tami.Operations.Domain.csproj…
2
votes
1 answer

'mix: command not found' error when installing Erlang/Elixir using asdf

Fast summery: Installed Erlang/Elixir using asdf in Debian 11. Getting 'mix command not found' errors. Tried: Checked compatibility: https://hexdocs.pm/elixir/master/compatibility-and-deprecations.html#erlang-otp-compatibility. Erlang 24.2.1 &…
Emily
  • 2,129
  • 3
  • 18
  • 43
2
votes
1 answer

ERROR: file.whl is not a supported wheel on this platform

I am trying to create my own docker image containing tensorflow. My Dockerfile looks like this: FROM python:3.7.9-buster as python-base RUN apt-get --allow-releaseinfo-change update && apt-get install -y unixodbc-dev FROM python-base as…
Jaroslav Bezděk
  • 6,967
  • 6
  • 29
  • 46
2
votes
0 answers

How to debug using QEMU in Debian 10

Here is my program: #include int main(void) { printf("Hello world\n"); return 0; } That's how I compile it aarch64-linux-gnu-gcc -O0 -g3 main.c I started the a.out like this: qemu-aarch64-static -L /usr/aarch64-linux-gnu…
Pavel.Zh
  • 437
  • 3
  • 15
1 2
3
17 18