Showing 11 Result(s)

How to Install FFmpeg on Ubuntu 20.04

What is FFmpeg? FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a …

WordOps

WordOps Installation with Ubuntu 20.04.2 LTS

WordOps is an essential toolset that eases WordPress site and server administration.   Key Features Easy to install One step automated installer with migration from EasyEngine v3 support   Fast deployment Fast and automated WordPress, Nginx, PHP, MySQL & Redis installation   Custom Nginx build Nginx 1.18.0 – TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli …

How to recover MySQL root password?

How to recover MySQL root password? Let’s learn how to recover MySQL root password in case you have lost it. Know how to recover MySQL root password. Log in to account using SSH. You must login to your account using SSH as the root user to recover MySQL root password. Stop the MySQL service Use …

Importing and Exporting of MYSQL Database with Command Line SSH

Importing MYSQL Database Syntax $ mysql -u username -p database_name < path_to_mysql_file_here Importing existing MYSQL database with filename "wordpress.sql" stored at directory "/home/nishant/", Username is "root", terminal will prompt for asking password. $ mysql -u root -p wordpress < /home/nishant/wordpress.sql Exporting MYSQL Database Syntax $ mysqldump -p -u username database_name > path_to_mysql_file_here Exporting MYSQL database …

Create file with TimeStamp in Shell Script

I love using Ubuntu OS for development. I need to create a shell script that saves new file with a timestamp. Following are steps that I’ve followed: Understanding date command. nishant@nishantvaity:~$ date Wed Sep 18 13:53:49 IST 2019 Use any of following command to know options for date command. nishant@nishantvaity:~$ date –h OR nishant@nishantvaity:~$ man …

Git and Virtualmin

Introduction to Git Git is a source-code control system that allows multiple developers to work on the same project. Each developer has a copy of the repository on his workstation, and can check in changes to that repository and synchronize it with a central server. Other developers can then fetch those changes by synchronizing their …