Tag Archives: ubuntu

Debian: Enable apt debug logging

Hi,

for troubleshooting purposes (i.e. certificate issues) it is sometimes to enable the debug logging of apt.
Continue reading Debian: Enable apt debug logging

Advertisment to support michlstechblog.info

Windows: Working with the linux subsystem (WSL)

Hi,

this post contains some examples on how to interact with the Windows Subsystem for Linux. For an installation howto see my previous post.
Continue reading Windows: Working with the linux subsystem (WSL)

Debian/Ubuntu: Install docker

Hi,

short tutorial to install docker.
Continue reading Debian/Ubuntu: Install docker

Debian & Ubuntu Linux: Install a package from backports

Hi,

if you require a newer version of a package on a debian based system it may be possible that it is backportet from the latest testing line.

Continue reading Debian & Ubuntu Linux: Install a package from backports

EIB/KNX: Upstart startup script for eibd

Hi,

as a follow up of the 2 previous posts(compiling eibd and SysV startup script) here is a sample Upstart script for the eibd daemon. Some Ubuntu based distributions uses the upstart start mechanism.

Login as root at your machine where eibd is installed and add a user under  which the eibd process should run.

useradd eibd -s /bin/false -U -M

Create the upstart conf file /etc/init/eibd.conf

#######################################################################
# eibd - startscript for the eibd daemon
description "eibd daemon Upstart script"
author "Michael Albert info@michlstechblog.info"

start on (filesystem or resume)
stop on (suspend or runlevel [!2345])
expect fork
normal exit 0

pre-start script
route add 224.0.23.12 dev eth0 2>&1 > /dev/null || true
end script

script
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/local/bin/eibd
DAEMON_OPTS="-d -D -T -R -S -i -u --eibaddr=1.1.128 ipt:192.168.56.1"
exec start-stop-daemon --start -c eibd --exec $DAEMON -- $DAEMON_OPTS
end script

post-stop script
route delete 224.0.23.12 2>&1 > /dev/null || true
end script
#######################################################################

Continue reading EIB/KNX: Upstart startup script for eibd