298 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
38
views
Trying to run googlesamples-assistant-pushtotalk results in syntax error after hours of meddling
I'm building a smart mirror that (hopefully) uses google-cloud-console to integrate google assistant to a raspberry pi for voice command. google-assistant-pushtotalk required a python version <=3....
0
votes
0
answers
39
views
Galera Cluster (on GMD Gui need a refence cmd to Recover Cluster)
Under the cluster Galera Manager Daemon (gmd) gui dropdown there is the Recover Cluster option as shown in the image this work fine but requires me to manually press it:
Recover Cluster Button
What is ...
0
votes
1
answer
62
views
df1py3 import not working in debian linux
I have Ubuntu and Raspberry Pi OS machines that I am trying to use to talk with Allen-Bradley PLCs using df1 protocol. There is a python import aptly called df1py3 that can communicate with these PLCs,...
0
votes
1
answer
155
views
Unable to record audio in GCP debian VM
I have been stuck to record audio in a debian vitual machine. uname -a gives: configuration is - 5.10.0-31-cloud-amd64 #1 SMP Debian 5.10.221-1 (2024年07月14日) x86_64 GNU/Linux. I have installed pulse ...
1
vote
0
answers
393
views
Solving libsvtav1enc1d1 conflict on Debian 12
The package doesn't let itself remove itself and doesn't let itself be properly installed what is the problem?
sudo apt install libsvtav1enc1d1 Paketlisten werden gelesen... Fertig Abhängigkeitsbaum ...
0
votes
1
answer
267
views
debian based docker build image not finding apt while building from CI/CD alpine based dind image
So I've been building my image for a while now locally with out any problem:
FROM python:3.12-slim
RUN apt update
{...}
Now I wanted to automate the deployment of this image so I setup my gitlab-ci....
2
votes
2
answers
5k
views
Re-enable apt on TrueNAS Scale [closed]
TrueNAS Scale is Debian-based NAS.
However, apt and dpkg managers are disabled by default (for the security reasons).
Sometimes, advanced users needs to install additional utilities using the packet ...
0
votes
1
answer
395
views
Unable to use Alsaeq with Snapclient, but speaker-test works
I have installed alsaequal on a Raspberry Pi 4 B+ running Raspian and Snapclient (Linux snapclient 6.1.21-v8+ #1642 SMP PREEMPT Mon Apr 3 17:24:16 BST 2023 aarch64 GNU/Linux).
When I run:
speaker-...
-1
votes
1
answer
222
views
NodeJS Segmentation fault while starting server,js
I made a change to my server.js file today and pushed it to GitHub and then synchronized it on my server with "git stash --all" and "gh repo sync". Because I also had changes ...
4
votes
1
answer
1k
views
Use wlr-randr from a second user
I'm trying to automate turning my display on and off from the console as a second user (homebridge) on my system. I've been using wlr-randr (more specifically wlr-randr --output HDMI-A-1 --on/off) to ...
0
votes
2
answers
62
views
file.read() UnicodeDecodeError - Devuan Daedalus (Debian 12 w/o systemd)
I have a Python script written by my friend for text substitution which works in his system Ubuntu Focal.
The following is the script:
#!/usr/bin/env python3
"""
Script Name: ...
1
vote
1
answer
2k
views
Can not build and install Python 3.12 on Pop
I'm trying to install Python 3.12 on Pop! OS 22.04LTS. During make test, it fails 2 tests out of 40+k tests. During sudo make install, everything works until I get the error "cannot stat 'Modules/...
0
votes
1
answer
91
views
Issues with .NET's configuration json serialization on a Raspberry Pi 4B with Raspbian (Debian 11)
I am writing a custom C# console program targeting .net 7.0 and running on a Raspberry Pi 4B with Rasbian after being published self-contained targeting ARM64. There is 1 property of my configuration ...
1
vote
0
answers
43
views
Find Debian service or daemon based on output text
Someone implemented a poorly designed service or daemon on a Debian production machine.
It is sporadically killing a background worker when it thinks RAM usage is too high with kill -15
However, it ...
1
vote
2
answers
2k
views
Different docker base when building and deploying
I'm using dockerized node, and in order to minimize the image as much as possible, I'm mixing between bookworm (Debian 12) and Alpine, in the following way:
FROM node:18.17.1-bookworm-slim AS build
...