dm66
I ran the lsof command but I did not see anything referring to ttyS0... Should I be looking for something else?
After running the strace command, I see this:
Code:
5204 write(1, "[ 08:59:55 ] [ Loader ] Reader t"..., 53) = 53
5204 send(3, "[ 08:59:55 ] [ Loader ] Reader t"..., 53, 0) = 53
5204 close(-1) = -1 EBADF (Bad file descriptor)
5204 time(NULL) = 1156510795
5204 write(1, "[ 08:59:55 ] [ Phoenix ] Opening"..., 46) = 46
5204 send(3, "[ 08:59:55 ] [ Phoenix ] Opening"..., 46, 0) = 46
5204 open("ttyS0", O_RDWR|O_NONBLOCK|O_NOCTTY) = -1 ENOENT (No such file or directory)
5204 time(NULL) = 1156510795
5204 write(1, "[ 08:59:55 ] [ Phoenix ] Could n"..., 52) = 52
5204 send(3, "[ 08:59:55 ] [ Phoenix ] Could n"..., 52, 0) = 52
5204 time(NULL) = 1156510795
5204 write(1, "[ 08:59:55 ] [ Loader ] Reset fa"..., 41) = 41
5204 send(3, "[ 08:59:55 ] [ Loader ] Reset fa"..., 41, 0) = 41
What caught my eye was the "no such file or directory". The file is in /dev. My dmseg |grep tty seems to indicate everything is in order as well.
I'm not very good with linux so your help is greatly appreciated.
Just so you know, I built another ubuntu server with the same results.
Regards...