how to printscreen in terminal?

Asked by Brian Adeney

A number of check answers and error messages come up in boot sequence - how do I print or save a page of these to read later?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu kdebase Edit question
Assignee:
No assignee Edit question
Solved by:
marcobra (Marco Braida)
Solved:
Last query:
Last reply:
Revision history for this message
Best marcobra (Marco Braida) (marcobra) said :
#1

To read startup messages leater you can type from terminal

dmesg | less

or to have a text file form your dmesg output type:

dmesg > /tmp/dmesg.txt
gedit /tmp/dmesg.txt

Hope this helps

Revision history for this message
Brian Adeney (badeney) said :
#2

Thanks marcobra, that solved my question.