Well, I get in the end of backtrace this:
Code: Select all
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=58513, ...}) = 0
mmap2(NULL, 58513, PROT_READ, MAP_PRIVATE, 4, 0) = 0xb6f71000
close(4) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/arm-linux-gnueabihf/libnss_compat.so.2", O_RDONLY|O_CLOEXEC) = -1 EACCES (Permission denied)
open("/lib/arm-linux-gnueabihf/libnss_compat.so.2", O_RDONLY|O_CLOEXEC) = -1 EACCES (Permission denied)
open("/usr/lib/arm-linux-gnueabihf/libnss_compat.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libnss_compat.so.2", O_RDONLY|O_CLOEXEC) = -1 EACCES (Permission denied)
open("/usr/lib/libnss_compat.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
munmap(0xb6f71000, 58513) = 0
gettimeofday({1378885021, 903077}, NULL) = 0
send(3, "<27>Sep 11 09:37:01 ntpd[2912]: Cannot find user ID 102", 55, MSG_NOSIGNAL) = 55
exit_group(-1) = ?
Process 2912 detached
It seems that some packeges are missing and some permissions wrong.
EDIT: Oh yeah, I found a workaround, really not the best solution but it works
Two libraries (or their symlinks) were missing, I don't know why, so I did:
Code: Select all
sudo cp /lib/arm-linux-gnueabihf/libnss_compat.so.2 /usr/lib/
sudo cp /lib/arm-linux-gnueabihf/libnsl.so.1 /usr/lib/
If anyone knows any better solution, it is well accepted. Thanks to all who helped me.
