I've been struggling for several days because I run an application that actually runs more application and these generate outputs. The case is that one of these outputs is generated with the following permissions:
?-wxr-s--- 1 ubuntu ubuntu 1318 Aug 28 12:55 output_app.err
Then you could think to do something like, sudo vim output_app.err
but reports the following output_app.err is not a file
. This output is generated in a bash script, exactly the command is executed using eval and the output is redirected. I thought that this error could be related with the filesystem corruption, I am running Ubuntu in a arm-32bit processor living in a SD card.
I runned dmesg and I saw that error after the application was executed:
[ 1203.425248] Unable to handle kernel NULL pointer dereference at virtual address 00000104
[ 1203.432000] pgd = d6748000
[ 1203.433343] [00000104] *pgd=00000000
Internal error: Oops - BUG: 805 [#8] PREEMPT SMP ARM
Any ideas of why this would happend? Thank you.
chmod u+r output_app.err
. The attributes are a little strange... you may need to putsudo
before (you are not mr ubuntu). Check even iflsof
say something on that file... – Hastur Oct 17 '18 at 14:38uname -a
) and is there a later version to which you can upgrade? – Chris Davies Oct 17 '18 at 14:59