In your papers on setting up test systems under vbox, I notice that when you create the two ORACLE_HOMEs (one for db, one for grid components) you create the directories like this:
mkdir -p /u01/app/11.2.0/grid
mkdir -p /u01/app/oracle/product/11.2.0/db_1
My question is why do you put the db home several directory levels lower than the grid home? Why would it not be
mkdir -p /u01/app/oracle/product/11.2.0/grid
mkdir -p /u01/app/oracle/product/11.2.0/db_1
or
mkdir -p /u01/app/11.2.0/grid
mkdir -p /u01/app/11.2.0/db_1
When you then set ORACLE_BASE=/u01/app/oracle, that puts the home for grid outside of the ORACLE_BASE structure.
What am I missing?