Posts

Showing posts from August, 2022

How To Install and Configure Nextcloud

Image
  Original post: https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-nextcloud-on-ubuntu-20-04 Step 1 – Installing Nextcloud We will be installing Nextcloud using the  Snap  packaging system. This packaging system, available on Ubuntu 20.04 by default, allows organizations to ship software, along with all associated dependencies and configuration, in a self-contained unit with automatic updates. This means that instead of installing and configuring a web and database server and then configuring the Nextcloud app to run on it, we can install the  snap  package which handles the underlying systems automatically. To download the Nextcloud snap package and install it on the system, type: sudo snap install nextcloud Copy The Nextcloud package will be downloaded and installed on your server. You can confirm that the installation process was successful by listing the changes associated with the snap: snap changes nextcloud Copy Output ID Status Spawn

Checking link speed in Ubuntu

 First Update the system $ sudo apt update & sudo apt upgrade Install the network tools $ sudo apt-get install ethtool net-tools Method 1 $ ip addr The other methods below require you to know the name of the interface. For example in the below cases it is enp0s3. Method 2 $ sudo ethtool enp0s3 Method 3 $ sudo cat /sys/classes/net/enp0s3/speed