60,650 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
54
views
Hive Metastore Standalone Java version incompatibility
I have recently donwloaded a standalone hive metastore binary distrubution. I am also running an Apache Hadoop instance on the same machine, and Hive seems to recognize Hadoop. However, when trying to ...
-2
votes
0
answers
42
views
php8.3.29 Ubuntu 24.04 can't install bcmath [closed]
I don't understand the dependency problem. PHP8.3-common is installed but version 8.3.29
I can't understand why it seems to be asking for 8.3.6
root@choir:~# php -v
PHP 8.3.29 (cli) (built: Dec 18 ...
-3
votes
0
answers
38
views
Netplan: ens20 loses internet connectivity when bond0 (active-backup) interfaces go down [closed]
I am configuring a Linux server (Ubuntu/Proxmox) with three network interfaces using Netplan. My goal is to have two interfaces (ens18, ens19) bonded in active-backup mode managed by networkd, and a ...
0
votes
0
answers
79
views
`btvirt` (virtualized BlueTooth) with TrouBLE [closed]
Desired behavior
Have the central make a connection with the peripheral.
The "trouBLE" I run in to
The central code returns directly a BleHost(Timeout) error, even with adjusted settings
I'...
2
votes
1
answer
59
views
Vite build tool will not recognize and compile changes to source files unless I restart the Vite server
I am running an Ubuntu VM on a MacBook. The server is Nginx, the framework is Laravel, Vite is the default engine for front end development. I have configured the Vite server and it starts up, '...
2
votes
0
answers
61
views
'JavaPackage' object is not callable error when trying to getOrCreate() local spark session
I have set up a small Xubuntu machine with intention of making it my single-node playaround Spark cluster. The cluster seems to be set up correctly - I can access the WebUI at port 8080, it shows a ...
0
votes
1
answer
118
views
jupiter on ubuntu 25.10 .Modify packages of System Python is forbidden. To modify use another interpreter
Steps to reproduce:
Run via pycharm jupyter file:
from transformers import AutoTokenizer
OS:
Ubuntu 25.10
Jupyter version:
jupyter --version
Selected Jupyter core packages...
IPython : 9.8....
0
votes
0
answers
94
views
Ubuntu VS Code Remote ssh connection failed
Today I used the VS Code plugin Remote-ssh to connect to the server in Ubuntu 22.04. However, it failed after I prompted the password and clicked Enter.
I have tried:
changing the setting of Remote-...
-1
votes
0
answers
91
views
Can't find segmentation fault coredump on ubuntu docker image
I'm using eclipse-temurin-17 which is based on Ubuntu (and starting it with podman)
The java application (spring boot) I'm starting is having a segmentation fault (core dumped) error.
However, I've ...
-1
votes
1
answer
70
views
Different .NET 8 runtime behaviour based on different SDK used [closed]
Opening bounty for wierd behaviour of .NET SDK/runtime. DotNet team remains silent
https://github.com/dotnet/sdk/issues/38325
Reproducible sample:
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
...
1
vote
0
answers
95
views
Collecting dotnet-dump on WSL when process is stuck at GC.WaitForPendingFinalizers();
I am working on a .NET 8 server side application which is deployed on Ubuntu 22.04.5 as a service (using systemctl). As part of application shutdown, it calls GC.WaitForPendingFinalizers(); (legacy ...
2
votes
0
answers
100
views
How to adjust the position and size of CEF browser in Linux?
I embedded CEF into QT and initialized it successfully, but I am helpless on how to modify the size and position.
I used the latest version of CEF compilation:
cef_binary_142.0.17+g60aac24+chromium-...
0
votes
2
answers
75
views
Swift Package Manager hangs on incremental builds (Swift 6.2, Linux Ubuntu 24.04)
I'm experiencing an issue where Swift Package Manager hangs indefinitely during incremental builds on Linux with Swift 6.2.
Environment
Swift: 6.2 (swift-6.2-RELEASE)
OS: Ubuntu 24.04.3 LTS
Kernel: ...
2
votes
1
answer
62
views
GRUB audit script always fails on Ubuntu even after remediation (AppArmor parameters not detected)
I am trying to implement a CIS hardening rule on Ubuntu that requires every GRUB linux entry to include:
apparmor=1
security=apparmor
Audit script
#!/bin/bash
if grep "^\s*linux" /boot/grub/...
-1
votes
0
answers
100
views
NginX is failing to properly redirect to my node.js, although if I go to the IP:port directly, it works
NginX's .conf file:
server {
listen 80;
listen [::]:80;
root /home/myUsername/serverDirectory;
index index.html index.htm;
server_name my.domain.name;
...