The Shell and the Kernel

The Shell and the Kernel
Author: Nicolas Abraham
Publisher: University of Chicago Press
Total Pages: 288
Release: 1994-09
Genre: Psychology
ISBN: 9780226000879

This volume is a superb introduction to the richness and originality of Abraham and Torok's approach to psychoanalysis and their psychoanalytic approach to literature. Abraham and Torok advocate a form of psychoanalysis that insists on the particularity of any individual's life story, the specificity of texts, and the singularity of historical situations. In what is both a critique and an extension of Freud, they develop interpretive strategies with powerful implications for clinicians, literary theorists, feminists, philosophers, and all others interested in the uses and limits of psychoanalysis. Central to their approach is a general theory of psychic concealment, a poetics of hiding. Whether in a clinical setting or a literary text, they search out the unspeakable secret as a symptom of devastating trauma revealed only in linguistic or behavioral encodings. Their view of trauma provides the linchpin for new psychic and linguistic structures such as the "transgenerational phantom," an undisclosed family secret handed down to an unwitting descendant, and the intra-psychic secret or "crypt," which entombs an unspeakable but consummated desire. Throughout, Abraham and Torok seek to restore communication with those intimate recesses of the mind which are, for one reason or another, denied expression. Classics of French theory and practice, the essays in volume one include four previously uncollected works by Maria Torok. Nicholas Rand supplies a substantial introductory essay and commentary throughout. Abraham and Torok's theories of fractured meaning and their search for coherence in the face of discontinuity and disruption have the potential to reshape not only psychoanalysis but all disciplines concerned with issues of textual, oral, or visual interpretation.

Introducing UNIX and Linux

Introducing UNIX and Linux
Author: Mike Joy
Publisher: Red Globe Press
Total Pages: 0
Release: 2002-07-23
Genre: Computers
ISBN: 0333987632

A tutorial style text covering the basics of UNIX and Linux for the complete beginner, this is a comprehensive introduction to these operating systems. It assumes no prior knowledge of programming nor any experience of using computers.

Understanding the Linux Kernel

Understanding the Linux Kernel
Author: Daniel Pierre Bovet
Publisher: "O'Reilly Media, Inc."
Total Pages: 786
Release: 2002
Genre: Computers
ISBN: 9780596002138

To thoroughly understand what makes Linux tick and why it's so efficient, you need to delve deep into the heart of the operating system--into the Linux kernel itself. The kernel is Linux--in the case of the Linux operating system, it's the only bit of software to which the term "Linux" applies. The kernel handles all the requests or completed I/O operations and determines which programs will share its processing time, and in what order. Responsible for the sophisticated memory management of the whole system, the Linux kernel is the force behind the legendary Linux efficiency. The new edition of Understanding the Linux Kernel takes you on a guided tour through the most significant data structures, many algorithms, and programming tricks used in the kernel. Probing beyond the superficial features, the authors offer valuable insights to people who want to know how things really work inside their machine. Relevant segments of code are dissected and discussed line by line. The book covers more than just the functioning of the code, it explains the theoretical underpinnings for why Linux does things the way it does. The new edition of the book has been updated to cover version 2.4 of the kernel, which is quite different from version 2.2: the virtual memory system is entirely new, support for multiprocessor systems is improved, and whole new classes of hardware devices have been added. The authors explore each new feature in detail. Other topics in the book include: Memory management including file buffering, process swapping, and Direct memory Access (DMA) The Virtual Filesystem and the Second Extended Filesystem Process creation and scheduling Signals, interrupts, and the essential interfaces to device drivers Timing Synchronization in the kernel Interprocess Communication (IPC) Program execution Understanding the Linux Kernel, Second Edition will acquaint you with all the inner workings of Linux, but is more than just an academic exercise. You'll learn what conditions bring out Linux's best performance, and you'll see how it meets the challenge of providing good system response during process scheduling, file access, and memory management in a wide variety of environments. If knowledge is power, then this book will help you make the most of your Linux system.

UNIX Operating System

UNIX Operating System
Author: Yukun Liu
Publisher: Springer Science & Business Media
Total Pages: 382
Release: 2011-11-24
Genre: Computers
ISBN: 3642204325

"UNIX Operating System: The Development Tutorial via UNIX Kernel Services" introduces the hierarchical structure, principles, applications, kernel, shells, development, and management of the UNIX operation systems multi-dimensionally and systematically. It clarifies the natural bond between physical UNIX implementation and general operating system and software engineering theories, and presents self-explanatory illustrations for readers to visualize and understand the obscure relationships and intangible processes in UNIX operating system. This book is intended for engineers and researchers in the field of applicable computing and engineering modeling. Yukun Liu is an Associate Professor at the Department of Computer Science and Technology, Hebei University of Science and Technology, China; Professor Yong Yue is Director of the Institute for Research of Applicable Computing and Head of the Department of Computer Science and Technology, University of Bedfordshire, UK; Professor Liwei Guo is Dean of the College of Information Science and Engineering, Hebei University of Science and Technology, China.

Code of Federal Regulations

Code of Federal Regulations
Author: United States. Department of the Treasury
Publisher:
Total Pages: 642
Release: 2013
Genre: Agricultural laws and legislation
ISBN:

Special edition of the Federal register, containing a codification of documents of general applicability and future effect as of April ... with ancillaries.

Sams Teach Yourself FreeBSD in 24 Hours

Sams Teach Yourself FreeBSD in 24 Hours
Author: Michael Urban
Publisher: Sams Publishing
Total Pages: 460
Release: 2002
Genre: Computers
ISBN: 9780672324246

There currently no books on the market that offer to teach FreeBSD to a novice. This book will be very attractive to the rushed and impatient, as well as to those who simply have a desire to learn the benefits of FreeBSD when compared to other proprietary operating systems. The book covers the most beneficial uses of FreeBSD, as well as the information needed to install and configure the operating system. This book will be the definitive tutorial reference for the growing FreeBSD market.

Linux Kernel Programming

Linux Kernel Programming
Author: Kaiwan N Billimoria
Publisher: Packt Publishing Ltd
Total Pages: 741
Release: 2021-03-19
Genre: Computers
ISBN: 1789955920

Learn how to write high-quality kernel module code, solve common Linux kernel programming issues, and understand the fundamentals of Linux kernel internals Key Features Discover how to write kernel code using the Loadable Kernel Module framework Explore industry-grade techniques to perform efficient memory allocation and data synchronization within the kernel Understand the essentials of key internals topics such as kernel architecture, memory management, CPU scheduling, and kernel synchronization Book DescriptionLinux Kernel Programming is a comprehensive introduction for those new to Linux kernel and module development. This easy-to-follow guide will have you up and running with writing kernel code in next-to-no time. This book uses the latest 5.4 Long-Term Support (LTS) Linux kernel, which will be maintained from November 2019 through to December 2025. By working with the 5.4 LTS kernel throughout the book, you can be confident that your knowledge will continue to be valid for years to come. You’ll start the journey by learning how to build the kernel from the source. Next, you’ll write your first kernel module using the powerful Loadable Kernel Module (LKM) framework. The following chapters will cover key kernel internals topics including Linux kernel architecture, memory management, and CPU scheduling. During the course of this book, you’ll delve into the fairly complex topic of concurrency within the kernel, understand the issues it can cause, and learn how they can be addressed with various locking technologies (mutexes, spinlocks, atomic, and refcount operators). You’ll also benefit from more advanced material on cache effects, a primer on lock-free techniques within the kernel, deadlock avoidance (with lockdep), and kernel lock debugging techniques. By the end of this kernel book, you’ll have a detailed understanding of the fundamentals of writing Linux kernel module code for real-world projects and products.What you will learn Write high-quality modular kernel code (LKM framework) for 5.x kernels Configure and build a kernel from source Explore the Linux kernel architecture Get to grips with key internals regarding memory management within the kernel Understand and work with various dynamic kernel memory alloc/dealloc APIs Discover key internals aspects regarding CPU scheduling within the kernel Gain an understanding of kernel concurrency issues Find out how to work with key kernel synchronization primitives Who this book is for This book is for Linux programmers beginning to find their way with Linux kernel development. If you’re a Linux kernel and driver developer looking to overcome frequent and common kernel development issues, or understand kernel intervals, you’ll find plenty of useful information. You’ll need a solid foundation of Linux CLI and C programming before you can jump in.