Author: Stefan

  • Key expired or missing – Ubuntu error

    Key expired or missing – Ubuntu error

    Thanks to: https://chrisjean.com/fix-apt-get-update-the-following-signatures-couldnt-be-verified-because-the-public-key-is-not-available/ Example error message in terminal at running apt-get: [chris@server ~]$ sudo apt-get update Ign http://security.ubuntu.com trusty-security InRelease Get:1 http://security.ubuntu.com trusty-security Release.gpg [933 B] … Fetched 21.9 MB in 14s (1,537 kB/s) Reading package lists… Done W: GPG error: http://security.ubuntu.com trusty-security Release: The following signatures couldn’t be verified because the public key is…

  • Raspberry RTL-SDR RX-Igate

    With help from this manual you can make your own APRS Igate with a Raspberry Pi and RTL-SDR dongle. If you find any incorrect information or you have additional info, please leave a comment! Offcourse change some of the commands to your personal settings like Callsign, gain, correction factor etc. Installation Warning, don´t put the…

  • Valuable linux commands

    Valuable linux commands

    docker volume ls -qf dangling=true | xargs -r docker volume rm

  • RF-V16 Config commands

    RF-V16 Config commands

    Set master phone number Password = 123456 (default) Phonenumber = +31619xxxxxx (fill in complete number) 123456,sos1,0031619xxxxxx# Return message: 0031619xxxxxx has been set for the master number sucessfully. Set APN settings for example Dutch provider Simyo.nl APN = portalmmm.nl Port = 5080 User = empty Password = empty apn,portalmmm.nl,user,,pd,,pport,5080# Return message: Apn set succesfully! Reboot system…

  • Docker commands -2-

    Docker commands -2-

    Docker commands Containers Show running containers docker ps Show all containers docker ps -a Docker start container docker start xxx Docker stop container docker stop xxx Docker restart container docker restart xxx Docker remove container docker rm xxx Images Show images docker images Remove images docker rmi xxx Volumes List volumes docker volume ls Remove…

  • Docker installation

    Docker installation

    Docker is supported on these Ubuntu operating systems: * Ubuntu Xenial 16.04 (LTS) * Ubuntu Wily 15.10 * Ubuntu Trusty 14.04 (LTS) * Ubuntu Precise 12.04 (LTS) This page instructs you to install using Docker-managed release packages and installation mechanisms. Using these packages ensures you get the latest release of Docker. If you wish to…

  • Install Domoticz in docker

    Install Domoticz in docker

    Just run the following command! docker run -d -p 8080:8080 –name=domoticz -v /home/pi/domoticz-config:/config -v /etc/localtime:/etc/localtime:ro -v /dev/bus/usb:/dev/bus/usb sdesbure/domoticz More information about this project at: https://hub.docker.com/r/sdesbure/domoticz/

  • Docker container: Backup and Recovery

    Docker container: Backup and Recovery

    This config will describe a procedure of how to back up a Docker container as well as it will also show how to recover a Docker container from backup. To understand the Docker container backup and recovery process we first need to understand the difference between docker image and docker container. A docker image contains…

  • Docker clean-up commands

    Docker clean-up commands

    Remove stopped containers $ drm Remove unused volumes $ drmv Remove dangling volumes $ drmi

  • Docker autostart container

    Docker autostart container

    Create service make file in /etc/systemd/system/ cd /etc/systemd/system nano /docker-[containername].service Insert following code: [Unit] Description=Docker [containername] server Requires=docker.service After=docker.service [Service] Restart=always ExecStart=/usr/bin/docker start -a [containername] ExecStop=/usr/bin/docker stop -t 2 [containername] [Install] WantedBy=default.target Add service to systemd systemctl enable docker-[containername].service When system reboots, service will be started.