Category: Software installation

  • Install Odoo v13 docker container

    Step by step installation instructions.(Thnx to: https://www.cybrosys.com/blog/how-to-install-odoo-13-using-docker) Install Ubuntu server 18.04 and run all updates. Install docker(Ubuntu 18.04)First of all, we have to make sure that every required package is properly installed in the system in order to run the docker:# sudo apt install apt-transport-https ca-certificates curl software-properties-common Get a GPG key for better maintenance…

  • PfSense on Zotac Zbox CI327

    Some helpfull notes when installing pfSense on your Zotac Zbox CI327. Install from usb stick Preparing the drive Download pfsense image Write image to drive Known problems you can run in to. CI327 has Realtek NIC’s. For the best performance, you need to tweak some settings in the Gui: system/advance/network… CHECK Disable hardware checksum offload…

  • Chrome browser in Ubuntu

    Chrome browser in Ubuntu

    Follow the instruction for installation: Add Key: wget -q -O – https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add – Set repository: sudo sh -c ‘echo “deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main” >> /etc/apt/sources.list.d/google-chrome.list’ Install package: sudo apt-get update sudo apt-get install google-chrome-stable

  • OpenSSH server install Ubuntu

    1. To install it, open terminal (Ctrl+Alt+T) or log in Ubuntu server and run command: sudo apt-get install openssh-server 2. After that, you should have SSH service enabled in your system, you may check its status by running command: sudo service ssh status 3. You may change some settings (e.g., the listening port, and root…