Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to open handle to diag driver, error = 13, why?

Tags:

android

I was looking for a solution but found nothing that solved my problem.

07-10 13:55:46.943: E/Diag_Lib(13771):  Diag_LSM_Init: Failed to open handle to diag driver, error = 13

Why it can come caused?, How could I fix it?

thanks.

like image 689
Sergio Avatar asked Jul 10 '15 12:07

Sergio


1 Answers

error = 13
in "errno.h"

#define EACCES      13  /* Permission denied */`

So, you could see the permission of diag

ls -al /dev/diag
like image 124
user6868313 Avatar answered Oct 02 '22 16:10

user6868313