Move file linux

Introduction To move a file or directory using the Linux command line, you can use the mv command.The mv command allows you to move files from one directory to another and it has several options that will surely come in handy for you. In this post we will start by describing the syntax of the …

Move file linux Read More »

Copy file linux

Introduction To copy a file from one directory to another in Linux, use the cp command.The cp command really has a lot of parameters which makes it really useful in all situations. This post will show you how you can use the cp command to copy a file using only the Linux command line.Furthermore, it …

Copy file linux Read More »

Grant all privileges mySQL

Introduction To grant all privileges to a MySQL user use the GRANT command.In this post we will see through a simple case how to grant all privileges or only a part to a user.Let’s not waste any more time and let’s get to the point! How to grant privileges to a MySQL user To grant …

Grant all privileges mySQL Read More »

Create user MySQL

Introduction To create a user in MySQL there is a command called CREATE USER.So, if you’ve installed MySQL and now you don’t know how to create a new user, don’t worry, you’ve come to the right place!Don’t worry, this post will clear all your doubts! In fact, with this tutorial we will see how easy …

Create user MySQL Read More »

Install MySQL on Ubuntu

Introduction Do you need to start saving your data in a MySQL database but don’t know how to install it on your Ubuntu machine?Don’t worry, It’s very easy to install MySQL on Ubuntu if you know how to do it.With this post I will show you how to install MySQL on Ubuntu and how to …

Install MySQL on Ubuntu Read More »

Rename file linux

Introduction To rename a file from the Linux command line you can use the mv command. You have surely happened to be working on a Linux system and need to rename a file using the command line.In this post we will see how you can use the Linux mv command to rename a file. The …

Rename file linux Read More »

Create file linux

Introduction To create a file in Linux you can use different ways, in particular in this post we will see how to do it using the touch command or the nano and vim editor. Don’t worry if you don’t know these tools, in each section you will find simple explanations full of examples.The nice thing …

Create file linux Read More »

Find text in file linux

Introduction How many times have you wondered how to find text in a file using the linux command line? In this article you will find all the answers you are looking for! We will see how to use the grep command to search for a text within a file or directory.Don’t worry, the post will …

Find text in file linux Read More »

MySQL Delete Database

Introduction The DROP DATABASE command is a basic command of the MySQL language and is used to delete an existing database. I imagine that you have created databases and then had to delete them.Maybe to start over or just to remove data you no longer needed.Well, with this tutorial we will discover how to delete …

MySQL Delete Database Read More »

Delete directory linux

Introduction Are you wondering if it is possible to delete a directory using the linux command line directly? You are in the right place! This tutorial will show you how to delete a directory using the rm command.Since this command has several options, we will also see the most common and useful ones. For this …

Delete directory linux Read More »