Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
  • 1
    Online Resource
    Online Resource
    Gliwice : Helion
    Language: Polish
    Pages: 1 online resource (1 v.)
    Edition: Wydanie II.
    Keywords: Linux ; Operating systems (Computers) ; Electronic books ; Electronic books ; local
    Abstract: Przewodnik po jądrze sytemu Linux! Jądro systemu Linux to jeden z największych projektów rozwijanych przez ogromną społeczność. Setki wolontariuszy dniami i nocami rozwijają najważniejszy element tego systemu operacyjnego. I robią to naprawdę skutecznie! Każde kolejne wydanie Linuksa zawiera dziesiątki nowinek oraz ulepszeń - jest coraz szybsze, bezpieczniejsze i po prostu lepsze. Jednak początkujący programiści mogą mieć problemy z wykorzystaniem usług dostarczanych przez kernel. Masz obawy, że nie odnajdziesz się w gąszczu możliwości współczesnego jądra systemu Linux? Ta książka rozwieje je w mig. Jest to wyjątkowa pozycja na rynku wydawniczym, zgłębiająca właśnie te tajemnice. W trakcie lektury nauczysz się tworzyć niskopoziomowe oprogramowanie, które będzie się komunikowało bezpośrednio z jądrem systemu. Operacje wejścia i wyjścia, strumienie, zdarzenia, procesy to tylko część elementów, które błyskawicznie opanujesz. Ponadto nauczysz się zarządzać katalogami i plikami oraz poznasz koncepcję sygnałów. Książka ta jest niezastąpionym źródłem informacji dla wszystkich programistów pracujących z jądrem Linuksa. Docenisz tę lekturę! Poznaj metody zarządzania procesami zastosowanie sygnałów zaawansowane interfejsy wejścia i wyjścia jądro systemu od podszewki Poznaj jądro systemu od podszewki! Robert Love - od wielu lat jest użytkownikiem i współtwórcą systemu Linux. Rozwija środowisko graficzne GNOME oraz jądro systemu. Pracuje jako projektant oprogramowania w firmie Google, był też członkiem zespołu projektującego system operacyjny Android. Jest autorem licznych książek poświęconych programowaniu w systemie Linux.
    Note: Authorized Polish translation of the English ed. of Linux system programming : talking directly to the kernel and C library, 2nd ed. by Robert Love, c2013. Cf. Copyright page. - Includes bibliographical references and index. - Description based on online resource; title from title page (Safari, viewed Feb. 14, 2014)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : GoTop Information, Inc. | Boston, MA : Safari
    ISBN: 9789862769812
    Language: English
    Pages: 1 online resource (496 pages)
    Edition: 1st edition
    Keywords: Electronic books
    Abstract: 內容涵蓋 Linux Kernel 3.0 『任何人只要是對 Linux 的應用程式撰寫有興趣,或是想要知道如何提高自己的程式設計技能,書架上都應該有一本《Linux 系統程式設計》。這是一本專業 Linux 程式員必讀的書籍』 —Jeremy Allison Samba 團隊 直接與核心及 C 程式庫互動 Linux 系統程式設計所撰寫的軟體會直接利用 Linux 核心及基礎系統程式庫所提供的服務。Linux 核心的貢獻者 Robert Love 所寫的這本書,不僅是 Linux 系統程式設計的教材,也是 Linux 系統呼叫的參考手冊,亦是撰寫更聰明、更快速之程式碼的權威指南。 Love 對 POSIX 的標準函式與 Linux 所提供的特殊服務,做了明確的區分。除了新增了一章專門探討多執行緒,本書第二版還會從理論及各種程式設計議題來深入探討 Linux,內容包括: ‧Linux 核心、C 程式庫以及 C 編譯器概述 ‧基本 I/O 操作,例如檔案的讀及寫 ‧進階 I/O 介面、記憶體映射以及優化技術 ‧基本行程管理所用到的一系列系統呼叫 ‧進階的行程管理,包括即時行程 ‧執行緒的概念、多執行緒程式設計以及 Pthreads ‧檔案及目錄管理 ‧配置記憶體及優化記憶體存取的介面 ‧基本及進階的信號介面,以及它們在系統上所扮演的角色 ‧時鐘管理,包括 POSIX 時鐘以及高解析度計時器 Robert Love 自 Linux 草創之初就是它的使用者與貢獻者,他曾對 Linux 核心以及 GNOME desktop 環境做出重大貢獻。Robert 是 Google 的資深軟體工程師,而且是 Android 設計與運送團隊的成員
    Note: Online resource; Title from title page (viewed December 31, 2013) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    Online Resource
    Online Resource
    Sebastopol, Calif. : O'Reilly | Boston, Mass. :Safari Books Online
    ISBN: 0596009585 , 9780596009588
    Language: English
    Edition: 1st ed.
    Keywords: Linux ; Electronic books ; local
    Abstract: This book is about writing software that makes the most effective use of the system you're running on -- code that interfaces directly with the kernel and core system libraries, including the shell, text editor, compiler, debugger, core utilities, and system daemons. The majority of both Unix and Linux code is still written at the system level, and Linux System Programming focuses on everything above the kernel, where applications such as Apache, bash, cp, vim, Emacs, gcc, gdb, glibc, ls, mv, and X exist. Written primarily for engineers looking to program (better) at the low level, this book is an ideal teaching tool for any programmer. Even with the trend toward high-level development, either through web software (such as PHP) or managed code (C#), someone still has to write the PHP interpreter and the C# virtual machine. Linux System Programming gives you an understanding of core internals that makes for better code, no matter where it appears in the stack. Debugging high-level code often requires you to understand the system calls and kernel behavior of your operating system, too. Key topics include: An overview of Linux, the kernel, the C library, and the C compiler Reading from and writing to files, along with other basic file I/O operations, including how the Linux kernel implements and manages file I/O Buffer size management, including the Standard I/O library Advanced I/O interfaces, memory mappings, and optimization techniques The family of system calls for basic process management Advanced process management, including real-time processes File and directories-creating, moving, copying, deleting, and managing them Memory management -- interfaces for allocating memory, managing the memory youhave, and optimizing your memory access Signals and their role on a Unix system, plus basic and advanced signal interfaces Time, sleeping, and clock management, starting with the basics and continuing through POSIX clocks and high resolution timers With Linux System Programming , you will be able to take an in-depth look at Linux from both a theoretical and an applied perspective as you cover a wide range of programming topics.
    Note: Includes bibliographical references and index
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    Indianapolis, Ind. : Novell Press | Boston, MA :Safari,
    Language: English
    Pages: xvi, 401 p. , ill. ; , 23 cm
    Edition: 2nd ed.
    Keywords: Operating systems (Computers) ; Electronic books ; local
    Abstract: "Linux Kernel Development details the design and implementation of the Linux kernel, presenting the content in a manner that is beneficial to those writing and developing kernel code, as well as to programmers seeking to better understand the operating system and become more efficient and productive in their coding. The book details the major subsystems and features of the Linux kernel, including its design, implementation, and interfaces. It covers the Linux kernel from both angles, theoretical and applied, which should appeal to readers with a variety of interests and needs."--BOOK JACKET.
    Note: Includes bibliographical references and index
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Online Resource
    Online Resource
    Boston, Mass. ; : Addison-Wesley
    ISBN: 9780768696974 , 0768696976
    Language: English
    Pages: 1 online resource , ill.
    Edition: 3rd ed.
    Series Statement: Developer's library
    Parallel Title: Erscheint auch als
    Keywords: Linux ; Operating systems (Computers) ; Electronic books ; local
    Abstract: Linux Kernel Development details the design and implementation of the Linux kernel, presenting the content in a manner that is beneficial to those writing and developing kernel code, as well as to programmers seeking to better understand the operating system and become more efficient and productive in their coding. The book details the major subsystems and features of the Linux kernel, including its design, implementation, and interfaces. It covers the Linux kernel with both a practical and theoretical eye, which should appeal to readers with a variety of interests and needs. The author, a core kernel developer, shares valuable knowledge and experience on the 2.6 Linux kernel. Specific topics covered include process management, scheduling, time management and timers, the system call interface, memory addressing, memory management, the page cache, the VFS, kernel synchronization, portability concerns, and debugging techniques. This book covers the most interesting features of the Linux 2.6 kernel, including the CFS scheduler, preemptive kernel, block I/O layer, and I/O schedulers. The third edition of Linux Kernel Development includes new and updated material throughout the book: An all-new chapter on kernel data structures Details on interrupt handlers and bottom halves Extended coverage of virtual memory and memory allocation Tips on debugging the Linux kernel In-depth coverage of kernel synchronization and locking Useful insight into submitting kernel patches and working with the Linux kernel community
    Note: Description based on print version record
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    Online Resource
    Online Resource
    Sebastopol, CA : O'Reilly Media
    Language: English
    Pages: 1 online resource (1 v.) , ill.
    Edition: 2nd edition.
    Parallel Title: Erscheint auch als
    Keywords: Linux ; Operating systems (Computers) ; Electronic books ; local
    Abstract: Write software that draws directly on services offered by the Linux kernel and core system libraries. With this comprehensive book, Linux kernel contributor Robert Love provides you with a tutorial on Linux system programming, a reference manual on Linux system calls, and an insider's guide to writing smarter, faster code. Love clearly distinguishes between POSIX standard functions and special services offered only by Linux. With a new chapter on multithreading, this updated and expanded edition provides an in-depth look at Linux from both a theoretical and applied perspective over a wide range of programming topics, including: A Linux kernel, C library, and C compiler overview Basic I/O operations, such as reading from and writing to files Advanced I/O interfaces, memory mappings, and optimization techniques The family of system calls for basic process management Advanced process management, including real-time processes Thread concepts, multithreaded programming, and Pthreads File and directory management Interfaces for allocating memory and optimizing memory access Basic and advanced signal interfaces, and their role on the system Clock management, including POSIX clocks and high-resolution timers
    Note: Includes bibliographical references and index. - Description based on print version record
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    Online Resource
    Online Resource
    [Gliwice, Poland?] : Helion
    Language: Polish
    Pages: 1 online resource (1 v.)
    Keywords: Linux ; Operating systems (Computers) ; Electronic books ; Electronic books ; local
    Abstract: Opisany zosta? tu sposób dzia?ania standardowych i zaawansowanych interfejsów zdefiniowanych w Linuksie. Po lekturze napiszesz inteligentniejszy i szybszy kod, który dzia?a we w...
    Note: Translation of: Linux system programming, published by O'Reilly Media, c2007. - Includes bibliographical references and index. - Description based on online resource; title from title page (Safari, viewed July 16, 2013)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    ISBN: 0596009305
    Language: English
    Pages: 1 online resource (944 pages)
    Edition: 5th edition
    Keywords: Electronic books ; local
    Abstract: Over the last few years, Linux has grown both as an operating system and a tool for personal and business use. Simultaneously becoming more user friendly and more powerful as a back-end system, Linux has achieved new plateaus: the newer filesystems have solidified, new commands and tools have appeared and become standard, and the desktop--including new desktop environments--have proved to be viable, stable, and readily accessible to even those who don't consider themselves computer gurus. Whether you're using Linux for personal software projects, for a small office or home office (often termed the SOHO environment), to provide services to a small group of colleagues, or to administer a site responsible for millions of email and web connections each day, you need quick access to information on a wide range of tools. This book covers all aspects of administering and making effective use of Linux systems. Among its topics are booting, package management, and revision control. But foremost in Linux in a Nutshell are the utilities and commands that make Linux one of the most powerful and flexible systems available. Now in its fifth edition, Linux in a Nutshell brings users up-to-date with the current state of Linux. Considered by many to be the most complete and authoritative command reference for Linux available, the book covers all substantial user, programming, administration, and networking commands for the most common Linux distributions. Comprehensive but concise, the fifth edition has been updated to cover new features of major Linux distributions. Configuration information for the rapidly growing commercial network services and community update services is one of the subjects covered for the first time. But that's just the beginning. The book covers editors, shells, and LILO and GRUB boot options. There's also coverage of Apache, Samba, Postfix, sendmail, CVS, Subversion, Emacs, vi, sed, gawk, and much more. Everything that system administrators, developers, and power users need to know about Linux is referenced here, and they will turn to this book again and again.
    Note: Online resource; Title from title page (viewed July 27, 2005) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    ISBN: 9781457176623 , 1457176629 , 9788324614974 , 8324614974 , 9788324661114 , 8324661115 , 9781457176647 , 1457176645
    Language: Polish
    Pages: 1 online resource
    Uniform Title: Linux systems programming
    Parallel Title: Erscheint auch als
    DDC: 005.4/32
    Keywords: Linux ; Operating systems (Computers) ; Computer networks ; Linux ; COMPUTERS ; Operating Systems ; Linux ; COMPUTERS ; Operating Systems ; UNIX ; COMPUTERS ; System Administration ; Linux & UNIX Administration ; Systèmes d'exploitation (Ordinateurs) ; operating systems ; Réseaux d'ordinateurs
    Abstract: Wykorzystaj moc Linuksa i twórz funkcjonalne oprogramowanie systemowe! Jak zarz?dza? plikowymi operacjami wej?cia i wyj?cia? Jak zablokowa? fragmenty przestrzeni adresowej? Jak sterowa? dzia?aniem interfejsu odpytywania zdarze?? Dzisiaj systemu Linux nie musimy ju? nikomu przedstawia?, dzi?ki swojej funkcjonalno?ci i uniwersalno?ci sta? si? niezwykle popularny i szeroko wykorzystywany. Dzia?a wsz?dzie {u2015} poczynaj?c od najmniejszych telefonów komórkowych, a na pot??nych superkomputerach ko?cz?c. Z Linuksa korzystaj? agencje wywiadowcze i wojsko, jego niezawodno?? doceni?y równie? banki i instytucje finansowe. Oprogramowanie z przestrzeni u?ytkownika w systemie Linux mo?e by? uruchamiane na wszystkich platformach, na których poprawnie dzia?a kod j?dra. Czytaj?c ksi??k? "Linux. Programowanie systemowe", dowiesz si?, jak utworzy? oprogramowanie, które jest niskopoziomowym kodem, komunikuj?cym si? bezpo?rednio z j?drem oraz g?ównymi bibliotekami systemowymi. Opisany zosta? tu sposób dzia?ania standardowych i zaawansowanych interfejsów zdefiniowanych w Linuksie. Po lekturze napiszesz inteligentniejszy i szybszy kod, który dzia?a we wszystkich dystrybucjach Linuksa oraz na wszystkich rodzajach sprz?tu. Nauczysz si? budowa? poprawne oprogramowanie i maksymalnie je wykorzystywa?. Programowanie systemowe Biblioteka j?zyka C Kompilator j?zyka C Interfejs odpytywania zdarze? Zarz?dzanie procesami i pami?ci? U?ytkownicy i grupy Ograniczenia zasobów systemowych Zarz?dzanie plikami i katalogami Identyfikatory sygna?ów Struktury danych reprezentuj?ce czas Konwersje czasu〈div align="center"〉〈h4〉 Poznaj i ujarzmij pot?g? Linuksa! 〈/h4〉
    Note: "Wykorzystaj moc Linuxa i twórz funkcjonalne oprogramowanie systemowe"--Cover. - Includes bibliographical references and index. - Print version record
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. More information can be found here...