'Grotty' man page messages
If I try to search within certain man pages using grep, I get several 'grotty' messages.
For example:
man mpv | grep dvdnav
results in:
mpv dvdnav://[longest|menu|title][/device] [options]
grotty:<standard input> (<standard input>):90690: character above first line discarded
grotty:<standard input> (<standard input>):90694: character above first line discarded
grotty:<standard input> (<standard input>):90698: character above first line discarded
grotty:<standard input> (<standard input>):90702: character above first line discarded
grotty:<standard input> (<standard input>):91895: character above first line discarded
grotty:<standard input> (<standard input>):91899: character above first line discarded
grotty:<standard input> (<standard input>):91903: character above first line discarded
grotty:<standard input> (<standard input>):91907: character above first line discarded
grotty:<standard input> (<standard input>):94450: character above first line discarded
grotty:<standard input> (<standard input>):94454: character above first line discarded
grotty:<standard input> (<standard input>):94458: character above first line discarded
│dvdnav:// │ dvdnav://menu │
What causes these messages and how do I prevent them?
grep manpage
add a comment |
If I try to search within certain man pages using grep, I get several 'grotty' messages.
For example:
man mpv | grep dvdnav
results in:
mpv dvdnav://[longest|menu|title][/device] [options]
grotty:<standard input> (<standard input>):90690: character above first line discarded
grotty:<standard input> (<standard input>):90694: character above first line discarded
grotty:<standard input> (<standard input>):90698: character above first line discarded
grotty:<standard input> (<standard input>):90702: character above first line discarded
grotty:<standard input> (<standard input>):91895: character above first line discarded
grotty:<standard input> (<standard input>):91899: character above first line discarded
grotty:<standard input> (<standard input>):91903: character above first line discarded
grotty:<standard input> (<standard input>):91907: character above first line discarded
grotty:<standard input> (<standard input>):94450: character above first line discarded
grotty:<standard input> (<standard input>):94454: character above first line discarded
grotty:<standard input> (<standard input>):94458: character above first line discarded
│dvdnav:// │ dvdnav://menu │
What causes these messages and how do I prevent them?
grep manpage
This happens when the man page is NOT uncompressed first. Check if there is a/etc/man.conf
; if present and empty delete it and try your command again. If present and not empty post results of it.
– Rinzwind
Nov 9 '14 at 19:13
add a comment |
If I try to search within certain man pages using grep, I get several 'grotty' messages.
For example:
man mpv | grep dvdnav
results in:
mpv dvdnav://[longest|menu|title][/device] [options]
grotty:<standard input> (<standard input>):90690: character above first line discarded
grotty:<standard input> (<standard input>):90694: character above first line discarded
grotty:<standard input> (<standard input>):90698: character above first line discarded
grotty:<standard input> (<standard input>):90702: character above first line discarded
grotty:<standard input> (<standard input>):91895: character above first line discarded
grotty:<standard input> (<standard input>):91899: character above first line discarded
grotty:<standard input> (<standard input>):91903: character above first line discarded
grotty:<standard input> (<standard input>):91907: character above first line discarded
grotty:<standard input> (<standard input>):94450: character above first line discarded
grotty:<standard input> (<standard input>):94454: character above first line discarded
grotty:<standard input> (<standard input>):94458: character above first line discarded
│dvdnav:// │ dvdnav://menu │
What causes these messages and how do I prevent them?
grep manpage
If I try to search within certain man pages using grep, I get several 'grotty' messages.
For example:
man mpv | grep dvdnav
results in:
mpv dvdnav://[longest|menu|title][/device] [options]
grotty:<standard input> (<standard input>):90690: character above first line discarded
grotty:<standard input> (<standard input>):90694: character above first line discarded
grotty:<standard input> (<standard input>):90698: character above first line discarded
grotty:<standard input> (<standard input>):90702: character above first line discarded
grotty:<standard input> (<standard input>):91895: character above first line discarded
grotty:<standard input> (<standard input>):91899: character above first line discarded
grotty:<standard input> (<standard input>):91903: character above first line discarded
grotty:<standard input> (<standard input>):91907: character above first line discarded
grotty:<standard input> (<standard input>):94450: character above first line discarded
grotty:<standard input> (<standard input>):94454: character above first line discarded
grotty:<standard input> (<standard input>):94458: character above first line discarded
│dvdnav:// │ dvdnav://menu │
What causes these messages and how do I prevent them?
grep manpage
grep manpage
asked Nov 9 '14 at 18:41
EmmaVEmmaV
1545
1545
This happens when the man page is NOT uncompressed first. Check if there is a/etc/man.conf
; if present and empty delete it and try your command again. If present and not empty post results of it.
– Rinzwind
Nov 9 '14 at 19:13
add a comment |
This happens when the man page is NOT uncompressed first. Check if there is a/etc/man.conf
; if present and empty delete it and try your command again. If present and not empty post results of it.
– Rinzwind
Nov 9 '14 at 19:13
This happens when the man page is NOT uncompressed first. Check if there is a
/etc/man.conf
; if present and empty delete it and try your command again. If present and not empty post results of it.– Rinzwind
Nov 9 '14 at 19:13
This happens when the man page is NOT uncompressed first. Check if there is a
/etc/man.conf
; if present and empty delete it and try your command again. If present and not empty post results of it.– Rinzwind
Nov 9 '14 at 19:13
add a comment |
2 Answers
2
active
oldest
votes
I have no mpv
installed, but this seems more a warning of grotty
(the program that process man page sources to print it to standard output) probably coming from no-compliant man pages. Have you tried
man mpv 2> /dev/null | grep dvdnav
? This will redirect error and warnings from grotty
to the sink, so that you should have a cleaner output.
Nevertheless, that error is probably a bug in the mpv
man page (or in grotty
, you never know).
add a comment |
I'm pretty sure this is being caused by a bug in the man page text formatter.
man grotty
says,
grotty translates the output of GNU troff into a form suitable for
typewriter-like devices.
To debug this first, check if you can also display this man page with groffer
(graphical roffer).
When I ran into these errors, I found that groffer worked fine, without the error, but grotty threw up this 'character above first line discarded' error.
So I dug a little deeper. The page that was giving me the trouble was zoneminder.1.
First I unzipped it:
gunzip -k zoneminder.1.gz
Then using this I can run a test:
man -l man.1 | grep jksffjsd #-l means man the local file, i.e. produce error messages
Now edit zoneminder.1 with divide and conquer. First deleted the last 1/2 of it and the error went away. Then deleted only the last 3/4 of it and the error was still there. Then deleted the last 5/8 of it and the error was still there. Then took a look at it and started to just remove a few lines at a time until the error toggled from on to off.
I found myself in a table, and could only delete some whole entries from the table (see image below).
What I found was that this table was what was messing up, but only when it overflowed to the next page, as is shown here:
Remove one more entry from the table and the errors go away.
So it's fair to just ignore this.
I'll see if I can report it as a bug in grotty.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f547608%2fgrotty-man-page-messages%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I have no mpv
installed, but this seems more a warning of grotty
(the program that process man page sources to print it to standard output) probably coming from no-compliant man pages. Have you tried
man mpv 2> /dev/null | grep dvdnav
? This will redirect error and warnings from grotty
to the sink, so that you should have a cleaner output.
Nevertheless, that error is probably a bug in the mpv
man page (or in grotty
, you never know).
add a comment |
I have no mpv
installed, but this seems more a warning of grotty
(the program that process man page sources to print it to standard output) probably coming from no-compliant man pages. Have you tried
man mpv 2> /dev/null | grep dvdnav
? This will redirect error and warnings from grotty
to the sink, so that you should have a cleaner output.
Nevertheless, that error is probably a bug in the mpv
man page (or in grotty
, you never know).
add a comment |
I have no mpv
installed, but this seems more a warning of grotty
(the program that process man page sources to print it to standard output) probably coming from no-compliant man pages. Have you tried
man mpv 2> /dev/null | grep dvdnav
? This will redirect error and warnings from grotty
to the sink, so that you should have a cleaner output.
Nevertheless, that error is probably a bug in the mpv
man page (or in grotty
, you never know).
I have no mpv
installed, but this seems more a warning of grotty
(the program that process man page sources to print it to standard output) probably coming from no-compliant man pages. Have you tried
man mpv 2> /dev/null | grep dvdnav
? This will redirect error and warnings from grotty
to the sink, so that you should have a cleaner output.
Nevertheless, that error is probably a bug in the mpv
man page (or in grotty
, you never know).
edited Nov 9 '14 at 19:19
answered Nov 9 '14 at 19:06
RmanoRmano
25.3k879145
25.3k879145
add a comment |
add a comment |
I'm pretty sure this is being caused by a bug in the man page text formatter.
man grotty
says,
grotty translates the output of GNU troff into a form suitable for
typewriter-like devices.
To debug this first, check if you can also display this man page with groffer
(graphical roffer).
When I ran into these errors, I found that groffer worked fine, without the error, but grotty threw up this 'character above first line discarded' error.
So I dug a little deeper. The page that was giving me the trouble was zoneminder.1.
First I unzipped it:
gunzip -k zoneminder.1.gz
Then using this I can run a test:
man -l man.1 | grep jksffjsd #-l means man the local file, i.e. produce error messages
Now edit zoneminder.1 with divide and conquer. First deleted the last 1/2 of it and the error went away. Then deleted only the last 3/4 of it and the error was still there. Then deleted the last 5/8 of it and the error was still there. Then took a look at it and started to just remove a few lines at a time until the error toggled from on to off.
I found myself in a table, and could only delete some whole entries from the table (see image below).
What I found was that this table was what was messing up, but only when it overflowed to the next page, as is shown here:
Remove one more entry from the table and the errors go away.
So it's fair to just ignore this.
I'll see if I can report it as a bug in grotty.
add a comment |
I'm pretty sure this is being caused by a bug in the man page text formatter.
man grotty
says,
grotty translates the output of GNU troff into a form suitable for
typewriter-like devices.
To debug this first, check if you can also display this man page with groffer
(graphical roffer).
When I ran into these errors, I found that groffer worked fine, without the error, but grotty threw up this 'character above first line discarded' error.
So I dug a little deeper. The page that was giving me the trouble was zoneminder.1.
First I unzipped it:
gunzip -k zoneminder.1.gz
Then using this I can run a test:
man -l man.1 | grep jksffjsd #-l means man the local file, i.e. produce error messages
Now edit zoneminder.1 with divide and conquer. First deleted the last 1/2 of it and the error went away. Then deleted only the last 3/4 of it and the error was still there. Then deleted the last 5/8 of it and the error was still there. Then took a look at it and started to just remove a few lines at a time until the error toggled from on to off.
I found myself in a table, and could only delete some whole entries from the table (see image below).
What I found was that this table was what was messing up, but only when it overflowed to the next page, as is shown here:
Remove one more entry from the table and the errors go away.
So it's fair to just ignore this.
I'll see if I can report it as a bug in grotty.
add a comment |
I'm pretty sure this is being caused by a bug in the man page text formatter.
man grotty
says,
grotty translates the output of GNU troff into a form suitable for
typewriter-like devices.
To debug this first, check if you can also display this man page with groffer
(graphical roffer).
When I ran into these errors, I found that groffer worked fine, without the error, but grotty threw up this 'character above first line discarded' error.
So I dug a little deeper. The page that was giving me the trouble was zoneminder.1.
First I unzipped it:
gunzip -k zoneminder.1.gz
Then using this I can run a test:
man -l man.1 | grep jksffjsd #-l means man the local file, i.e. produce error messages
Now edit zoneminder.1 with divide and conquer. First deleted the last 1/2 of it and the error went away. Then deleted only the last 3/4 of it and the error was still there. Then deleted the last 5/8 of it and the error was still there. Then took a look at it and started to just remove a few lines at a time until the error toggled from on to off.
I found myself in a table, and could only delete some whole entries from the table (see image below).
What I found was that this table was what was messing up, but only when it overflowed to the next page, as is shown here:
Remove one more entry from the table and the errors go away.
So it's fair to just ignore this.
I'll see if I can report it as a bug in grotty.
I'm pretty sure this is being caused by a bug in the man page text formatter.
man grotty
says,
grotty translates the output of GNU troff into a form suitable for
typewriter-like devices.
To debug this first, check if you can also display this man page with groffer
(graphical roffer).
When I ran into these errors, I found that groffer worked fine, without the error, but grotty threw up this 'character above first line discarded' error.
So I dug a little deeper. The page that was giving me the trouble was zoneminder.1.
First I unzipped it:
gunzip -k zoneminder.1.gz
Then using this I can run a test:
man -l man.1 | grep jksffjsd #-l means man the local file, i.e. produce error messages
Now edit zoneminder.1 with divide and conquer. First deleted the last 1/2 of it and the error went away. Then deleted only the last 3/4 of it and the error was still there. Then deleted the last 5/8 of it and the error was still there. Then took a look at it and started to just remove a few lines at a time until the error toggled from on to off.
I found myself in a table, and could only delete some whole entries from the table (see image below).
What I found was that this table was what was messing up, but only when it overflowed to the next page, as is shown here:
Remove one more entry from the table and the errors go away.
So it's fair to just ignore this.
I'll see if I can report it as a bug in grotty.
answered 54 secs ago
Elliptical viewElliptical view
402312
402312
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f547608%2fgrotty-man-page-messages%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This happens when the man page is NOT uncompressed first. Check if there is a
/etc/man.conf
; if present and empty delete it and try your command again. If present and not empty post results of it.– Rinzwind
Nov 9 '14 at 19:13