Backup MySQL database from MySQLDump File Command Line Linux

To backup your MySQL database from mysqldump file, Simply type the MySQL command mysqldump -u [username] –p[password] [database_name] > [dump_file.sql] on the Linux Ubuntu command line and press enter, and it will take database backup and store dump file into

Restore MySQL database from Dump File Command Line Linux Ubuntu

To restore and backup your MySQL database from mysqldump file, Simply type the MySQL command mysql -u [user] -p [database_name] [mysqlDumpFile].sql on the Linux Ubuntu command line and press enter, and it will restore the database from the dump file.

How to Change Permissions All Directories to 755 and Files to 644 Linux Ubuntu

It is essential to secure directories, subdirectories and files in any system, To secure your file system and directories by changing the permissions of all directories, subdirectories, files and its content, Type “find . -type d -exec chmod 755 {}

How to Give Read, Write, & Execute Permissions to Folder in Linux For Users

To give read, write, and execute permissions to a folder on Linux Ubuntu terminal, you need to type chmod 777 Folder_Name command on the command line and press Enter. Apart from this, you can also grant permission to the folder