10,205 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
0
replies
62
views
HPE MCP debian repo key expired
There is a HPE repository for supporting HPE Proliant servers on Debian.
Unfortunately, the signing repo key has expired earlier this month, and even it seems to be a new key, as the release file is ...
0
votes
1
answer
32
views
Ensure my scripts stops the service before the system does [closed]
I am trying to implement a shutdown hook on my Debian machine, in which I want to stop a service before the system does (besides other steps).
This is my pre-shutdown.service placed under /etc/systemd/...
-3
votes
0
answers
17
views
Debian container won't connect to openremotessh [closed]
I'm attempting to create a debian development based on this guide:
https://howtos.davidsebek.com/vscodium-containers.html
I have the container up and running, I can ssh into it and it's running like a ...
-2
votes
0
answers
96
views
Obtaining the /usr/lib/x86_64-linux-gnu directory "portably" on Linux/Debian
On a Debian/x86-64/Sid I need to add at link time (using -rpath or else $LD_LIBRARY_PATH) the /usr/lib/x86_64-linux-gnu/ directory, and I want that to be portable to other 64 bit architectures having ...
-1
votes
1
answer
78
views
future module in debian
I want to use this app. As it is mentioned in the README.md it needs the future module of python. I have debian sid and python3-future is removed from the repos of apt. When I install it via its setup....
0
votes
2
answers
38
views
mariadb debian-start script giving errors: ERROR 1146 (42S02) at line 1: Table '_cdfd7a1251c20c3e.tabError' doesn't exist
I'm getting a number of these errors printed in the systemd journal when i restart mariadb:
Nov 07 17:56:05 p2 /etc/mysql/debian-start[8427]: --------------
Nov 07 17:56:05 p2 /etc/mysql/debian-start[...
-4
votes
1
answer
280
views
Delete a file from one PC to another on the LAN
I use Java 17 on Debian 12.12 and I need to delete a file that resides on another PC in LAN, also with Debian 12.12.
This is my test program:
package filedelete;
import com.hierynomus.smbj.SMBClient;
...
2
votes
0
answers
27
views
How to prevent tmux-resurrect from printing empty lines after restore?
The problem
In tmux, I use the tmux-resurrect and tmux-continuum plugins. They work perfectly fine otherwise, but after an automatic or manual save, when I start the server again, empty lines with my ...
1
vote
0
answers
71
views
Docker build fails with random "Hash Sum mismatch" errors on macOS
I'm trying to build a docker image on my Mac, but it fails at installing some linux deps. I think it's all pretty standard, and it works for my colleagues, on CI/CD (details below)
Relevant part:
FROM ...
2
votes
1
answer
90
views
"Forbidden You Dont Have Permission to access this Resource" config problem on Apache.conf
My Debian10 server wentdown and I've been trying to install all my pages and Apache2 server on another Debian (Debian 12).
I've already take all the bkps of the pages and put them in the exact same ...
0
votes
1
answer
149
views
VSCode DevContainer in linux doesn't recognize Docker, or the packages installed during build
I have a devcontainer set up as a work environment on Debian 13. Until recently, it was working perfectly fine, but recently I started getting error messages like this:
Once I was already inside the ...
1
vote
1
answer
90
views
python virtualenv without losing apt-installed modules
How can I create a python Virtual ENVironment (venv) such that the new venv has all of the python modules that are already installed on my system (with apt)?
π Note: It's much more secure to install ...
1
vote
0
answers
91
views
git push and clone hang indefinitely using ssh
I am using git to host a LaTeX paper I'm writing on both my desktop and laptop. However, it has recently stopped working on the latter. One morning, I was able to clone and push over SSH just fine, ...
0
votes
0
answers
30
views
Missing libpcl_in_hand_scanner.so, libpcl_modeler.so and libpcl_point_cloud_editor.so in Debian13 after downloading libpcl-dev
I am using apt::libpcl-dev with xmake.
# xmake.lua
add_rules("mode.debug","mode.release")
add_requires("apt::libpcl-dev", {configs = {vtk=true, system = true}})
...
0
votes
0
answers
72
views
OpenCvSharp4 in Debian 13 (bookworm) throws DllNotFoundException
Steps to reproduce
In Visal Studio create .NET 9 console application.
Add OpenCvSharp 4 Windows and Linux nuGet packages:
Create program.cs file:
using OpenCvSharp;
using Mat src = new Mat();
...