List of system calls with explanation? [closed]

Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
Where can I find a list of system calls along with what each call does? I am not a C programmer, I am an admin so at times I find it helpful to run an strace on a running process to see what is going on, but there is a lot of stuff I don't understand. I guess I can accept reading the source code, but that is a time consuming endeavor for someone like me who doesn't spend all day programming. Any advice for understanding this facet of GNU/Linux?
linux system-calls
closed as off-topic by Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM Apr 21 at 22:00
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." â Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM
add a comment |Â
up vote
2
down vote
favorite
Where can I find a list of system calls along with what each call does? I am not a C programmer, I am an admin so at times I find it helpful to run an strace on a running process to see what is going on, but there is a lot of stuff I don't understand. I guess I can accept reading the source code, but that is a time consuming endeavor for someone like me who doesn't spend all day programming. Any advice for understanding this facet of GNU/Linux?
linux system-calls
closed as off-topic by Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM Apr 21 at 22:00
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." â Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM
1
Peruseman syscallsor syscalls.kernelgrok.com With unix and Linux chances are there ismanorinfopage for alsmost everything,infobeing broader.
â ajeh
Apr 20 at 21:31
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
Where can I find a list of system calls along with what each call does? I am not a C programmer, I am an admin so at times I find it helpful to run an strace on a running process to see what is going on, but there is a lot of stuff I don't understand. I guess I can accept reading the source code, but that is a time consuming endeavor for someone like me who doesn't spend all day programming. Any advice for understanding this facet of GNU/Linux?
linux system-calls
Where can I find a list of system calls along with what each call does? I am not a C programmer, I am an admin so at times I find it helpful to run an strace on a running process to see what is going on, but there is a lot of stuff I don't understand. I guess I can accept reading the source code, but that is a time consuming endeavor for someone like me who doesn't spend all day programming. Any advice for understanding this facet of GNU/Linux?
linux system-calls
edited Apr 21 at 11:53
Kusalananda
102k13199315
102k13199315
asked Apr 20 at 21:27
Timothy Pulliam
994515
994515
closed as off-topic by Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM Apr 21 at 22:00
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." â Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM
closed as off-topic by Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM Apr 21 at 22:00
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." â Michael Homer, Rui F Ribeiro, Romeo Ninov, Jesse_b, telcoM
1
Peruseman syscallsor syscalls.kernelgrok.com With unix and Linux chances are there ismanorinfopage for alsmost everything,infobeing broader.
â ajeh
Apr 20 at 21:31
add a comment |Â
1
Peruseman syscallsor syscalls.kernelgrok.com With unix and Linux chances are there ismanorinfopage for alsmost everything,infobeing broader.
â ajeh
Apr 20 at 21:31
1
1
Peruse
man syscalls or syscalls.kernelgrok.com With unix and Linux chances are there is man or info page for alsmost everything, info being broader.â ajeh
Apr 20 at 21:31
Peruse
man syscalls or syscalls.kernelgrok.com With unix and Linux chances are there is man or info page for alsmost everything, info being broader.â ajeh
Apr 20 at 21:31
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
The Linux system calls are extensively documented in the man-pages project. Start with the list of syscalls, which is the syscalls(2) manpage (man 2 syscalls on your system). That manpage lists all the syscalls with a very brief summary, and links to the individual manpages documenting each one.
Many system calls are used, with the help of the C library, to provide interfaces specified by POSIX, so you might find it useful to look them up there (in the âÂÂSystem Interfacesâ section).
Yes ---- +1 ----
â jlliagre
Apr 21 at 10:53
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
The Linux system calls are extensively documented in the man-pages project. Start with the list of syscalls, which is the syscalls(2) manpage (man 2 syscalls on your system). That manpage lists all the syscalls with a very brief summary, and links to the individual manpages documenting each one.
Many system calls are used, with the help of the C library, to provide interfaces specified by POSIX, so you might find it useful to look them up there (in the âÂÂSystem Interfacesâ section).
Yes ---- +1 ----
â jlliagre
Apr 21 at 10:53
add a comment |Â
up vote
3
down vote
accepted
The Linux system calls are extensively documented in the man-pages project. Start with the list of syscalls, which is the syscalls(2) manpage (man 2 syscalls on your system). That manpage lists all the syscalls with a very brief summary, and links to the individual manpages documenting each one.
Many system calls are used, with the help of the C library, to provide interfaces specified by POSIX, so you might find it useful to look them up there (in the âÂÂSystem Interfacesâ section).
Yes ---- +1 ----
â jlliagre
Apr 21 at 10:53
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
The Linux system calls are extensively documented in the man-pages project. Start with the list of syscalls, which is the syscalls(2) manpage (man 2 syscalls on your system). That manpage lists all the syscalls with a very brief summary, and links to the individual manpages documenting each one.
Many system calls are used, with the help of the C library, to provide interfaces specified by POSIX, so you might find it useful to look them up there (in the âÂÂSystem Interfacesâ section).
The Linux system calls are extensively documented in the man-pages project. Start with the list of syscalls, which is the syscalls(2) manpage (man 2 syscalls on your system). That manpage lists all the syscalls with a very brief summary, and links to the individual manpages documenting each one.
Many system calls are used, with the help of the C library, to provide interfaces specified by POSIX, so you might find it useful to look them up there (in the âÂÂSystem Interfacesâ section).
edited Apr 21 at 10:39
answered Apr 21 at 9:37
Stephen Kitt
140k22303364
140k22303364
Yes ---- +1 ----
â jlliagre
Apr 21 at 10:53
add a comment |Â
Yes ---- +1 ----
â jlliagre
Apr 21 at 10:53
Yes ---- +1 ----
â jlliagre
Apr 21 at 10:53
Yes ---- +1 ----
â jlliagre
Apr 21 at 10:53
add a comment |Â
1
Peruse
man syscallsor syscalls.kernelgrok.com With unix and Linux chances are there ismanorinfopage for alsmost everything,infobeing broader.â ajeh
Apr 20 at 21:31