Search found 9157 matches

by sander
February 5th, 2025, 3:37 pm
Forum: General Help
Topic: Pre_queque script
Replies: 4
Views: 2064

Re: Pre_queque script

Post the code?
by sander
February 5th, 2025, 1:01 am
Forum: General Help
Topic: Infinite Redirect
Replies: 3
Views: 689

Re: Infinite Redirect

by sander
February 3rd, 2025, 11:14 am
Forum: General Help
Topic: Files download to temporary folder until it is full. No files are moved to complete folder.
Replies: 3
Views: 2391

Re: Files download to temporary folder until it is full. No files are moved to complete folder.

It was unrar? That is started by SABnzbd itself. Weird. Although: could still be your virusscanner blocking unrar.

Good it works now again.
by sander
February 3rd, 2025, 10:17 am
Forum: General Help
Topic: Files download to temporary folder until it is full. No files are moved to complete folder.
Replies: 3
Views: 2391

Re: Files download to temporary folder until it is full. No files are moved to complete folder.

download_dir = f:\Download complete_dir = r:\d movies 2025-02-03 15:35:12,753::DEBUG::[filesystem:986] Removing dir recursively f:\Download\A.DOGS.PURPOSE.2017.1080P.BLURAY.DTS-HD 2025-02-03 15:35:12,753::INFO::[filesystem:990] Cannot remove folder f:\Download\A.DOGS.PURPOSE.2017.1080P.BLURAY.DTS-HD...
by sander
January 30th, 2025, 1:47 pm
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 5575

Re: "Lost Connection," Signal 15 & Restart

safihre wrote: January 30th, 2025, 12:28 pm We can't ignore it. See jcfps comment, this is completely expected behavior to act on it.
I had missed jcfp's post.

Clear.
by sander
January 30th, 2025, 4:24 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 5575

Re: "Lost Connection," Signal 15 & Restart

So ... this hack method seems to work. Can you verify?

We might consider developing an option "ignore_sigterm=1" in sabnzbd.ini so the hacking is not needed. I need the advice from Safihre on that.
by sander
January 30th, 2025, 4:20 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 5575

Re: "Lost Connection," Signal 15 & Restart

Docker: docker run -p 8080:8080 -v /home/sander/docker-sabnzbd-config:/config -v /home/sander/docker-sabnzbd-downloads:/downloads lscr.io/linuxserver/sabnzbd:latest From another terminal: go into the running Docker container docker exec b58140df4bbc -it /bin/bash root@b58140df4bbc:/# cd /app/sabnzbd...
by sander
January 30th, 2025, 4:09 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 5575

Re: "Lost Connection," Signal 15 & Restart

The basics, without Docker: $ sed -i -e 's/signal.SIGTERM, sabnzbd.sig_handler/signal.SIGTERM, signal.SIG_IGN/' SABnzbd.py Check: $ cat SABnzbd.py | grep SIGTERM signal.signal(signal.SIGTERM, signal.SIG_IGN) Good. Starting that SABnzbd.py ... a kill -15 is nicely ignored by SABnzbd. Next step: Docke...
by sander
January 29th, 2025, 6:57 am
Forum: General Help
Topic: Slow folder speed with SSD and U.2
Replies: 5
Views: 1108

Re: Slow folder speed with SSD and U.2

It is what SABnzbd experiences.

I think you have enough knowledge and handles to explore it further.
by sander
January 29th, 2025, 4:11 am
Forum: General Help
Topic: Slow folder speed with SSD and U.2
Replies: 5
Views: 1108

Re: Slow folder speed with SSD and U.2

"1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.00344411 s, 304 MB/s" So the first write is the same speed as SABnzbd experiences it, right? SABnzbd writes a lot of small files (1MB or smaller). "I have mostly the problem that my download is slowed down from the disk, thats why i wondering...
by sander
January 29th, 2025, 2:08 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 5575

Re: "Lost Connection," Signal 15 & Restart

Ah, this is nice, although not useful for you (unless you know how to edit a file within a docker container ... do you know) Start python, and send signal 15 from bash ... terminated: sander@zwarte:~$ python3 Python 3.12.3 (main, Jan 17 2025, 18:03:48) [GCC 13.3.0] on linux Type "help", &q...
by sander
January 29th, 2025, 1:50 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 5575

Re: "Lost Connection," Signal 15 & Restart

Have you googled "signal 15" and "signal 15 sabnzbd"? It's a vague thing because the receiving process (SABnzbd) cannot see which process sent the signal 15. You know it means some other process sent that signal 15 = SIGTERM to SABnzbd? The great thing: with bpftrace -> killsnoop...
by sander
January 29th, 2025, 1:22 am
Forum: General Help
Topic: Slow folder speed with SSD and U.2
Replies: 5
Views: 1108

Re: Slow folder speed with SSD and U.2

Why is it a problem for you? If you go into SABnzbd proxmox VM, what is the output of the command below, but with of pointing to your virtual drive? $ for i in {1..10}; do dd if=/dev/zero of=bla.bin bs=1M count=1 2>&1 | grep MB; done 1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.00357261 s, 294 MB/s...