How to access system logs [closed]
up vote
-3
down vote
favorite
I need to find large amounts of text to provide data for a ML model (essentially for testing). I thought accessing various system logs could be interesting.
So far I have tried playing around netstat
, but there is not quite enough data there. How can I access larger system logs?
command-line logging
closed as off-topic by grawity, harrymc, davidgo, fixer1234, PeterH Nov 28 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – harrymc, fixer1234, PeterH
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
-3
down vote
favorite
I need to find large amounts of text to provide data for a ML model (essentially for testing). I thought accessing various system logs could be interesting.
So far I have tried playing around netstat
, but there is not quite enough data there. How can I access larger system logs?
command-line logging
closed as off-topic by grawity, harrymc, davidgo, fixer1234, PeterH Nov 28 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – harrymc, fixer1234, PeterH
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
-3
down vote
favorite
up vote
-3
down vote
favorite
I need to find large amounts of text to provide data for a ML model (essentially for testing). I thought accessing various system logs could be interesting.
So far I have tried playing around netstat
, but there is not quite enough data there. How can I access larger system logs?
command-line logging
I need to find large amounts of text to provide data for a ML model (essentially for testing). I thought accessing various system logs could be interesting.
So far I have tried playing around netstat
, but there is not quite enough data there. How can I access larger system logs?
command-line logging
command-line logging
edited Nov 28 at 14:08
asked Nov 27 at 17:55
Pinimo
84
84
closed as off-topic by grawity, harrymc, davidgo, fixer1234, PeterH Nov 28 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – harrymc, fixer1234, PeterH
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by grawity, harrymc, davidgo, fixer1234, PeterH Nov 28 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – harrymc, fixer1234, PeterH
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
On Ubuntu, try
gunzip -c /var/log/*.gz
That unzips all your log archives to stdout. Likely doable on all distros with some minorr changes.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
On Ubuntu, try
gunzip -c /var/log/*.gz
That unzips all your log archives to stdout. Likely doable on all distros with some minorr changes.
add a comment |
up vote
1
down vote
accepted
On Ubuntu, try
gunzip -c /var/log/*.gz
That unzips all your log archives to stdout. Likely doable on all distros with some minorr changes.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
On Ubuntu, try
gunzip -c /var/log/*.gz
That unzips all your log archives to stdout. Likely doable on all distros with some minorr changes.
On Ubuntu, try
gunzip -c /var/log/*.gz
That unzips all your log archives to stdout. Likely doable on all distros with some minorr changes.
answered Nov 27 at 21:28
xenoid
3,5783718
3,5783718
add a comment |
add a comment |