Search found 883 matches
- February 18th, 2021, 11:02 am
- Forum: Debian/Ubuntu Package
- Topic: Gnome - No tray icon
- Replies: 4
- Views: 115
Re: Gnome - No tray icon
That's gnome devs deciding tray icons are a thing of the past, thinking desktop notifications can serve as a complete replacement. I even added an xapp implementation of the sab tray icon, so it should work on most desktop environments. If you ever figure out a way to get it to show up on gnome, do ...
- February 18th, 2021, 10:52 am
- Forum: Beta Releases
- Topic: 3.2.0RC2 constantly crashes after postprocessor (docker hotio)
- Replies: 29
- Views: 777
- February 17th, 2021, 11:51 am
- Forum: General Help
- Topic: Unable to Rename Sample+ file
- Replies: 42
- Views: 1687
Re: Unable to Rename Sample+ file
@sander iirc par2 can handle subdirs these days, at least its changelog seems to suggest so. The substitution of the directory separator with a plus sign is probably sab's doing: there's some function in filesystem.py doing that, might be related to sanitizing input or safeguarding against directory...
- February 16th, 2021, 4:17 am
- Forum: General Help
- Topic: slow downloads and cant access web interface
- Replies: 14
- Views: 372
- February 13th, 2021, 1:55 pm
- Forum: General Help
- Topic: SAB not starting anymore? [Ubuntu]
- Replies: 3
- Views: 129
Re: SAB not starting anymore?
Looks like you installed a broken systemd service of some kind in /etc/systemd/system/sabnzbdplus.service. Packages (from both ppa and official ubuntu repos) still only ship an init.d script which works fine. Use that if you can; you will have to remove the native systemd service file first though o...
- February 13th, 2021, 1:37 pm
- Forum: Feature Requests
- Topic: Dedicated Security Module
- Replies: 5
- Views: 190
Re: Dedicated Security Module
The basics work, explanation texts still need a refresher though. Found an inconsistency in the current unwanted extension handling too, so I'm going to write some tests for that stuff before making a PR. Using Whitelist mode without a carefully curated list of extensions could be frustrating, but t...
- February 13th, 2021, 4:35 am
- Forum: Feature Requests
- Topic: Dedicated Security Module
- Replies: 5
- Views: 190
Re: Dedicated Security Module
If it's added as an advanced option then the user can be expected to figure this out themselves. It would be good if anyone has any ideas about how to make it easier, though. Could make it a variation of the current unwanted extension feature. Basically, add a simple boolean option to make that lis...
- February 13th, 2021, 2:29 am
- Forum: General Help
- Topic: remotely downloading onto NAS
- Replies: 4
- Views: 292
Re: remotely downloading onto NAS
And no i dont want to open NAS to the world. An often overlooked but simple and effective way: many indexers offer a 'shopping cart' for nzb files that they make available as an rss feed. Configure sab to read the cart rss feed; then access the indexer from anywhere and simply add stuff to the cart...
- January 27th, 2021, 2:36 pm
- Forum: General Help
- Topic: Can't stop sabnzbdplus process
- Replies: 1
- Views: 79
Re: Can't stop sabnzbdplus process
Both of which give me no errors when running. Yet still this process is running: sabnzbd 31668 53.5 0.2 130252 42432 ? Rs 11:23 0:01 /usr/bin/python -OO /usr/bin/sabnzbdplus -s 192.168.0.250 --browser 0 & The lack of the --daemon option as well as the & at the end (a method for backgrounding a proc...
- January 3rd, 2021, 7:03 am
- Forum: General Help
- Topic: How to resume from "too little disk space"
- Replies: 3
- Views: 270
Re: How to resume from "too little disk space"
Code for an autoresume function is currently being worked on; until then, resuming requires an explicit action. That action can be a human pressing a button, but also easily be scripted using the api, documentation here.
- January 1st, 2021, 6:19 am
- Forum: General Help
- Topic: Error when installing SABNZBD
- Replies: 1
- Views: 183
Re: Error when installing SABNZBD
Stop using outdated ubuntu versions, base your vm on the latest ubuntu long term support release (20.04/focal); Stop using broken instructions from random blogs, follow the ones on the sabnzbd wiki instead; Stop adding broken systemd service files, the sabnzbdplus package comes with a perfectly fun...
- December 28th, 2020, 10:36 am
- Forum: Debian/Ubuntu Package
- Topic: Fresh install on 20.10 - won't start, no glitter
- Replies: 13
- Views: 825
Re: Fresh install on 20.10 - won't start, no glitter
Nice to know you did find a workaround. The PATH probably isn't the issue here, that can be annoying but only changes the order and/or locations the os searches when running a program without supplying a full path, e.g. just "sabnzbdplus" (also used by the desktop entry, see /usr/share/applications/...
- December 28th, 2020, 4:50 am
- Forum: Debian/Ubuntu Package
- Topic: Fresh install on 20.10 - won't start, no glitter
- Replies: 13
- Views: 825
Re: Fresh install on 20.10 - won't start, no glitter
No idea why rdp would do that. Is /usr/bin "gone" entirely when connected via rdp or does it just turn /bin into a copy of /usr/bin? What if you call sab with its full path /usr/bin/sabnzbdplus? Alternatively, maybe setting it up as a service (add a username in /etc/default/sabnzbdplus so it starts ...
- December 27th, 2020, 12:39 pm
- Forum: Debian/Ubuntu Package
- Topic: Fresh install on 20.10 - won't start, no glitter
- Replies: 13
- Views: 825
Re: Fresh install on 20.10 - won't start, no glitter
2020-12-27 11:55:49,138::INFO::[sabnzbdplus:1150] Full executable path = /bin/sabnzbdplus It appears the sabnzbdplus executable being run is installed in /bin. That in turn causes the application to not find the interface templates, because the path to those is set in constants.py as a relative pat...
- December 5th, 2020, 3:49 am
- Forum: General Help
- Topic: API Changing
- Replies: 10
- Views: 978
Re: API Changing
The init script isn't the problem, it's strict enough not to randomly select different configs. There's a second mechanism starting sab with a different config but at the same port, most likely a redundant systemd service you added (in /etc/systemd/ or /lib/systemd/) under a different name than sabn...