Linux Mint Cheat-sheet Commands
Updated on 2024-02-17 1. Check Version cat /etc/issue hostnamectl 2. Detail file /etc/linuxmint/info 3. Update sudo apt update 4. Upgrade sudo apt upgrade 5. Dist Upgrade sudo apt dist-upgrade
Updated on 2024-02-17 1. Check Version cat /etc/issue hostnamectl 2. Detail file /etc/linuxmint/info 3. Update sudo apt update 4. Upgrade sudo apt upgrade 5. Dist Upgrade sudo apt dist-upgrade
1. Get Size of All Table in a Database SELECT t.name AS TableName, s.name AS SchemaName, p.rows, SUM(a.total_pages) * 8 AS TotalSpaceKB, CAST(ROUND(((SUM(a.total_pages) * 8) / 1024.00), 2) AS NUMERIC(36,…