Topic: Ubuntu Error
Hi,
When trying to run the following installation command on Ubuntu 18 LTS I get an error message.
Command:
URL='https://www.dynu.com/support/downloadfile/31'; FILE=`mktemp`; wget "$URL" -qO $FILE && sudo dpkg -i $FILE; rm $FILE
Error message:
Failed to stop dynuiuc.service: Unit dynuiuc.service not loaded.
dpkg: error processing archive /tmp/tmp.Z79OnkyRmb (--install):
new dynuiuc package pre-installation script subprocess returned error exit status 5
It used to work on Ubuntu 16 LTS.
How can I fix this?
Regards
When trying to run the following installation command on Ubuntu 18 LTS I get an error message.
Command:
URL='https://www.dynu.com/support/downloadfile/31'; FILE=`mktemp`; wget "$URL" -qO $FILE && sudo dpkg -i $FILE; rm $FILE
Error message:
Failed to stop dynuiuc.service: Unit dynuiuc.service not loaded.
dpkg: error processing archive /tmp/tmp.Z79OnkyRmb (--install):
new dynuiuc package pre-installation script subprocess returned error exit status 5
It used to work on Ubuntu 16 LTS.
How can I fix this?
Regards
Reply with quote |Report
Hi,
Has the same error.
I restarted then opened the file /usr/lib/systemd/system/dynuiuc.service
And changed the config from:
ExecStart=/usr/bin/dynuiuc \
--conf_file /etc/dynuiuc/dynuiuc.conf \
--log_file /var/log/dynuiuc.log \
--pid_file /var/run/dynuiuc.pid \
--daemon
to:
ExecStart=/usr/bin/dynuiuc --conf_file /etc/dynuiuc/dynuiuc.conf --log_file /var/log/dynuiuc.log --pid_file /var/run/dynuiuc.pid --daemon
Basically, I removed the "\" , the tabulations and put everything in one line instead of 4.
It did the trick.
Hope it helps.
Has the same error.
I restarted then opened the file /usr/lib/systemd/system/dynuiuc.service
And changed the config from:
ExecStart=/usr/bin/dynuiuc \
--conf_file /etc/dynuiuc/dynuiuc.conf \
--log_file /var/log/dynuiuc.log \
--pid_file /var/run/dynuiuc.pid \
--daemon
to:
ExecStart=/usr/bin/dynuiuc --conf_file /etc/dynuiuc/dynuiuc.conf --log_file /var/log/dynuiuc.log --pid_file /var/run/dynuiuc.pid --daemon
Basically, I removed the "\" , the tabulations and put everything in one line instead of 4.
It did the trick.
Hope it helps.
Reply with quote |Report
| Author | Topic: Ubuntu Error |
|---|---|
|
Gaaed Joined: 3/9/2018 |
Wednesday, June 6, 2018 9:39 AM
Hi,
When trying to run the following installation command on Ubuntu 18 LTS I get an error message. Command: URL='https://www.dynu.com/support/downloadfile/31'; FILE=`mktemp`; wget "$URL" -qO $FILE && sudo dpkg -i $FILE; rm $FILE Error message: Failed to stop dynuiuc.service: Unit dynuiuc.service not loaded. dpkg: error processing archive /tmp/tmp.Z79OnkyRmb (--install): new dynuiuc package pre-installation script subprocess returned error exit status 5 It used to work on Ubuntu 16 LTS. How can I fix this? Regards |
|
micadam27 Joined: 6/24/2018 |
Sunday, June 24, 2018 10:15 AM
Hi,
Has the same error. I restarted then opened the file /usr/lib/systemd/system/dynuiuc.service And changed the config from: ExecStart=/usr/bin/dynuiuc \ --conf_file /etc/dynuiuc/dynuiuc.conf \ --log_file /var/log/dynuiuc.log \ --pid_file /var/run/dynuiuc.pid \ --daemon to: ExecStart=/usr/bin/dynuiuc --conf_file /etc/dynuiuc/dynuiuc.conf --log_file /var/log/dynuiuc.log --pid_file /var/run/dynuiuc.pid --daemon Basically, I removed the "\" , the tabulations and put everything in one line instead of 4. It did the trick. Hope it helps. |
Saturday, June 13, 2026 6:48 AM
