Coding, Linux, Hacking Security, Learning!
Archive for October, 2008
How to add new user in MySql
Oct 7th
login as root:
>mysql -u root -p
>*******
mysql>GRANT ALL PRIVILEGES ON *.* TO 'cooluser'@'localhost'
IDENTIFIED BY 'some_pass' WITH GRANT OPTION;
find out the size of directory in Linux
Oct 5th