How to install downloaded binaries:
bunzip xyz.123.tra.bz2tar xyz.123./ configure
make
su -root (make sure you are root or someone with the install privilege)
make install
make clean
—————————————————————————————————————-
Permissions:
rwx rwx rwx
1 2 3
u g o
u = user
g = group
o = other
r = read = 4
w = write = 2
x = execute = 1
+ = add user
– = remove user
chmod o-r = remove/delete the read permission from other group
g+w = add write permission to group
————————————————————————————————————-
MySQL:
grant all privileges on *.* to root@”localhost” identified by ‘password’;
grants all privileges on all databases to root
——————————————————————————————————-