Set Up Lets Encrypt on Debian 10 with Nginx

Update your package list Install the dependencies for the python3-certbot-nginx package, which include the python3-acme, python3-certbot, python3-mock, python3-openssl, python3-pkg-resources, python3-pyparsing, and python3-zope.interface packages: Iinstall the python3-certbot-nginx package: Certbot needs to be able to find the correct server block in your Nginx configuration for it to be able to automatically configure SSL. Specifically, it does this … Read more

Host a Web Site with a Domain on IPFS

This article describes how to host a web site on IPFS. Requirements: Access to a Registered Domain and DNS records. Edit your DNS to point the A record to the IPFS server. We will need this to resolve in order to install a Let’s Encrypt Certificate. Lets Start with an Update # sudo apt update … Read more

Restore OST file for Outlook

Restoring ost-files Restore Ost-files aren’t intended to be backed up and restored. However, under certain circumstances an ost-file can still be used directly to restore data. You can restore an ost-file when; When the IMAP account the ost-file belongs to is still configured in Outlook and you… haven’t removed and re-added the IMAP account. haven’t … Read more

Creating the KVM Virtual Machine from the terminal

To Create a KVM guest VM from command line. I have an existing ISO directory at: /myzpool/iso/ And I am storing the KVM at: /myzpool/kvm The command that creates the virtual machine is this: $ sudo virt-install –name server01debian10-server3 \ –os-type linux \ –os-variant Debian10 \ –ram 2048\ –disk /myzpool/kvm/debian10-server3.qcow2,device=disk,bus=virtio,size=10,format=qcow2 \ –graphics none \ –noautoconsole … Read more

How To Enable Virsh Console Access For KVM Guests

This articles describes how to enable virsh console on KVM Guests List Virtual Machines $ sudo virsh list –all Id Name State ———————————– 13 debian10-server3 running After installing KVM and trying to console, all I see is below and no access to machine: $ sudo virsh console debian10-server3 Connected to domain centos8 Escape character is … Read more

Install IPFS on Debian 10 Buster

Installing IPFS through the command-line is handy if you plan on building applications and services on top of an IPFS node. This method is also useful if you’re setting up a node without a user interface, usually the case with remote servers or virtual machines. Using IPFS through the command-line allows you to do everything … Read more