Comment 42 for bug 1828136

Revision history for this message
Hui Wang (hui.wang) wrote :

E: [autospawn] core-util.c: Home directory not accessible: Permission denied

I printed out the "Home directory" on my computer, it is /home/$my_account, and the USER of pulseaudio is $my_account too (through ps -aux"), then there is no "Permission denied" problem.

In the pulseaudio, it will check the USER of home dir and USER of pulseaudio daemon, if they don't equal, it will have "Permission denied" problem.

#ifdef HAVE_GETUID
    if (st.st_uid != getuid())
        return -EACCES;
#endif