I finally able to run XDK. If anyone with this error:
[5572:5572:0510/093721.666036:ERROR:process_singleton_posix.cc(451)] readlink failed: Permission denied
when start XDK in terminal. Then you can solve it by:
|
Correct the ownership, assuming pipi is your username:
chown -R pipi:pipi /home/pipi
and the permissions for all folders:
find /home/pipi -type d -print0 | xargs -0 chmod 775
775 - These are the default permissions when you create a new folder.
|
Then XDK will start. I haven't dig into what really make that fault. But it is not required to reinstall XDK. Also, it is not required to install nodejs or chromium before install XDK even though it is required it.
Also, I found these errors
LaunchProcess: failed to execvp:
/home/arthur/intel/XDK/bin/nacl_helper
[5574:5574:0510/093721.622198:ERROR:nacl_fork_delegate_linux.cc(315)] Bad NaCl helper startup ack (0 bytes)
before
[5572:5572:0510/093721.666036:ERROR:process_singleton_posix.cc(451)] readlink failed: Permission denied
occur in the ok env too (reminder: I installed a fresh ubuntu 16.04 in virtualbox and it is ok to install XDK 3922 and start it). That's why I look for the second error from internet and get the solution.