Tag: linux

  • Keepass for Ubuntu

    Add the repository to the software centre. The standard version in software centre is old. ppa:jtaylor/keepass Search for ‘KeepassX’ and install. Auto fill-in By default, you can’t fill in the user credantials automatically. To make this possible, you have to install another program called ‘xdotool’. $ sudo apt-get install xdotool

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

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

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

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