What package provides system call man pages on Ubuntu?Man pages from custom locationLinking to man page sections?Broken man pagesapt-get update fails in Ubuntu 14.04 due to GPG ErrorOnline Ubuntu man pages only showing i386?Full man pages indexRead man pages of a snap packageman pages - How to always show total lines and percentage in the bottom status / prompt lineSome system call man pages missingman doesn't display man pages; what to do if 'mandb -c' doesn't fix it?
Where or how can I find what interfaces an out of the box Apex class implements?
Dropping outliers based on "2.5 times the RMSE"
What is the Precise Definition of a “Complex Vector Space”?
As the Dungeon Master, how do I handle a player that insists on a specific class when I already know that choice will cause issues?
<schwitz>, <zwinker> etc. Does German always use 2nd Person Singular Imperative verbs for emoticons? If so, why?
Cops: The Hidden OEIS Substring
How do Windows version numbers work?
Can I use "candidate" as a verb?
Why does resistance reduce when a conductive fabric is stretched?
Bishop game - python
Returning the argument of a function if the argument is not of the right type
Is purchasing foreign currency before going abroad a losing proposition?
Filtering fine silt/mud from water (not necessarily bacteria etc.)
Why do players in the past play much longer tournaments than today's top players?
What is the difference between logical consistency and logical entailment in deductive logic?
Where is the USB2 OTG port on the RPi 4 Model B located?
What's the point of this scene involving Flash Thompson at the airport?
Do native speakers use ZVE or CPU?
How might the United Kingdom become a republic?
Keep milk (or milk alternative) for a day without a fridge
Why does the autopilot disengage even when it does not receive pilot input?
Was adding milk to tea started to reduce employee tea break time?
Optimising Table wrapping over a Select
Trying to find a flaw in my proof that there are more rearrangements of an infinite series than real numbers
What package provides system call man pages on Ubuntu?
Man pages from custom locationLinking to man page sections?Broken man pagesapt-get update fails in Ubuntu 14.04 due to GPG ErrorOnline Ubuntu man pages only showing i386?Full man pages indexRead man pages of a snap packageman pages - How to always show total lines and percentage in the bottom status / prompt lineSome system call man pages missingman doesn't display man pages; what to do if 'mandb -c' doesn't fix it?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
On Ubuntu 18.04, the following commands do not turn up any man pages:
man 2 creat
man 2 ioctl
man 2 chown
There are plenty of other examples, but these illustrate the point.
I tried a bit of apt search
and online searching as well, but didn't turn up any clear answer for which package(s) to install to get these and other similar man pages.
How can I install the system call man pages on Ubuntu 18.04?
apt manpage
add a comment |
On Ubuntu 18.04, the following commands do not turn up any man pages:
man 2 creat
man 2 ioctl
man 2 chown
There are plenty of other examples, but these illustrate the point.
I tried a bit of apt search
and online searching as well, but didn't turn up any clear answer for which package(s) to install to get these and other similar man pages.
How can I install the system call man pages on Ubuntu 18.04?
apt manpage
add a comment |
On Ubuntu 18.04, the following commands do not turn up any man pages:
man 2 creat
man 2 ioctl
man 2 chown
There are plenty of other examples, but these illustrate the point.
I tried a bit of apt search
and online searching as well, but didn't turn up any clear answer for which package(s) to install to get these and other similar man pages.
How can I install the system call man pages on Ubuntu 18.04?
apt manpage
On Ubuntu 18.04, the following commands do not turn up any man pages:
man 2 creat
man 2 ioctl
man 2 chown
There are plenty of other examples, but these illustrate the point.
I tried a bit of apt search
and online searching as well, but didn't turn up any clear answer for which package(s) to install to get these and other similar man pages.
How can I install the system call man pages on Ubuntu 18.04?
apt manpage
apt manpage
asked 9 hours ago
WildcardWildcard
4876 silver badges20 bronze badges
4876 silver badges20 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The manpages-dev
package provides most manpages in section 2 of the manual (documenting system calls), including those for the creat
, ioctl
and chown
system calls.
sudo apt update
sudo apt install manpages-dev
You can usually find the packages that provide manpages by searching the Ubuntu packages database for a file named like creat.2.gz
, where (if different) creat
is replaced by the name and 2
is replaced by the section number.
Packages providing manpages in some languages other than English also exist and can also usually be found in this way. For example, if you wanted the section 2 manual pages in French, you would install the manpages-fr-dev
package.
1
The additional tip about how to find which package provides a given man page is pure gold; thank you!!
– Wildcard
8 hours ago
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%2f1157912%2fwhat-package-provides-system-call-man-pages-on-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The manpages-dev
package provides most manpages in section 2 of the manual (documenting system calls), including those for the creat
, ioctl
and chown
system calls.
sudo apt update
sudo apt install manpages-dev
You can usually find the packages that provide manpages by searching the Ubuntu packages database for a file named like creat.2.gz
, where (if different) creat
is replaced by the name and 2
is replaced by the section number.
Packages providing manpages in some languages other than English also exist and can also usually be found in this way. For example, if you wanted the section 2 manual pages in French, you would install the manpages-fr-dev
package.
1
The additional tip about how to find which package provides a given man page is pure gold; thank you!!
– Wildcard
8 hours ago
add a comment |
The manpages-dev
package provides most manpages in section 2 of the manual (documenting system calls), including those for the creat
, ioctl
and chown
system calls.
sudo apt update
sudo apt install manpages-dev
You can usually find the packages that provide manpages by searching the Ubuntu packages database for a file named like creat.2.gz
, where (if different) creat
is replaced by the name and 2
is replaced by the section number.
Packages providing manpages in some languages other than English also exist and can also usually be found in this way. For example, if you wanted the section 2 manual pages in French, you would install the manpages-fr-dev
package.
1
The additional tip about how to find which package provides a given man page is pure gold; thank you!!
– Wildcard
8 hours ago
add a comment |
The manpages-dev
package provides most manpages in section 2 of the manual (documenting system calls), including those for the creat
, ioctl
and chown
system calls.
sudo apt update
sudo apt install manpages-dev
You can usually find the packages that provide manpages by searching the Ubuntu packages database for a file named like creat.2.gz
, where (if different) creat
is replaced by the name and 2
is replaced by the section number.
Packages providing manpages in some languages other than English also exist and can also usually be found in this way. For example, if you wanted the section 2 manual pages in French, you would install the manpages-fr-dev
package.
The manpages-dev
package provides most manpages in section 2 of the manual (documenting system calls), including those for the creat
, ioctl
and chown
system calls.
sudo apt update
sudo apt install manpages-dev
You can usually find the packages that provide manpages by searching the Ubuntu packages database for a file named like creat.2.gz
, where (if different) creat
is replaced by the name and 2
is replaced by the section number.
Packages providing manpages in some languages other than English also exist and can also usually be found in this way. For example, if you wanted the section 2 manual pages in French, you would install the manpages-fr-dev
package.
answered 9 hours ago
Eliah KaganEliah Kagan
86.5k22 gold badges241 silver badges382 bronze badges
86.5k22 gold badges241 silver badges382 bronze badges
1
The additional tip about how to find which package provides a given man page is pure gold; thank you!!
– Wildcard
8 hours ago
add a comment |
1
The additional tip about how to find which package provides a given man page is pure gold; thank you!!
– Wildcard
8 hours ago
1
1
The additional tip about how to find which package provides a given man page is pure gold; thank you!!
– Wildcard
8 hours ago
The additional tip about how to find which package provides a given man page is pure gold; thank you!!
– Wildcard
8 hours ago
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%2f1157912%2fwhat-package-provides-system-call-man-pages-on-ubuntu%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