Tagged: Ubuntu

How to use Crontab on Ubuntu server

Crontab is a command used to execute tasks regularly in Linux/Unix operating systems. It is very suitable for repetitive tasks. I am using Ubuntu 20.04 LTS, but the crontab commands in most linux distributions...

Install FTP Server vsFTPd On Ubuntu

vsFTPd is a lightweight FTP server. After installation, we can use filezilla to upload or download files. Installation Configuration We may encounter “550 permission denied” error, which impossible to upload files. Then restart vsftpd...

Install Grafana and InfluxDB on Ubuntu server

Install Grafana Installation Start the server Verification Access to http://{ip address}:3000/, the default username and password is admin/admin. Install InfluxDB Installation Start the server Verification In the next article I will discuss how to...

Install Yang Explorer on Ubuntu

I am learning DevNet recently, so I installed Yang Explorer on Ubuntu server. The following is the installation process. Install required packages Install Yang Explorer Configure IP address Run Yang Explorer in the background...

Ansible uses ad-hoc to perform tasks

In the previous article I installed Ansible on Ubuntu, in this article I will discuss how to use Ansible. There are two ways for Ansible to perform tasks, ad-hoc and playbook. Here I will...

Install Ansible on Ubuntu

The installation environment is Ubuntu 19.10. Upgrade packages Install Ansible Verification ansible.cfg: This is the ansible configuration file.hosts: The hosts file includes the device information( IP address, etc.). Documentation Installing Ansible on Ubuntu https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#installing-ansible-on-ubuntu

Configure network with netplan on Ubuntu

I installed new Ubuntu 19.10 server and realized that I need to use netplan to configure the network. The following is my configuration. Configure the IP address and DNS Configure proxy Save configuration We...