Restore boot to Lynux https://askubuntu.com/questions/1564558/restore-boot-to-lynux

My system has 5 drives. I had a working Ubuntu system on one disk. Then used a Win10 install USB added a Win10 to a different drive. When I loaded a Live Ubuntu USB, my existing Linux had dissapeared - to be found on it's original drive but no boot. It was set up with games and other good stuff and I need help to try and return it to being the Linux boot drive.

Cannot mount my C: drive https://askubuntu.com/questions/1564557/cannot-mount-my-c-drive

I want to make dual boot on my PC: Windows/Ubuntu. Before I did so, I have tested Ubuntu from an USB stick. When I try to mount the C: drive, I get this error message:

Failed to mount "Windows-SSD"
Error mounting/dev/nvme0n1p3 at /media/ubuntu/Windows-SSD
Wrong fs type bad option, bad superblock on /dev/nvme0n1p3, missing codepage or helper program, or other error

When I check the drive in Windows, it appears as a simple NTFS filesystem with no problems.

Any Idea what can be wrong?

I want to be able to share file across the operating systems. Should I make an additional partition?

Ubuntu 24.04 - HID works only with sudo despite udev rule https://askubuntu.com/questions/1564556/ubuntu-24-04-hid-works-only-with-sudo-despite-udev-rule

INFO:

  • Linux Ubuntu 24.04.4 LTS
  • Python - lib: hid
  • SteelSeries Nova 5

I made a program that communicates with my headphones through HID, but I can only run it with sudo. I tried changing the device access rules to 0660, 0666, and other values recommended online by creating a new udev rule and adding it to plugdev (since my user is in that group).

I also tried making it accessible to everyone and directly to my user, but nothing worked. The permissions look correct, yet it still requires sudo to run.

When I plug in the device, these show up. I only use one interface, but in the end I tried moding all of them just to be sure:

/dev/hidraw9  
/dev/hidraw10  
/dev/hidraw11

When I check permissions, it looks fine:

crw-rw---- 1 root plugdev

This is the new rule I tried (without specifying the interface at the endt, to match all):

SUBSYSTEM=="hidraw", ATTRS{idVendor}=="1038", ATTRS{idProduct}=="2232", ATTRS{bInterfaceNumber}=="03", MODE="0660", GROUP="plugdev"

I tried both restarting the system and running:

sudo udevadm control --reload  
sudo udevadm trigger

But it did not work.

Error:

# python
import hid

...

shome_device.open_path(the_path) # -> open failed

...

When I run it with sudo, everything works correctly and as expected.

Lexy

resolute repository to upgrade to the latest podman https://askubuntu.com/questions/1564555/resolute-repository-to-upgrade-to-the-latest-podman

I'm having problems with all my podman containers, I can't run applications that are sending processes to the GPU (for example ComfyUI). It worked before but now if doesn't work anymore across all of my contrainers

So I want to do is to upgrade my version of podman.

matthew@matthew-big-tower:/$ lsb_release -a                                                                                       
No LSB modules are available.                                                                                                       
Distributor ID: Ubuntu                                                                                                              
Description:    Ubuntu 25.04                                                                                                        
Release:        25.04                                                                                                               
Codename:       plucky                                                                                                              
matthew@matthew-big-tower:/$ podman --version
podman version 5.4.1                   

Now I have discovered https://packages.ubuntu.com/resolute/podman has podman (5.7.0+ds2-3) [universe] but this is the next version of Ubuntu.

Can I already add the repository although that version of Ubuntu isn't out for another month?

What is the exact URL for the repository which I need to use in my add repository command?

Is there anything I haven't thought of, like are there any problems for the rest of my system with adding the repository for the lastest version of Ubuntu a month before the release?

Ubuntu 24.04 doesn't see my TrekStor external HDD https://askubuntu.com/questions/1564551/ubuntu-24-04-doesnt-see-my-trekstor-external-hdd

I had a PC with Ubuntu 20.04 and another with Ubuntu 22.04. I used to save my data on two external HDDs, exchanging them on the two PCs: A 2TB Toshiba and a 0,5TB TrekStor, both formatted as NTFS/exFAT/HPFS (the only difference is that the Toshiba one shows as "bootable" while the TrekStor doesn't).

A few days ago my Ubuntu 20.04 had a bag and then I installed UBUNTU 24.04. After that, it doesn't work with the TrekStor drive showing an error udisks-error-quark,0. Then I run Disks in order to repair the file system, with success. But nevertheless, now I receive error mounting - no such file or directory.

Please note the PC with the Ubuntu 22.04 still sees both external HDDs. It seems to be a Ubuntu 24.04 mounting problem.

Question: Has the Ubuntu 24.04 different requirements for disk formatting or mounting? Other reasons?

Sound not working on a Beelink GK Mini using a TV AOC Roku as monitor after installing Kernel 6.17 https://askubuntu.com/questions/1564550/sound-not-working-on-a-beelink-gk-mini-using-a-tv-aoc-roku-as-monitor-after-inst

I have Kubuntu 24.04.3 LTS installed with Ubuntu Pro (ESM), and ever since the Kernel updated from version 6.14 to 6.17, I haven't been able to play sound on the TV I use as a monitor. My setup is simple: a Beelink GK Mini connected to an AOC Roku TV. I had to pin the Kernel to 6.14.0-37 through GRUB to use the computer normally, but this is far from an ideal situation. Is anyone else having a similar problem?

Can't install VirtualBox in Ubuntu 24.04 https://askubuntu.com/questions/1564547/cant-install-virtualbox-in-ubuntu-24-04

I got these error messages when trying to install VirtualBox in Ubuntu 24.04:

ERROR: Cannot create report: [Errno 17] File exists: '/var/crash/virtualbox-dkms.0.crash'
Error! Bad return status for module build on kernel: 6.17.0-14-generic (x86_64)
Consult /var/lib/dkms/virtualbox/7.0.16/build/make.log for more information.
dpkg: error processing package virtualbox-dkms (--configure):
 installed virtualbox-dkms package post-installation script subprocess returned error exit status 10
Errors were encountered while processing:
 virtualbox-dkms
E: Sub-process /usr/bin/dpkg returned an error code (1)

I'm new to Ubuntu, so please go easy on me.

Linux "system()" function and signals (specifically ^C) https://askubuntu.com/questions/1564546/linux-system-function-and-signals-specifically-c

So I have a C++ command-line program that's using the Linux "system()" function to run things like ffmpeg. (I happen to be running kubuntu - the problem exists in ancient and recent versions - and in C as well as C++).

Program works great - but I can't control-C to kill it. Seems like the signal is either being eaten by the program running inside system() - or something similar.

A super-simple program to demonstrate this (I'm using bash/ubuntu) is as follows...

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main ()
{
  while ( true )
  {
    system ( "ls -l" ) ;   // Something mundane that consumes some time.
    fprintf(stderr, "Still running!\n" ) ;
  }
}

WARNING: If you're going to run it - you'll probably have to resort to a "kill" command from another window.

Presumably - the program running within system() is being killed by the ^C - which is not propagated up to my parent script. If you add a 'sleep(5)' into the loop - you can kill it 99% of the time because the 'ls -l' isn't running when you do it.

Is there some kind of signal() magic that'll fix this?

update-initramfs fails with return code 137 https://askubuntu.com/questions/1564545/update-initramfs-fails-with-return-code-137

I have a Ubuntu server vm on VMware with version 24.04 LTS and I'm having issues with upgrading packages when update-initramfs is involved. It always exits with error code 137. Usually this indicates that the system runs out of memory but there is plenty of memory available during the upgrade. There is also enough space on /boot available (around 700MB).

My question is: Where can I find more information about why the process was killed and maybe what can I do about it?

Where I've already looked without any result:

  • dmesg (no 'killed' or 'out of memory' messages)
  • /var/log/syslog
  • /var/log/apt/term.log (found 'Killed' like in the output down below but no reason why)

The usual output of apt upgrade:

update-initramfs: Generating /boot/initrd.img-6.8.0-101-generic
Killed
update-initramfs: failed for /boot/initrd.img-6.8.0-101-generic with 137.
dpkg: error processing package initramfs-tools (--configure):
 installed initramfs-tools package post-installation script subprocess returned error exit status 137
Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)

I've also boiled it down to the command mkinitramfs -o /tmp/test.img -k $(uname -r) which I can run repeatedly and it always get's killed after some seconds.

The only thing that works is when I restart the machine and perform the upgrade right after the reboot. After some minutes of uptime the error comes back.

Some maybe useful stats:

$ ulimit -a
real-time non-blocking time  (microseconds, -R) unlimited
core file size              (blocks, -c) 0
data seg size               (kbytes, -d) unlimited
scheduling priority                 (-e) 0
file size                   (blocks, -f) unlimited
pending signals                     (-i) 257261
max locked memory           (kbytes, -l) 8242800
max memory size             (kbytes, -m) unlimited
open files                          (-n) 1024
pipe size                (512 bytes, -p) 8
POSIX message queues         (bytes, -q) 819200
real-time priority                  (-r) 0
stack size                  (kbytes, -s) 8192
cpu time                   (seconds, -t) unlimited
max user processes                  (-u) 257261
virtual memory              (kbytes, -v) unlimited
file locks                          (-x) unlimited
$ df -h -x tmpfs /boot /tmp
Filesystem                  Size  Used Avail Use% Mounted on
/dev/sda1                   944M  199M  697M  23% /boot
/dev/mapper/sysvg-data_vol   63G   74M   60G   1% /tmp
$ free -h
               total        used        free      shared  buff/cache   available
Mem:            62Gi       2.4Gi        56Gi        19Mi       4.9Gi        60Gi
Swap:          1.9Gi          0B       1.9Gi
$ uname -a
Linux ... 6.8.0-101-generic #101-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb  9 10:15:05 UTC 2026 x86_64 x86_64 x86_64 GNU/Linux

Any inspiration on where to look for the real problem is welcome. Thank you all.

Power drain in Ubuntu 24.04 is much more than in Windows https://askubuntu.com/questions/1564540/power-drain-in-ubuntu-24-04-is-much-more-than-in-windows

I'm currently facing the issue of power-hungry Ubuntu. I have a Lenovo LOQ RTX4050 laptop. I have a dual boot of Windows + Ubuntu 24.04) on this laptop. When I'm in Ubuntu 24.04 the energy rate while discharging (without battery power plugged in or cooling pad) is in the range of ~20-25W while being idle or light browsing, whereas when doing the same when I boot into Windows and do in the WSL Ubuntu it says ~1-3W.

I checked everything. The refresh rate is set to 60Hz, the NVIDIA drivers (nvidia-smi) are disabled and UMA graphics are selected from the boot screen, it's on power save + quiet mode (blue on LOQ), and the brightness in Ubuntu is also 30%-40%.

I saw data from htop, and after 2-3 minutes of monitoring I came to understand that Gnome and the default Firefox (snap package) are the real CPU users, but how do I solve this problem?

My battery on Ubuntu drains from 100% to 10% in ~45-55 minutes.

The command I used is this: upower -i /org/freedesktop/UPower/devices/battery_BAT1 | grep energy-rate

24.04 + kernel 6.17 + latest linux-firmware => problematic bluetooth and wifi https://askubuntu.com/questions/1564536/24-04-kernel-6-17-latest-linux-firmware-problematic-bluetooth-and-wifi

I have a Lenovo ThinkPad T14s Gen 6 (AMD) running Ubuntu 24.04.4. After upgrading to kernel 6.17 and the latest linux-firmware yesterday, I still have Wifi connection but there are some other Wireless issues.

  1. My laptop can only discover 2.4G networks. At home I have a dual-band router, but only the 2.4G one is listed.

  2. My MX Master 3S becomes super laggy via bluetooth connection. (It works fine with the bolt connector.)

I am staying on 6.14 for now, where all the problems above don't exist. Any ideas on how to solve these issues? Thanks in advance.

> sudo lshw -class network

  *-network
       description: Ethernet interface
       product: WCN785x Wi-Fi 7(802.11be) 320MHz 2x2 [FastConnect 7800]
       vendor: Qualcomm Technologies, Inc
       physical id: 0
       bus info: pci@0000:c2:00.0
       logical name: wlp194s0
       version: 01
       serial: f4:4e:b4:b3:bb:73
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical
       configuration: broadcast=yes driver=ath12k_pci driverversion=6.14.0-37-generic firmware=N/A ip=10.130.79.53 latency=0 link=yes multicast=yes
       resources: irq:140 memory:b0600000-b07fffff
  *-network
       description: Ethernet interface
       physical id: f
       bus info: usb@8:1.3.1
       logical name: enx8c47be01dbea
       serial: 8c:47:be:01:db:ea
       capacity: 1Gbit/s
       capabilities: ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8152 driverversion=v1.12.13 duplex=half firmware=rtl8153b-2 v2 04/27/23 link=no multicast=yes port=MII
> lspci

c2:00.0 Network controller: Qualcomm Technologies, Inc WCN785x Wi-Fi 7(802.11be) 320MHz 2x2 [FastConnect 7800] (rev 01)

With kernel 6.14.0:

> sudo nmcli -f ALL dev wifi
NAME    SSID                        SSID-HEX                                              BSSID              MODE   CHAN  FREQ      RATE        BANDWIDTH  SIGNAL  BARS  SECURITY   WPA-FLAGS                           RSN-FLAGS                           DEVICE    ACTIVE  IN-USE  DBUS-PATH                                        
AP[3]   cycc-2.4G                   637963632D322E3447                                    E4:60:4D:27:FD:F0  Infra  6     2437 MHz  270 Mbit/s  20 MHz     100     ▂▄▆█  WPA2 WPA3  (none)                              pair_ccmp group_ccmp psk sae        wlp194s0  no              /org/freedesktop/NetworkManager/AccessPoint/2945 
AP[7]   ChinaNet-zbFD               4368696E614E65742D7A624644                            10:B3:6F:0D:C3:18  Infra  11    2462 MHz  195 Mbit/s  20 MHz     79      ▂▄▆_  WPA2       (none)                              pair_ccmp group_ccmp psk            wlp194s0  no              /org/freedesktop/NetworkManager/AccessPoint/2953 
AP[8]   cycc                        63796363                                              E4:60:4D:27:FD:F1  Infra  48    5240 MHz  405 Mbit/s  160 MHz    79      ▂▄▆_  WPA2 WPA3  (none)                              pair_ccmp group_ccmp psk sae        wlp194s0  yes     *       /org/freedesktop/NetworkManager/AccessPoint/2910 
AP[11]  ChinaNet-zbFD-5G            4368696E614E65742D7A6246442D3547                      10:B3:6F:0D:C3:1C  Infra  157   5785 MHz  405 Mbit/s  80 MHz     55      ▂▄__  WPA2       (none)                              pair_ccmp group_ccmp psk            wlp194s0  no              /org/freedesktop/NetworkManager/AccessPoint/2947 
> iw reg get
global
country 00: DFS-UNSET
        (755 - 928 @ 2), (N/A, 20), (N/A), PASSIVE-SCAN
        (2402 - 2472 @ 40), (N/A, 20), (N/A)
        (2457 - 2482 @ 20), (N/A, 20), (N/A), AUTO-BW, PASSIVE-SCAN
        (2474 - 2494 @ 20), (N/A, 20), (N/A), NO-OFDM, PASSIVE-SCAN
        (5170 - 5250 @ 80), (N/A, 20), (N/A), AUTO-BW, PASSIVE-SCAN
        (5250 - 5330 @ 80), (N/A, 20), (0 ms), DFS, AUTO-BW, PASSIVE-SCAN
        (5490 - 5730 @ 160), (N/A, 20), (0 ms), DFS, PASSIVE-SCAN
        (5735 - 5835 @ 80), (N/A, 20), (N/A), PASSIVE-SCAN
        (57240 - 63720 @ 2160), (N/A, 0), (N/A)

phy#0 (self-managed)
country 00: DFS-UNSET
        (2402 - 2472 @ 40), (N/A, 20), (N/A)
        (2457 - 2482 @ 20), (N/A, 20), (N/A), PASSIVE-SCAN
        (5170 - 5330 @ 160), (N/A, 20), (N/A), AUTO-BW, PASSIVE-SCAN
        (5490 - 5730 @ 160), (N/A, 20), (N/A), AUTO-BW, PASSIVE-SCAN
        (5735 - 5895 @ 160), (N/A, 20), (N/A), AUTO-BW, PASSIVE-SCAN
Why is my Settings Menu popping up on its own? https://askubuntu.com/questions/1564535/why-is-my-settings-menu-popping-up-on-its-own

Ubuntu 25.10 Linux 6.17.0-14-generic Gnome 49

It pops up on its own at least once an hour now.

I could not find where to send notifications to Ubuntu on this

Text Editor Spaces per Tab setting is not working https://askubuntu.com/questions/1564516/text-editor-spaces-per-tab-setting-is-not-working

I am using Text Editor 46.3 in Ubuntu 24.04. I prefer to keep the "Spaces per Tab" setting at 4, however even after changing the setting, I still get 2 spaces per tab.

Is this a glitch or am I missing something?

Edit: I just realized, this issue is there only for some document types. I checked for C, C++, and Java document types, and for all of them the Spaces per tab setting seems to be ignored and is always 2 (and is also always 4 for Python, but unlike other languages mentioned, Python always needs to have that). The setting works as expected for Plain Text type.

Errors when trying to update Ubuntu 24.04.4 https://askubuntu.com/questions/1564469/errors-when-trying-to-update-ubuntu-24-04-4

First time poster looking for help with errors while attempting to update. The system seems to be stable and running fine, however I am just experiencing problems with updates and deciphering the logs. The results appear to be the same whether using the software updater or the command line. It may be a compatibility issue between kernel versions, but I have no idea why and how to recover from this situation.

System details: Ubuntu 24.04.4 LTS, Kernel 6.14.0-37-generic running on an AMD Ryzen 7 8745HS.

Error logs:

$:/var/log/apt$ sudo apt update
Hit:1 http://gb.archive.ubuntu.com/ubuntu noble InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu noble-updates InRelease                  
Hit:3 http://gb.archive.ubuntu.com/ubuntu noble-backports InRelease                
Hit:4 http://security.ubuntu.com/ubuntu noble-security InRelease                   
Hit:5 https://repo.protonvpn.com/debian stable InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up-to-date.
N: Ignoring file 'virtualbox.list.temp' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
$:/var/log/apt$ sudo apt-get upgrade -y
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.
6 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
* synosnap dpkg pre hook check
dumping distro info
Setting up linux-image-6.17.0-14-generic (6.17.0-14.14~24.04.1) ...
Setting up linux-headers-6.17.0-14-generic (6.17.0-14.14~24.04.1) ...
/etc/kernel/header_postinst.d/dkms:
 * dkms: running auto installation service for kernel 6.17.0-14-generic
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Running the pre_build script:
generating configurations for kernel-6.17.0-14-generic
performing configure test: HAVE_BIO_BI_BDEV - not present
performing configure test: HAVE_BIO_ALLOC_BIOSET_5 - not present
performing configure test: HAVE_BDEV_FREEZE - not present
performing configure test: HAVE_BDEV_OPEN_BY_PATH - not present
performing configure test: HAVE_BDOPS_OPEN_INT - not present
performing configure test: HAVE_BDEVNAME - not present
performing configure test: HAVE_BDEV_STACK_LIMITS - not present
performing configure test: HAVE_ALLOC_DISK - not present
performing configure test: HAVE_BD_HAS_SUBMIT_BIO - not present
performing configure test: HAVE_BIO_BI_BDEV_BD_DISK - not present
performing configure test: HAVE_BD_SUPER - not present
performing configure test: HAVE_BDOPS_OPEN_GENDISK - not present
performing configure test: HAVE_BIO_ALLOC_2 - not present
performing configure test: HAVE_BIO_BI_OPF - not present
performing configure test: HAVE_BDOPS_SUBMIT_BIO - not present
performing configure test: HAVE_BDOPS_OPEN_INODE - not present
performing configure test: HAVE_BIO_BI_POOL - not present
performing configure test: HAVE_BIO_ENDIO_1 - not present
performing configure test: HAVE_BIO_BLKG - not present
performing configure test: HAVE_BIO_FREE_PAGES - not present
performing configure test: HAVE_BIO_LIST - not present
performing configure test: HAVE_BIO_REMAPPED - not present
performing configure test: HAVE_BIO_FOR_EACH_SEGMENT_ALL_2 - not present
performing configure test: HAVE_BIO_BI_REMAINING - not present
performing configure test: HAVE_BIOSET_INIT - not present
performing configure test: HAVE_BIOSET_NEED_BVECS_FLAG - not present
performing configure test: HAVE_BIO_ENDIO_INT - not present
performing configure test: HAVE_BIO_COPY_DEV - not present
performing configure test: HAVE_BIO_FOR_EACH_SEGMENT_ALL_1 - not present
performing configure test: HAVE_BIO_SET_DEV - not present
performing configure test: HAVE_BIO_SET_OP_ATTRS - not present
performing configure test: HAVE_BIOSET_CREATE_3 - not present
performing configure test: HAVE_BLK_ALLOC_DISK - not present
performing configure test: HAVE_BIO_THROTTLED - not present
performing configure test: HAVE_BLK_ALLOC_QUEUE_1 - not present
performing configure test: HAVE_BLK_ALLOC_QUEUE_MK_REQ_FN_NODE_ID - not present
performing configure test: HAVE_BLK_ALLOC_QUEUE_2 - not present
performing configure test: HAVE_BLKDEV_GET_BY_PATH - not present
performing configure test: HAVE_BLK_ALLOC_QUEUE_RH_2 - not present
performing configure test: HAVE_BLKDEV_GET_BY_PATH_4 - not present
performing configure test: HAVE_BLK_CLEANUP_QUEUE - not present
performing configure test: HAVE_BLK_MQ_MAKE_REQUEST - not present
performing configure test: HAVE_BLK_MQ_SUBMIT_BIO - not present
performing configure test: HAVE_BVEC_ITER_ALL - not present
performing configure test: HAVE_BLKDEV_PUT_1 - not present
performing configure test: HAVE_BLKDEV_PUT_HOLDER - not present
performing configure test: HAVE_BLK_STATUS_T - not present
performing configure test: HAVE_BLK_SET_STACKING_LIMITS - not present
performing configure test: HAVE_BVEC_ITER - not present
performing configure test: HAVE___DENTRY_PATH - not present
performing configure test: HAVE_COMPOUND_HEAD - not present
performing configure test: HAVE_BVEC_MERGE_DATA - not present
performing configure test: HAVE_DENTRY_PATH_RAW - not present
performing configure test: HAVE_ENUM_REQ_OPF - not present
performing configure test: HAVE_FMODE_T - not present
performing configure test: HAVE_D_UNLINKED - not present
performing configure test: HAVE_ENUM_REQ_OP - not present
performing configure test: HAVE_FILE_INODE - not present
performing configure test: HAVE_FTRACE_REGS - not present
performing configure test: HAVE_FREEZE_SB - not present
performing configure test: HAVE_GD_OWNS_QUEUE - not present
performing configure test: HAVE_GENHD_FL_NO_PART_SCAN - not present
performing configure test: HAVE_GENHD_FL_NO_PART - not present
performing configure test: HAVE_FOPS_FALLOCATE - not present
performing configure test: HAVE_IOPS_FALLOCATE - not present
performing configure test: HAVE_INODE_LOCK - not present
performing configure test: HAVE_HD_STRUCT - not present
performing configure test: HAVE_GET_SUPER - not present
performing configure test: HAVE_KERNEL_READ_PPOS - not present
performing configure test: HAVE_MAKE_REQUEST_FN_IN_QUEUE - not present
performing configure test: HAVE_KERNEL_WRITE_PPOS - not present
performing configure test: HAVE_KERN_PATH - not present
performing configure test: HAVE_MERGE_BVEC_FN - not present
performing configure test: HAVE_MAKE_REQUEST_FN_INT - not present
performing configure test: HAVE_MNT_IDMAP_ARGS - not present
performing configure test: HAVE_MAKE_REQUEST_FN_VOID - not present
performing configure test: HAVE_NONVOID_ADD_DISK - not present
performing configure test: HAVE_NOOP_LLSEEK - not present
performing configure test: HAVE_NONVOID_SUBMIT_BIO_1 - not present
performing configure test: HAVE_MNT_WANT_WRITE - not present
performing configure test: HAVE_PATH_PUT - not present
performing configure test: HAVE_PROC_CREATE - not present
performing configure test: HAVE_NOTIFY_CHANGE_2 - not present
performing configure test: HAVE_SB_START_WRITE - not present
performing configure test: HAVE_PROC_OPS - not present
performing configure test: HAVE_PART_NR_SECTS_READ - not present
performing configure test: HAVE_STRSCPY - not present
performing configure test: HAVE_SUBMIT_BIO_WAIT - not present
performing configure test: HAVE_SUBMIT_BIO_1 - not present
performing configure test: HAVE_SYS_OLDUMOUNT - not present
performing configure test: HAVE_THAW_BDEV_INT - not present
performing configure test: HAVE_TASK_STRUCT_TASK_WORKS_CB_HEAD - not present
performing configure test: HAVE_STRUCT_PATH - not present
performing configure test: HAVE_USER_NAMESPACE_ARGS - not present
performing configure test: HAVE_TASK_STRUCT_TASK_WORKS_HLIST - not present
performing configure test: HAVE_UAPI_MOUNT_H - not present
performing configure test: HAVE_VFS_FALLOCATE - not present
performing configure test: HAVE_UUID_H - not present
performing configure test: HAVE_USER_PATH_AT - not present
performing configure test: HAVE_VZALLOC - not present
performing configure test: HAVE_VFS_UNLINK_2 - not present
performing configure test: HAVE_WRITE_ZEROES - not present
performing configure test: HAVE_WITHIN_MODULE - not present
performing sys_mount lookup
performing sys_umount lookup
performing sys_oldumount lookup
performing sys_call_table lookup
performing blk_mq_submit_bio lookup
performing blk_alloc_queue lookup
performing kfree lookup
performing printk lookup
performing x64_sys_call lookup
performing __x64_sys_mount lookup
performing __x64_sys_umount lookup
performing __arm64_sys_mount lookup
performing __arm64_sys_umount lookup
performing __x64_sys_mount_setattr lookup
performing __x64_sys_move_mount lookup
performing __x64_sys_fsconfig lookup
performing __arm64_sys_mount_setattr lookup
performing __arm64_sys_move_mount lookup
performing __arm64_sys_fsconfig lookup
performing namespace_sem lookup

Building module:
Cleaning build area...
make -j16 KERNELRELEASE=6.17.0-14-generic -C /lib/modules/6.17.0-14-generic/build M=/var/lib/dkms/synosnap/0.11.6/build KVER=6.17.0-14-generic modules...(bad exit status: 2)
ERROR (dkms apport): binary package for synosnap: 0.11.6 not found
Error! Bad return status for module build on kernel: 6.17.0-14-generic (x86_64)
Consult /var/lib/dkms/synosnap/0.11.6/build/make.log for more information.
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Building module:
Cleaning build area...
make -j16 KERNELRELEASE=6.17.0-14-generic -C /lib/modules/6.17.0-14-generic/build M=/var/lib/dkms/virtualbox/7.0.16/build...(bad exit status: 2)
ERROR: Cannot create report: [Errno 17] File exists: '/var/crash/virtualbox-dkms.0.crash'
Error! Bad return status for module build on kernel: 6.17.0-14-generic (x86_64)
Consult /var/lib/dkms/virtualbox/7.0.16/build/make.log for more information.
dkms autoinstall on 6.17.0-14-generic/x86_64 failed for synosnap(10) virtualbox(10)
Error! One or more modules failed to install during autoinstall.
Refer to previous errors for more information.
 * dkms: autoinstall for kernel 6.17.0-14-generic
   ...fail!
run-parts: /etc/kernel/header_postinst.d/dkms exited with return code 11
dpkg: error processing package linux-headers-6.17.0-14-generic (--configure):
 installed linux-headers-6.17.0-14-generic package post-installation script subprocess returned error exit status 11
Setting up linux-headers-6.8.0-101-generic (6.8.0-101.101) ...
/etc/kernel/header_postinst.d/dkms:
 * dkms: running auto installation service for kernel 6.8.0-101-generic
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Running the pre_build script:
* System map at /boot/System.map-6.8.0-101-generic does not contain valid symbol table, and 
* we are trying to install synosnap driver for a differnt kernel than the one currently running.
* Synosnap driver will encounter error during installation.
* We will try to install/build driver when next booting into new kernel.
* After rebooting into the new kernel, if the backup process still fails,
* please uninstall and reinstall Active Backup for Business Linux Agent.

Building module:
Cleaning build area...
make -j16 KERNELRELEASE=6.8.0-101-generic -C /lib/modules/6.8.0-101-generic/build M=/var/lib/dkms/synosnap/0.11.6/build KVER=6.8.0-101-generic modules...(bad exit status: 2)
ERROR (dkms apport): binary package for synosnap: 0.11.6 not found
Error! Bad return status for module build on kernel: 6.8.0-101-generic (x86_64)
Consult /var/lib/dkms/synosnap/0.11.6/build/make.log for more information.
dkms autoinstall on 6.8.0-101-generic/x86_64 succeeded for virtualbox
dkms autoinstall on 6.8.0-101-generic/x86_64 failed for synosnap(10)
Error! One or more modules failed to install during autoinstall.
Refer to previous errors for more information.
 * dkms: autoinstall for kernel 6.8.0-101-generic
   ...fail!
run-parts: /etc/kernel/header_postinst.d/dkms exited with return code 11
dpkg: error processing package linux-headers-6.8.0-101-generic (--configure):
 installed linux-headers-6.8.0-101-generic package post-installation script subprocess returned error exit status 11
dpkg: dependency problems prevent configuration of linux-headers-generic-hwe-24.04:
 linux-headers-generic-hwe-24.04 depends on linux-headers-6.17.0-14-generic; however:
  Package linux-headers-6.17.0-14-generic is not configured yet.

dpkg: error processing package linux-headers-generic-hwe-24.04 (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates it's a follow-up error from a previous failure.
                                                                                                            No apport report written because MaxReports has already been reached
                                                                                                                                                                                dpkg: dependency problems prevent configuration of linux-headers-generic:
 linux-headers-generic depends on linux-headers-6.8.0-101-generic; however:
  Package linux-headers-6.8.0-101-generic is not configured yet.

dpkg: error processing package linux-headers-generic (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of linux-generic-hwe-24.04:
 linux-generic-hwe-24.04 depends on linux-headers-generic-hwe-24.04 (= 6.17.0-14.14~24.04.1); however:
  Package linux-headers-generic-hwe-24.04 is not configured yet.

dpkg: error processing package linux-generic-hwe-24.04 (--configure):
 dependency problems - leaving unconfigured
No apport report written because MaxReports has already been reached
                                                                    Processing triggers for linux-image-6.17.0-14-generic (6.17.0-14.14~24.04.1) ...
/etc/kernel/postinst.d/dkms:
 * dkms: running auto installation service for kernel 6.17.0-14-generic
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Running the pre_build script:
generating configurations for kernel-6.17.0-14-generic
performing configure test: HAVE_BDOPS_SUBMIT_BIO - not present
performing configure test: HAVE_BDOPS_OPEN_INODE - not present
performing configure test: HAVE_BIO_BI_BDEV - not present
performing configure test: HAVE_BDEV_STACK_LIMITS - not present
performing configure test: HAVE_BIO_BI_OPF - not present
performing configure test: HAVE_BDEV_FREEZE - not present
performing configure test: HAVE_BD_HAS_SUBMIT_BIO - not present
performing configure test: HAVE_BDOPS_OPEN_GENDISK - not present

{some items removed here to get within body character limit}

performing configure test: HAVE_WRITE_ZEROES - not present
performing sys_mount lookup
performing sys_umount lookup
performing sys_oldumount lookup
performing sys_call_table lookup
performing blk_mq_submit_bio lookup
performing blk_alloc_queue lookup
performing kfree lookup
performing printk lookup
performing x64_sys_call lookup
performing __x64_sys_mount lookup
performing __x64_sys_umount lookup
performing __arm64_sys_mount lookup
performing __arm64_sys_umount lookup
performing __x64_sys_mount_setattr lookup
performing __x64_sys_move_mount lookup
performing __x64_sys_fsconfig lookup
performing __arm64_sys_mount_setattr lookup
performing __arm64_sys_move_mount lookup
performing __arm64_sys_fsconfig lookup
performing namespace_sem lookup

Building module:
Cleaning build area...
make -j16 KERNELRELEASE=6.17.0-14-generic -C /lib/modules/6.17.0-14-generic/build M=/var/lib/dkms/synosnap/0.11.6/build KVER=6.17.0-14-generic modules...(bad exit status: 2)
ERROR (dkms apport): binary package for synosnap: 0.11.6 not found
Error! Bad return status for module build on kernel: 6.17.0-14-generic (x86_64)
Consult /var/lib/dkms/synosnap/0.11.6/build/make.log for more information.
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Building module:
Cleaning build area...
make -j16 KERNELRELEASE=6.17.0-14-generic -C /lib/modules/6.17.0-14-generic/build M=/var/lib/dkms/virtualbox/7.0.16/build...(bad exit status: 2)
ERROR: Cannot create report: [Errno 17] File exists: '/var/crash/virtualbox-dkms.0.crash'
Error! Bad return status for module build on kernel: 6.17.0-14-generic (x86_64)
Consult /var/lib/dkms/virtualbox/7.0.16/build/make.log for more information.
dkms autoinstall on 6.17.0-14-generic/x86_64 failed for synosnap(10) virtualbox(10)
Error! One or more modules failed to install during autoinstall.
Refer to previous errors for more information.
 * dkms: autoinstall for kernel 6.17.0-14-generic
   ...fail!
run-parts: /etc/kernel/postinst.d/dkms exited with return code 11
dpkg: error processing package linux-image-6.17.0-14-generic (--configure):
 installed linux-image-6.17.0-14-generic package post-installation script subprocess returned error exit status 11
No apport report written because MaxReports has already been reached
                                                                    Errors were encountered while processing:
 linux-headers-6.17.0-14-generic
 linux-headers-6.8.0-101-generic
 linux-headers-generic-hwe-24.04
 linux-headers-generic
 linux-generic-hwe-24.04
 linux-image-6.17.0-14-generic
* synosnap dpkg post hook check
dumping distro info
compare distro info
check for file trigger
N: Ignoring file 'virtualbox.list.temp' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
E: Sub-process /usr/bin/dpkg returned an error code (1)

Update - I have tried to remove the Synology synosnap package but this fails with similar errors:

$ sudo apt-get purge --auto-remove synosnap
[sudo] password for steve: 
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED
  synosnap*
0 to upgrade, 0 to newly install, 1 to remove and 0 not to upgrade.
5 not fully installed or removed.
After this operation, 1,292 MB disk space will be freed.
N: Ignoring file 'virtualbox.list.temp' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
Do you want to continue? [Y/n] y
* synosnap dpkg pre hook check
dumping distro info
(Reading database ... 265747 files and directories currently installed.)
Removing synosnap (0.11.7) ...
removed '/usr/share/initramfs-tools/hooks/synosnap'
removed '/usr/share/initramfs-tools/scripts/init-premount/synosnap'
Found synosnap installed by dkms in the following kernel versions: 6.14.0-37-generic 6.17.0-14-generic 6.8.0-101-generic
Start updating initrd and try to remove backup initrd for these kernel versions...
Configuring update-initramfs for 6.14.0-37-generic, please wait...
update-initramfs: Generating /boot/initrd.img-6.14.0-37-generic
Removing old backup initrd /boot/initrd.img-6.14.0-37-generic.old-syno
removed '/boot/initrd.img-6.14.0-37-generic.old-syno'
Module synosnap-0.11.7 for kernel 6.8.0-101-generic (x86_64).
Before uninstall, this module version was ACTIVE on this kernel.

synosnap.ko:
 - Uninstallation
   - Deleting from: /lib/modules/6.8.0-101-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.
depmod...
Module synosnap-0.11.7 for kernel 6.14.0-37-generic (x86_64).
Before uninstall, this module version was ACTIVE on this kernel.

synosnap.ko.zst:
 - Uninstallation
   - Deleting from: /lib/modules/6.14.0-37-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.
depmod...
Module synosnap-0.11.7 for kernel 6.17.0-14-generic (x86_64).
Before uninstall, this module version was ACTIVE on this kernel.

synosnap.ko.zst:
 - Uninstallation
   - Deleting from: /lib/modules/6.17.0-14-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.
depmod...
Deleting module synosnap-0.11.7 completely from the DKMS tree.
Setting up linux-image-6.17.0-14-generic (6.17.0-14.14~24.04.1) ...
Setting up linux-headers-6.17.0-14-generic (6.17.0-14.14~24.04.1) ...
/etc/kernel/header_postinst.d/dkms:
 * dkms: running auto installation service for kernel 6.17.0-14-generic
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Running the pre_build script:
generating configurations for kernel-6.17.0-14-generic
performing configure test: HAVE_BDEV_FREEZE - not present
performing configure test: HAVE_BDOPS_OPEN_INODE - not present

{some items removed here to get within body character limit}

performing x64_sys_call lookup
performing __x64_sys_mount lookup
performing __x64_sys_umount lookup
performing __arm64_sys_mount lookup
performing __arm64_sys_umount lookup
performing __x64_sys_mount_setattr lookup
performing __x64_sys_move_mount lookup
performing __x64_sys_fsconfig lookup
performing __arm64_sys_mount_setattr lookup
performing __arm64_sys_move_mount lookup
performing __arm64_sys_fsconfig lookup
performing namespace_sem lookup

Building module:
Cleaning build area...
make -j16 KERNELRELEASE=6.17.0-14-generic -C /lib/modules/6.17.0-14-generic/build M=/var/lib/dkms/synosnap/0.11.6/build KVER=6.17.0-14-generic modules...(bad exit status: 2)
ERROR (dkms apport): binary package for synosnap: 0.11.6 not found
Error! Bad return status for module build on kernel: 6.17.0-14-generic (x86_64)
Consult /var/lib/dkms/synosnap/0.11.6/build/make.log for more information.
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Building module:
Cleaning build area...
make -j16 KERNELRELEASE=6.17.0-14-generic -C /lib/modules/6.17.0-14-generic/build M=/var/lib/dkms/virtualbox/7.0.16/build...(bad exit status: 2)
ERROR: Cannot create report: [Errno 17] File exists: '/var/crash/virtualbox-dkms.0.crash'
Error! Bad return status for module build on kernel: 6.17.0-14-generic (x86_64)
Consult /var/lib/dkms/virtualbox/7.0.16/build/make.log for more information.
dkms autoinstall on 6.17.0-14-generic/x86_64 failed for synosnap(10) virtualbox(10)
Error! One or more modules failed to install during autoinstall.
Refer to previous errors for more information.
 * dkms: autoinstall for kernel 6.17.0-14-generic
   ...fail!
run-parts: /etc/kernel/header_postinst.d/dkms exited with return code 11
dpkg: error processing package linux-headers-6.17.0-14-generic (--configure):
 installed linux-headers-6.17.0-14-generic package post-installation script subprocess returned error exit status 11
dpkg: dependency problems prevent configuration of linux-headers-generic-hwe-24.04:
 linux-headers-generic-hwe-24.04 depends on linux-headers-6.17.0-14-generic; however:
  Package linux-headers-6.17.0-14-generic is not configured yet.

dpkg: error processing package linux-headers-generic-hwe-24.04 (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of linux-generic-hwe-24.04:
 linux-generic-hwe-24.04 depends on linux-headers-generic-hwe-24.04 (= 6.17.0-14.14~24.04.1); however:
  Package linux-headers-generic-hwe-24.04 is not configured yet.

dpkg: error processing package linux-generic-hwe-24.04 (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates it's a follow-up error from a previous failure.
                                                                                                            No apport report written because the error message indicates it's a follow-up error from a previous failure.
                                                                                                Errors were encountered while processing:
 linux-headers-6.17.0-14-generic
 linux-headers-generic-hwe-24.04
 linux-generic-hwe-24.04
sh: 1: /opt/synosnap/hooks/dpkg-post-hook.sh: not found
E: Sub-process /usr/bin/dpkg returned an error code (1)
E: Problem executing scripts DPkg::Post-Invoke '/opt/synosnap/hooks/dpkg-post-hook.sh'
E: Sub-process returned an error code

Further update on steps to fix:
sudo dpkg --purge --force-all linux-image-6.17.0-14-geneic linux-headers-6.17.0-14-generic
sudo apt remove linux-image-generic-hwe-24.04 linux-headers-generic-hwe-24.04 linux-generic-hwe-24.04
sudo apt --fix-broken install
sudo apt autoremove
sudo apt install linux-image-generic linux-headers-generic
sudo update-grub
reboot
How to install UGREEN AX900 USB WiFi adapter? https://askubuntu.com/questions/1564377/how-to-install-ugreen-ax900-usb-wifi-adapter

I have the same problem as described in previous question when installing the same WiFi adapter. I have followed the instructions exactly, but the driver installation fails.

Here is the output from lsusb.

paul@paul-Lenovo-IdeaPad-Yoga-13:~$ lsusb  
..  
Bus 003 Device 007: ID a69c:8d80 aicsemi AIC Wlan  
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub  
..  

Here is some of the output the output from the dpkg command:

$ sudo dpkg -i CM762/Linux/linux_driver_package/aic8800d80fdrvpackage.deb >ax900install.txt  
[sudo] password for paul:   
rmmod: ERROR: Module aic8800_fdrv is not currently loaded  
rmmod: ERROR: Module aic_load_fw is not currently loaded  
/bin/sh: 1: test: -lt: unexpected operator  
/bin/sh: 1: test: -lt: unexpected operator  
make[1]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.  
warning: the compiler differs from the one used to build the kernel  
  The kernel was built by: x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0  
  You are using:           gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04.1) 13.3.0  
make[5]: warning: -j4 forced in makefile: resetting jobserver mode.  
aic_load_fw/aicbluetooth.c:259:5: warning: no previous prototype for ‘aic_crc32’ [-Wmissing-prototypes]  
  259 | u32 aic_crc32(u8 *p, u32 len, u32 crc)  
      |     ^~~~~~~~~  
aic_load_fw/aicbluetooth.c: In function ‘rwnx_plat_flash_bin_upload_android’:  
aic_load_fw/aicbluetooth.c:760:15: warning: conversion from ‘long unsigned int’ to ‘u32’ {aka ‘unsigned int’} changes value from ‘18446744073709551615’ to ‘4294967295’ [-Woverflow]   
  760 |     u32 crc = ~0UL;  
      |               ^  
aic_load_fw/aicbluetooth.c: At top level:  
aic_load_fw/aicbluetooth.c:900:6: warning: no previous prototype for ‘get_fw_path’ [-Wmissing-prototypes]  
  900 | void get_fw_path(char* fw_path){  
      |      ^~~~~~~~~~~  
.. 
Lots of Wmissing-prototypes messages.  
..   
aic8800_fdrv/rwnx_wakelock.c:15:12: warning: assignment to ‘struct wakeup_source *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]  
   15 |         ws = wakeup_source_create(name);  
      |            ^  
aic8800_fdrv/rwnx_msg_rx.c: In function ‘rwnx_rx_scanu_result_ind’:  
aic8800_fdrv/rwnx_msg_rx.c:792:29: warning: the comparison will always evaluate as ‘true’ for the address of ‘bssid’ will never be NULL [-Waddress]
  792 |                 if (!bss || !bss->bssid) {  
      |                             ^  
In file included from aic8800_fdrv/rwnx_defs.h:20,  
                 from aic8800_fdrv/rwnx_msg_rx.c:14:  
/usr/src/linux-headers-6.17.0-14-generic/include/net/cfg80211.h:3091:12: note: ‘bssid’ declared here  
 3091 |         u8 bssid[ETH_ALEN];  
      |            ^~~~~  
aic8800_fdrv/rwnx_msg_rx.c:797:68: warning: the comparison will always evaluate as ‘true’ for the address of ‘bssid’ will never be NULL [-Waddress]  
  797 |                         if (!scan_re_wext || !scan_re_wext->bss || !scan_re_wext->bss->bssid) {  
      |                                                                    ^  
/usr/src/linux-headers-6.17.0-14-generic/include/net/cfg80211.h:3091:12: note: ‘bssid’ declared here  
 3091 |         u8 bssid[ETH_ALEN];  
      |            ^~~~~  


aic8800_fdrv/rwnx_wakelock.c:25:9: error: implicit declaration of function ‘wakeup_source_destroy’; did you mean ‘wakeup_source_register’? [-Werror=implicit-function-declaration]  
   25 |         wakeup_source_destroy(ws);  
      |         ^~~~~~~~~~~~~~~~~~~~~  
      |         wakeup_source_register  
cc1: some warnings being treated as errors  
make[5]: *** [/usr/src/linux-headers-6.17.0-14-generic/scripts/Makefile.build:287: aic8800_fdrv/rwnx_wakelock.o] Error 1  
make[5]: *** Waiting for unfinished jobs....  
aic_load_fw/aic_compat_8800d80.c: In function ‘aicfw_download_fw_8800d80’:  
aic_load_fw/aic_compat_8800d80.c:375:31: warning: unused variable ‘patch_info’ [-Wunused-variable]  
  375 |     struct aicbt_patch_info_t patch_info = {    
  
make[4]: *** [/usr/src/linux-headers-6.17.0-14-generic/scripts/Makefile.build:556: aic8800_fdrv] Error 2  
make[4]: *** Waiting for unfinished jobs....  
aic_load_fw/aicwf_txq_prealloc.c:13:7: warning: no previous prototype for ‘aicwf_prealloc_txq_alloc’ [-Wmissing-prototypes]
   13 | void *aicwf_prealloc_txq_alloc(size_t size)  
      |       ^~~~~~~~~~~~~~~~~~~~~~~~  
aic_load_fw/aicwf_txq_prealloc.c:50:6: warning: no previous prototype for ‘aicwf_prealloc_txq_free’ [-Wmissing-prototypes]  
   50 | void aicwf_prealloc_txq_free(void)  
      |      ^~~~~~~~~~~~~~~~~~~~~~~  
make[3]: *** [/usr/src/linux-headers-6.17.0-14-generic/Makefile:2016: .] Error 2  
make[2]: *** [/usr/src/linux-headers-6.17.0-14-generic/Makefile:248: __sub-make] Error 2  
make[1]: *** [Makefile:248: __sub-make] Error 2  
make: *** [Makefile:64: modules] Error 2  
dpkg: error processing package aic8800d80fdrvpackage (--install):  
 installed aic8800d80fdrvpackage package post-installation script subprocess returned error exit status 1  
Errors were encountered while processing:  
 aic8800d80fdrvpackage  
Nvidia Cuda Toolkit 13.0 on Ubuntu 25.10 https://askubuntu.com/questions/1559604/nvidia-cuda-toolkit-13-0-on-ubuntu-25-10

I tried installing both the Nvidia Cuda 13.0 toolkit and the gpu drivers from Nvidia packages on Ubuntu 25.10 and it does not work. I used the Local Repository procedure mentioned in Nvidia documentation. My laptop has secure boot enabled and I selected encrypted storage during Ubuntu installation. It fails to boot, getting stuck at the password prompt for decrypting storage.

I also tried installing the Nvidia Cuda 13.0 toolkit alone from Nvidia packages and the Nvidia drivers (nvidia-driver-580-open) from Ubuntu repository. The Nvidia drivers (nvidia-driver-580-open) from Ubuntu repos works fine - nvidia-smi results are as expected. But an apt update forces the Ubuntu packages to be updated to Nvidia packages which again doesn't work.

Has anyone got the Nvidia Cuda toolkit 13.0 working on Ubuntu 25.10?

Other details:
Nvidia RTX 5080.
Lenovo Legion Pro 7i (gen 10)

Update: Ended up installing Ubuntu 24.04 LTS. Things are working here with gpu driver and cuda toolkit from Nvidia repository. Only think is you have to enable "wayland" for better support of HiDpi screens, External Monitors, etc.

UFW blocking internet https://askubuntu.com/questions/1541127/ufw-blocking-internet

Of course, everything worked yesterday.

With the command UFW enabled there is no internet connection.

UFW rules:

Added user rules (see 'ufw status' for running firewall):
ufw allow 22
ufw allow 21
ufw allow 80
ufw allow 8080
ufw allow 443

No matter what I try, the status is always UFW is active (exited).

/etc/init.d/UFW status:

root@ubuntu:/etc/init.d# ./ufw status
● ufw.service - Uncomplicated firewall
   Loaded: loaded (/lib/systemd/system/ufw.service; enabled; vendor preset: enabled)
   Active: active (exited) since Mon 2025-02-10 23:35:14 EST; 1h 45min ago
 Main PID: 390 (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/ufw.service

Feb 11 01:03:52 ubuntu.domain.com systemd[1]: Started Uncomplicated firewall.
Warning: Journal has been rotated since unit was started. Log output is incomplete or unavailable.

I've removed UFW, purged UFW, removed iptables, purged iptables and still get active (exited).

The solutions posted for others don't seem to work for me.

gio mount password with special characters https://askubuntu.com/questions/1528662/gio-mount-password-with-special-characters

I want mount using well-known way

gio mount smb://<user>:<password>@<server>/<share>/

In my case

gio mount "smb://WORKGROUP;myuser:+B@e}F)q8tra@@192.168.1.199/"

I get warning Authentication Required Enter password for “192.168.1.199”:

It is because of my password +B@e}F)q8tra@ I try convert it using this converter to %2BB%40e%7DF%29q8tra%40 but without success... I try add symbol \ with different combinations without success.

I read topic. I only found dirty hack here

echo "+B@e}F)q8tra@" | gio mount "smb://WORKGROUP;myuser@192.168.1.199/"

With this hack works.

Ho do without hack?

Unable to ssh to the server using SSSD credentials https://askubuntu.com/questions/1368902/unable-to-ssh-to-the-server-using-sssd-credentials

We are building a new Ubuntu server. Where the server is not accepting SSH connection with SSSD user credentials.

Below is the error we see on the server with the status of the SSSD

sssd.service - System Security Services Daemon
     Loaded: loaded (/lib/systemd/system/sssd.service; enabled; vendor preset: enabled)
     Active: active (running) since Tue 2021-10-12 16:01:27 EDT; 1min 12s ago
   Main PID: 3056 (sssd)
      Tasks: 6 (limit: 4617)
     Memory: 50.9M
     CGroup: /system.slice/sssd.service
             ├─3056 /usr/sbin/sssd -i --logger=files
             ├─3077 /usr/libexec/sssd/sssd_be --domain FORDDIRECT.LOCAL --uid 0 --gid 0 --logger=files
             ├─3078 /usr/libexec/sssd/sssd_nss --uid 0 --gid 0 --logger=files
             ├─3079 /usr/libexec/sssd/sssd_pam --uid 0 --gid 0 --logger=files
             ├─3080 /usr/libexec/sssd/sssd_ssh --uid 0 --gid 0 --logger=files
             └─3081 /usr/libexec/sssd/sssd_autofs --uid 0 --gid 0 --logger=files

Oct 12 16:01:26 XXXXXXXXXXXXXXXXXXXXXXXX systemd[1]: Starting System Security Services Daemon...
Oct 12 16:01:26 XXXXXXXXXXXXXXXXXXXXXXXX sssd[3056]: Starting up
Oct 12 16:01:27 XXXXXXXXXXXXXXXXXXXXXXXX sssd_be[3077]: Starting up
Oct 12 16:01:27 XXXXXXXXXXXXXXXXXXXXXXXX sssd_pam[3079]: Starting up
Oct 12 16:01:27 XXXXXXXXXXXXXXXXXXXXXXXX sssd_autofs[3081]: Starting up
Oct 12 16:01:27 XXXXXXXXXXXXXXXXXXXXXXXX sssd_ssh[3080]: Starting up
Oct 12 16:01:27 XXXXXXXXXXXXXXXXXXXXXXXX sssd_nss[3078]: Starting up
Oct 12 16:01:27 XXXXXXXXXXXXXXXXXXXXXXXX systemd[1]: Started System Security Services Daemon.
Oct 12 16:02:34 XXXXXXXXXXXXXXXXXXXXXXXX sssd_be[3077]: Could not autodiscover AD site value using DNS and ad_site op>
Ubuntu 20.04 wifi connected but no internet https://askubuntu.com/questions/1273946/ubuntu-20-04-wifi-connected-but-no-internet

So sometimes when I'm using my computer (Dell xps 13 7390 Ubuntu 20.04) my internet connection will be lost but the wifi symbol on the top bar still stays the same and says I'm connected.

One time when this happened I tried to execute ping google.com and it gave me back Temporary failure in name resolution.

However this issue becomes resolved whenever I turn airplaine mode on and then off.

I looked into it and changed the wifi power saving value from 3 to 2 in etc/NetworkManager/conf.d/default-wifi-powersave-on.conf

I'm wondering if anybody has any tips. Also the following is the output of lshw -C network

     *-network                 
   description: Wireless interface
   product: Wi-Fi 6 AX200
   vendor: Intel Corporation
   physical id: 0
   bus info: pci@0000:02:00.0
   logical name: wlp2s0
   version: 1a
   serial: 4c:1d:96:4a:7f:13
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless
   configuration: broadcast=yes driver=iwlwifi driverversion=5.4.0-47-generic firmware=48.4fa0041f.0 ip=192.168.0.17 latency=0 link=yes multicast=yes wireless=IEEE 802.11
   resources: irq:18 memory:9e200000-9e203fff

Edit: The wifi also fixes itself whenever I just click the name of the network I'm already connected to in the wifi settings

Edit #2: nmcli m did not output anything when the internet went offline. The output of dmesg is here https://pastebin.com/BDVuNM3R. Also note that when I run nmcli d connect wlp2s0 then it reconnects and all is fine. I'm guessing a crude solution would be to just run that command every couple of seconds or so.

Ubuntu 18 touchpad not working properly https://askubuntu.com/questions/1097055/ubuntu-18-touchpad-not-working-properly

My touchpad is not working properly on Ubuntu 18. I can left-click on buttons etc, but the cursor won't move.

This is the result of my xinput:

⎡ Virtual core pointer                  id=2     [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer        id=4     [slave  pointer  (2)]
⎜   ↳ SYNA7DB5:00 06CB:7DB7 Touchpad    id=12    [slave  pointer  (2)]
⎜   ↳ Logitech USB Receiver             id=15    [slave  pointer  (2)]
⎜   ↳ Logitech USB Receiver             id=17    [slave  pointer  (2)]
⎣ Virtual core keyboard                 id=3     [master keyboard (2)]
    ↳ Virtual core XTEST keyboard       id=5     [slave  keyboard (3)]
    ↳ Power Button                      id=6     [slave  keyboard (3)]
    ↳ Video Bus                         id=7     [slave  keyboard (3)]
    ↳ Video Bus                         id=8     [slave  keyboard (3)]
    ↳ Power Button                      id=9     [slave  keyboard (3)]
    ↳ Sleep Button                      id=10    [slave  keyboard (3)]
    ↳ HD WebCam: HD WebCam              id=11    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard      id=13    [slave  keyboard (3)]
    ↳ Acer WMI hotkeys                  id=14    [slave  keyboard (3)]
    ↳ Logitech USB Receiver             id=16    [slave  keyboard (3)]
Ubuntu Terminal Freezes Commands Cannot Execute Until a Reboot https://askubuntu.com/questions/1028442/ubuntu-terminal-freezes-commands-cannot-execute-until-a-reboot

Running Any command for instance sudo service network-manager restart seems just stays idle when i press enter key. I have to reboot to restore the machine. What must i do to stop my terminal from freezing.

How to record stereo sound from Line-In in command line? https://askubuntu.com/questions/997643/how-to-record-stereo-sound-from-line-in-in-command-line

I have plugged my phones into rear Line-In socket of my computer. I want to use it as stereo microphone, I tried this on desktop and it worked.

Now, how can I record sound from it with command line?

For example, if I use ffmpeg, I have no means to configure input socket. If I run

ffmpeg -f alsa -i sysdefault:CARD=MID -t 30 out.wav

but records absolutely silent file.

Alsamixer screen is following:

enter image description here

Areord shows following:

$ arecord -L
default
    Playback/recording through the PulseAudio sound server
null
    Discard all samples (playback) or generate zero samples (capture)
pulse
    PulseAudio Sound Server
sysdefault:CARD=MID
    HDA Intel MID, VT1708S Analog
    Default Audio Device
front:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    Front speakers
surround40:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    4.0 Surround output to Front and Rear speakers
surround41:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
dmix:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    Direct sample mixing device
dsnoop:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    Direct sample snooping device
hw:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    Direct hardware device without any conversions
plughw:CARD=MID,DEV=0
    HDA Intel MID, VT1708S Analog
    Hardware device with all software conversions

UPDATE

After I have configured input in gnome-control-center it started to work.

enter image description here

But I don't want to use GUI tools, I need command-line-only solution.

libpng-dev is installed; program doesn't link https://askubuntu.com/questions/916916/libpng-dev-is-installed-program-doesnt-link

I want to compile farbfeld program suite. I run make. Error:

cc -s -lpng -o png2ff png2ff.o util.o
png2ff.o: In function `main':
png2ff.c:(.text.startup+0x58): undefined reference to `png_create_read_struct'
png2ff.c:(.text.startup+0x65): undefined reference to `png_create_info_struct'
png2ff.c:(.text.startup+0xb0): undefined reference to `png_init_io'
png2ff.c:(.text.startup+0xc4): undefined reference to `png_get_valid'
png2ff.c:(.text.startup+0xd2): undefined reference to `png_set_tRNS_to_alpha'
png2ff.c:(.text.startup+0xe6): undefined reference to `png_set_add_alpha'
png2ff.c:(.text.startup+0xf0): undefined reference to `png_set_expand_gray_1_2_4_to_8'
png2ff.c:(.text.startup+0xfa): undefined reference to `png_set_gray_to_rgb'
png2ff.c:(.text.startup+0x104): undefined reference to `png_set_packing'
png2ff.c:(.text.startup+0x11a): undefined reference to `png_read_png'
png2ff.c:(.text.startup+0x129): undefined reference to `png_get_image_width'
png2ff.c:(.text.startup+0x143): undefined reference to `png_get_image_height'
png2ff.c:(.text.startup+0x167): undefined reference to `png_get_rows'
png2ff.c:(.text.startup+0x184): undefined reference to `png_get_bit_depth'
png2ff.c:(.text.startup+0x27c): undefined reference to `png_destroy_read_struct'
collect2: error: ld returned 1 exit status
Makefile:26: recipe for target 'png2ff' failed
make: *** [png2ff] Error 1

Libpng is installed:

$ sudo apt-get install libpng-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libpng-dev is already the newest version (1.6.28-1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

How to fix it?

I ran sudo find -name libpng.so in root directory. The file is at /usr/lib/x86_64-linux-gnu/libpng.so. I added -L/usr/lib/x86_64-linux-gnu to LD_FLAGS in config.mk. It didn't help.

Make output with -v appended to CFLAGS in config.mk:

cc -v -std=c99 -pedantic -Wall -Wextra -Os -D_DEFAULT_SOURCE  -c -o png2ff.o png2ff.c
Using built-in specs.
COLLECT_GCC=cc
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 6.3.0-12ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-6 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 6.3.0 20170406 (Ubuntu 6.3.0-12ubuntu2) 
COLLECT_GCC_OPTIONS='-v' '-std=c99' '-Wpedantic' '-Wall' '-Wextra' '-Os' '-D' '_DEFAULT_SOURCE' '-c' '-o' 'png2ff.o' '-mtune=generic' '-march=x86-64'
 /usr/lib/gcc/x86_64-linux-gnu/6/cc1 -quiet -v -imultiarch x86_64-linux-gnu -D _DEFAULT_SOURCE png2ff.c -quiet -dumpbase png2ff.c -mtune=generic -march=x86-64 -auxbase-strip png2ff.o -Os -Wpedantic -Wall -Wextra -std=c99 -version -fstack-protector-strong -Wformat-security -o /tmp/ccsHz9de.s
GNU C99 (Ubuntu 6.3.0-12ubuntu2) version 6.3.0 20170406 (x86_64-linux-gnu)
    compiled by GNU C version 6.3.0 20170406, GMP version 6.1.2, MPFR version 3.1.5, MPC version 1.0.3, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/6/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/lib/gcc/x86_64-linux-gnu/6/include
 /usr/local/include
 /usr/lib/gcc/x86_64-linux-gnu/6/include-fixed
 /usr/include/x86_64-linux-gnu
 /usr/include
End of search list.
GNU C99 (Ubuntu 6.3.0-12ubuntu2) version 6.3.0 20170406 (x86_64-linux-gnu)
    compiled by GNU C version 6.3.0 20170406, GMP version 6.1.2, MPFR version 3.1.5, MPC version 1.0.3, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 5a80a4e17a9c5c8f646e6b274db1ec27
COLLECT_GCC_OPTIONS='-v' '-std=c99' '-Wpedantic' '-Wall' '-Wextra' '-Os' '-D' '_DEFAULT_SOURCE' '-c' '-o' 'png2ff.o' '-mtune=generic' '-march=x86-64'
 as -v --64 -o png2ff.o /tmp/ccsHz9de.s
GNU assembler version 2.28 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.28
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/6/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/6/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-std=c99' '-Wpedantic' '-Wall' '-Wextra' '-Os' '-D' '_DEFAULT_SOURCE' '-c' '-o' 'png2ff.o' '-mtune=generic' '-march=x86-64'
cc -L/usr/lib/x86_64-linux-gnu -s -lpng -o png2ff png2ff.o util.o
png2ff.o: In function `main':
png2ff.c:(.text.startup+0x58): undefined reference to `png_create_read_struct'
png2ff.c:(.text.startup+0x65): undefined reference to `png_create_info_struct'
png2ff.c:(.text.startup+0xb0): undefined reference to `png_init_io'
png2ff.c:(.text.startup+0xc4): undefined reference to `png_get_valid'
png2ff.c:(.text.startup+0xd2): undefined reference to `png_set_tRNS_to_alpha'
png2ff.c:(.text.startup+0xe6): undefined reference to `png_set_add_alpha'
png2ff.c:(.text.startup+0xf0): undefined reference to `png_set_expand_gray_1_2_4_to_8'
png2ff.c:(.text.startup+0xfa): undefined reference to `png_set_gray_to_rgb'
png2ff.c:(.text.startup+0x104): undefined reference to `png_set_packing'
png2ff.c:(.text.startup+0x11a): undefined reference to `png_read_png'
png2ff.c:(.text.startup+0x129): undefined reference to `png_get_image_width'
png2ff.c:(.text.startup+0x143): undefined reference to `png_get_image_height'
png2ff.c:(.text.startup+0x167): undefined reference to `png_get_rows'
png2ff.c:(.text.startup+0x184): undefined reference to `png_get_bit_depth'
png2ff.c:(.text.startup+0x27c): undefined reference to `png_destroy_read_struct'
collect2: error: ld returned 1 exit status
Makefile:26: recipe for target 'png2ff' failed
make: *** [png2ff] Error 1

Solution: png library must be linked last;

Cause: the makefile is broken.

How to convert vmdk to bootable Disk or usb https://askubuntu.com/questions/895152/how-to-convert-vmdk-to-bootable-disk-or-usb

I have Mac os 10.12 in vmdk format and used it by VirtualBox on ubuntu.

How to can i convert this vmdk file to bootable Disk or Usb for installing mac os?

Cannot login after Nvidia driver installation https://askubuntu.com/questions/742483/cannot-login-after-nvidia-driver-installation

I have installed Ubuntu 15.10 on my Xeon machine without any problems. But after installing Nvidia drivers (for GTX 960), I lose my login password from the GUI. The password, however, works with the console.

Can anyone help ?


Since I have tried three versions of Ubuntu, I am wondering why the problem is still persisting even on Ubuntu 16.04 which has the latest driver 361. Should we use Ubuntu software or use ppa from Nvidia ?

How can I automatically mute my laptop when it connects to my work wifi network? https://askubuntu.com/questions/595170/how-can-i-automatically-mute-my-laptop-when-it-connects-to-my-work-wifi-network

I'm running Ubuntu 14.04 and it would be helpful if I can do this. My phone can do it, my laptop should be able to!

How to access shared folders in Ubuntu VM(Oracle Virtualbox) and link them to the home folder https://askubuntu.com/questions/323392/how-to-access-shared-folders-in-ubuntu-vmoracle-virtualbox-and-link-them-to-th

I have configured a shared folder between the Windows host and Ubuntu guest. The folder mounts at start up but its empty(It also has a padlock sign.). I have to run the command below to access its content(the padlock sign disappears).

  sudo mount.vboxsf media ~/media

How can i configure it to be run automatically at start up. I've tried adding to the start up programs but nothing happens. Am new to Linux so try to put your answer in a layman's language. Thanks.

dual booting Ubuntu 12.04 and windows 7 (partitioning scheme) https://askubuntu.com/questions/231647/dual-booting-ubuntu-12-04-and-windows-7-partitioning-scheme

I would like to ask for help on dual booting because it's my first time to try dual booting and a novice on Ubuntu or any Linux distribution.

I have 2 partitions on my hard disk:

Windows 7
C:\ Windows 7 (pre-existing installation)
D:\ Files (Already exists and has files already)

Please help me on the partitioning part.

Can I shrink any of the 2 partitions I have?

I know that there should only be 4 primary partitions on 1 hard disk.

Then how would i be setting the root,swap,and /home. Would that mean I will end up with 5 partitions when only 4 partitions are allowed.

I'm really confused. Please bear with me.

SABnzbdplus will not start on boot but running the init.d script runs fine https://askubuntu.com/questions/166278/sabnzbdplus-will-not-start-on-boot-but-running-the-init-d-script-runs-fine

I am running the Ubuntu 12.04 server edition (static LAN IP) and was tying to install SABnzbdplus using the apt as per instructions here: Ubuntu PPA Repository

Installation has gone smoothly and the server downloads etc no problem! The problem is that I have edited /etc/default/sabnzbdplus as the directions provided to:

# This file is sourced by /etc/init.d/sabnzbdplus
#
# When SABnzbd+ is started using the init script, the
# --daemon option is always used, and the program is
# started under the account of $USER, as set below.
#
# Each setting is marked either "required" or "optional";
# leaving any required setting unconfigured will cause
# the service to not start.

# [required] user or uid of account to run the program as:
USER=omar

# [optional] full path to the configuration file of your choice;
#            otherwise, the default location (in $USER's home
#            directory) is used:
CONFIG=

# [optional] hostname/ip and port number to listen on:
HOST=0.0.0.0
PORT=8080

# [optional] extra command line options, if any:
EXTRAOPTS=

My (omar) runlevel is N 2.

Not quite sure what to do because executing: /etc/init.d/sabnzbdplus Works fine and error free.

Not sure what to do here. Advice and assistance would be greatly appreciated!

Thanks,