# du -sk -h /User/Ryan/* //查詢Ryan路徑下所有子資料夾大小
查詢MAC AIR 資料夾大小
最近同事的MAC AIR速度超慢,看了一下硬碟大小,剩餘幾百MB,故使用指令找出是那些資料佔用了空間,讓同事自行決定是否刪除。
重置MySQL管理者密碼
忘記root密碼怎麼辦?以下的方法幫你重新設定密碼。
# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
# service mysqld stop //停止服務
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking& //在安全模式下執行
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('輸入新密碼')where USER='root';
Query OK, 0 rows affected (0.01 sec)
Rows matched: 3 Changed: 0 Warnings: 0
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
# mysql -u root -p
Enter password:
mysql>