Saturday, December 19, 2020

How can I monitor the memory usage in Debian/Ubuntu

 I recommend bellow command:

watch -n 5 free -m


No comments:

Create Superuser in Mysql

Login MySQL using mysql -u root -p CREATE USER 'superuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGE...