Hi again,
Progresses at least. It's not enough to share user tables on master database, you have to share sessions too to login on master or slave and be logged in both. Take this with a pinch of salt, but if you set he same session path for two installations, this seems to work at least for login/logout.
Master installation config.php:
session_save_path ( ABS_PATH . 'oc-content/uploads/' );
Slave installation config.php:
session_save_path ( '[path-to-master-installation]/oc-content/uploads/' );
And your cookies must be valid for the whole domain (mine are like that, but I couldn't recall if this is by default or I did something at some time)

CSRF token problems might arise, but then I've seen this only once, and my two testing installations are running Osclass 3.1.1, where CSRF errors are thrown seemingly randomly anyway, issue that I haven't seen at least on 3.1.2 installations.

Well, more food for testing, waiting for other bold explorers to share their experiences.

Regards