Month: March 2017

  • ClamAV installation

    ClamAV is by default installed in Ubuntu. You want to be sure that you have the latest version and update. Clamav will sometimes have trouble downloading updates for some reason or another. I’ll show you how to fix this in Ubuntu Linux! First, stop clamav and freshclam: $ sudo /etc/init.d/clamav-daemon stop $ sudo /etc/init.d/clamav-freshclam stop…

  • Chirp installation in Ubuntu

    CHIRP is a free, open-source tool for programming your amateur radio. It supports a large number of manufacturers and models, as well as provides a way to interface with multiple data sources and formats. This is super quick and easy if you’re running a reasonably new version of Ubuntu. Simply run the following in a…

  • Canon printer and scanner in Ubuntu

    Canon Printer Driver & ScanGear MP For Ubuntu 14.04 December 5, 2014 Canon scangear for Ubuntu 14.04 Below devices are supported: bjf9000, bjf900, bjs300, bjs500, bjs700 series e500, e510, e600, e610 series i250, i255, i550, i560, i850, i860, i950, i990 series ip100, ip1800, ip1900, ip2200, ip2500, ip2600, ip2700, ip3000, ip3300, ip3500, ip3600, ip4000, ip4200, ip4300,…

  • Installation Cadsoft Eagle for Ubuntu

    *** Warning, 64-bit is not supported by Ubuntu. Please install the 32-bit version. *** Start by updating all the libraries sudo apt-get update Install Missing 32-bit Libraries sudo apt-get install libxrender1:i386 libxrandr2:i386 libxcursor1:i386 libfreetype6:i386 libfontconfig1:i386 libxext6:i386 libx11-6:i386 libxi6:i386 libssl1.0.0:i386 libstdc++6:i386 libgcc1:i386 libc6:i386 libc6-i386 libxfixes3:i386 libexpat1:i386 libxcb1:i386 libxdmcp6:i386 libxau6:i386 Download the .run File Here we will…

  • Installing Arduino in Ubuntu

    Some simple steps: Open Software Centre. Search for Arduino. Install. At startup, accept the message by clicking the ‘Add’ button. Log off and log back on again. Now you can start programming.

  • 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…