You are not logged in.
With the few exeptions like hibernate.log, I can't read most of those files, including:
everything.log
errors.log
kernel.log
messages.log
syslog.log
When I try to open them (as root), all I get is
The file xxx.log does not look like a text file or the file encoding is not supported.However, they do open with nano
Last edited by Lockheed (2013-06-20 14:20:11)
Offline
They probably contain some non-UTF-8 byte sequences and are therefore treated as binary files. Check with
$ file <path>Nano doesn't care.
Offline
Yeah, it says it's data. But nano is quite useless for very long text files, which is why I'm trying geany
Offline
If you want to only view the files (I assume this since those are logs), maybe try
$ less -M <file>You can navigate pretty well with it (e.g. go to a specific line).
Edit:
You could also try to find if there is an option in Geany that would allow you to see "non-text" files.
Last edited by msthev (2013-06-20 18:41:27)
Offline
It looks like they removed that function some time ago from geany.
Thanks for the tips.
Offline