2022-10-06

21 Tar Command Examples in Linux

10/06/2022 10:41:00 AM Posted by Hoàng Dũng No comments
 The Linux “tar” stands for tape archive, which is used by a large number of Linux/Unix system administrators to deal with tape drive backup in Linux.The tar command is used to rip a collection of files and directories into a highly compressed archive file commonly called tarball or tar, gzip and bzip in Linux.The tar is...

2022-10-04

How to Fix “The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here.”

10/04/2022 11:41:00 AM Posted by Hoàng Dũng , , No comments
 This works with MariaDB. I assume it works with MySQL, but have not tried it. Run this SQL in PHPMyAdmin with phpmyadmin selected: GRANT SELECT, INSERT, UPDATE, DELETE ON phpmyadmin.* TO 'pma'@'localhost'; FLUSH PRIVILEGES;Note that this does not grant "ALL PRIVILEGES" because it is not necessary....