this post was submitted on 20 Jul 2023
26 points (96.4% liked)

Linux

47228 readers
1122 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Just confirming

top 6 comments
sorted by: hot top controversial new old
[–] breadsmasher 26 points 1 year ago

POSIX itself is a set of standards which define the APIs but isn’t itself an implementation

[–] fubo 18 points 1 year ago* (last edited 1 year ago)

POSIX is a standard, or rather a whole series of standards. It also covers things like the shell and shell utilities, and the semantics of various kernel services, as well as the C libraries. These days you might want to look up SUS (Single Unix Specification) too.

https://en.wikipedia.org/wiki/Single_UNIX_Specification
https://en.wikipedia.org/wiki/POSIX

[–] [email protected] 16 points 1 year ago

POSIX specifies the API available to programs, and also shell and commands and stuff available to users. It does not specify which functions should be available from the standard C library, and which should be available from the kernel: from the standpoint of POSIX, it's all the same. POSIX doesn't care how the API is implemented, just that it is implemented correctly.

[–] [email protected] 4 points 1 year ago
[–] [email protected] 4 points 1 year ago

It's more or less a standard that describes how UNIX compatible OSes are supposed to work. That includes the APIs/ABIs as well.

At least that is how I understand it.

[–] [email protected] 0 points 1 year ago

its a way for scripts or program to be portable and compatible.