Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings.
Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
I installed the package using the ppa and edited the /etc/defaults/sabnzbdplus file with my username but when I try to start the service it ails and a status shows "* SABnzbd+ binary newsgrabber: service not enabled, edit /etc/default/sabnzbdplus"
# 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="stuart"
# [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=
PORT=
# [optional] extra command line options, if any:
EXTRAOPTS=
[ -z "${USER%:*}" ] && {
log_action_msg "$DESC: service not enabled, edit $SETTINGS";
return 1;
}
That code basically leaves three ways to trigger that msg: variable USER isn't set at all (i.e. commented out or deleted), it's set but empty (which is how the settings file comes in a fresh install of the package), or its value starts with a colon. The latter may happen as a typo with some common keyword layouts that have " and : next to each other. Or maybe it takes a reboot to get systemd back to reality...
Does it work without the double quotes?
Does stuart exist?
What happens when you run "sabnzbdplus" from the commandline?
What is the output of "whoami"
Tried with and without quotes (I also tried my uid)
Stuart is the only account on the system
Sab runs fine from the command line as user stuart
Whoami returns stuart