Showing 17 Result(s)
Excalidraw

Install Excalidraw server on local system

What is Excalidraw Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them. Clone the repo Excalidraw is opensource, which can be installed locally by cloning it’s Github repository. git clone https://github.com/excalidraw/excalidraw.git Change directory cd excalidraw Install the dependencies yarn Start the server yarn start …

Golang

Go Installation at macOS Platform

Go is a statically typed, compiled programming language designed at Google by Robert Griesemer, Rob Pike, and Ken Thompson. Go is syntactically similar to C, but with memory safety, garbage collection, structural typing, and CSP-style concurrency. The language is often referred to as Golang because of its former domain name, golang.org, but the proper name …

IAT – ISO9660 Analyzer Tools by Salvatore Santagati

iat is Iso9660 Analyzer Tools by Salvatore Santagati, this tool have engine for detect many structure of image file. Install iat to mount .bin files on Ubuntu Operating System. Install iat: sudo apt-get install iat Convert the .bin file to .iso file: iat source.bin target.iso Mount the .iso file: sudo mkdir -p /mnt/DVD1 sudo mount …

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 …