APUE reading notes
UNIX Basics
reaction to a book or an article:
This chapter is an introduction to Unix. The author summarizes the basic knowledge of Unix in concise language and feels that it is written clearly.
UNIX architecture
Strictly speaking, the operating system can be defined as a kind of software, which controls the computer hardware resourc ...
Posted by lostprophetpunk on Wed, 02 Feb 2022 20:42:25 +0100
Bufferless file IO and directory operations
introduction
In the background development, for file I/O, we usually do not use fopen, fread and fwrite standard I/O encapsulated in C language, but directly use the system call function provided by Linux. Because these system calls do not use user buffers, we deal directly with the kernel, which is more efficient, and we can customize some ope ...
Posted by fenway on Sat, 22 Jan 2022 15:20:04 +0100