Buy linux-fans.com ?

Products related to Suitable:


  • Linux Kernel Development
    Linux Kernel Development

    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 structuresDetails on interrupt handlers and bottom halvesExtended coverage of virtual memory and memory allocationTips on debugging the Linux kernelIn-depth coverage of kernel synchronization and lockingUseful insight into submitting kernel patches and working with the Linux kernel community

    Price: 36.99 £ | Shipping*: 0.00 £
  • Learning eBPF : Programming the Linux Kernel for Enhanced Observability, Networking, and Security
    Learning eBPF : Programming the Linux Kernel for Enhanced Observability, Networking, and Security

    What is eBPF? With this revolutionary technology, you can write custom code that dynamically changes the way the kernel behaves.It's an extraordinary platform for building a whole new generation of security, observability, and networking tools. This practical book is ideal for developers, system administrators, operators, and students who are curious about eBPF and want to know how it works.Author Liz Rice, chief open source officer with cloud native networking and security specialists Isovalent, also provides a foundation for those who want to explore writing eBPF programs themselves. With this book, you will:Learn why eBPF has become so important in the past couple of yearsWrite basic eBPF code, and manipulate eBPF programs and attach them to eventsExplore how eBPF components interact with Linux to dynamically change the operating system's behaviorLearn how tools based on eBPF can instrument applications without changes to the apps or their configurationDiscover how this technology enables new tools for observability, security, and networking

    Price: 44.99 £ | Shipping*: 0.00 £
  • Understanding the Linux Kernel
    Understanding the Linux Kernel

    In order to thoroughly understand what makes Linux tick and why it works so well on a wide variety of systems, you need to delve deep into the heart of the kernel.The kernel handles all interactions between the CPU and the external world, and determines which programs will share processor time, in what order.It manages limited memory so well that hundreds of processes can share the system efficiently, and expertly organizes data transfers so that the CPU isn't kept waiting any longer than necessary for the relatively slow disks.The third edition of Understanding the Linux Kernel takes you on a guided tour of the most significant data structures, algorithms, and programming tricks used in the kernel.Probing beyond superficial features, the authors offer valuable insights to people who want to know how things really work inside their machine. Important Intel-specific features are discussed. Relevant segments of code are dissected line by line.But the book covers more than just the functioning of the code; it explains the theoretical underpinnings of why Linux does things the way it does.This edition of the book covers Version 2.6, which has seen significant changes to nearly every kernel subsystem, particularly in the areas of memory management and block devices.The book focuses on the following topics: * Memory management, including file buffering, process swapping, and Direct memory Access (DMA) * The Virtual Filesystem layer and the Second and Third Extended Filesystems * Process creation and scheduling * Signals, interrupts, and the essential interfaces to device drivers * Timing * Synchronization within the kernel * Interprocess Communication (IPC) * Program execution Understanding the Linux Kernel will acquaint you with all the inner workings of Linux, but it's 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.This book will help you make the most of your Linux system.

    Price: 55.99 £ | Shipping*: 0.00 £
  • Linux System Programming
    Linux System Programming

    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

    Price: 55.99 £ | Shipping*: 0.00 £
  • Mastering Embedded Linux Programming
    Mastering Embedded Linux Programming

    Harness the power of Linux to create versatile and robust embedded solutionsAbout This Book• Create efficient and secure embedded devices using Linux• Minimize project costs by using open source tools and programs• Explore each component technology in depth, using sample implementations as a guideWho This Book Is ForThis book is ideal for Linux developers and system programmers who are already familiar with embedded systems and who want to know how to create best-in-class devices.A basic understanding of C programming and experience with systems programming is needed. What You Will Learn• Understand the role of the Linux kernel and select an appropriate role for your application• Use Buildroot and Yocto to create embedded Linux systems quickly and efficiently• Create customized bootloaders using U-Boot• Employ perf and ftrace to identify performance bottlenecks• Understand device trees and make changes to accommodate new hardware on your device• Write applications that interact with Linux device drivers• Design and write multi-threaded applications using POSIX threads• Measure real-time latencies and tune the Linux kernel to minimize themIn DetailMastering Embedded Linux Programming takes you through the product cycle and gives you an in-depth description of the components and options that are available at each stage.You will begin by learning about toolchains, bootloaders, the Linux kernel, and how to configure a root filesystem to create a basic working device.You will then learn how to use the two most commonly used build systems, Buildroot and Yocto, to speed up and simplify the development process.Building on this solid base, the next section considers how to make best use of raw NAND/NOR flash memory and managed flash eMMC chips, including mechanisms for increasing the lifetime of the devices and to perform reliable in-field updates.Next, you need to consider what techniques are best suited to writing applications for your device.We will then see how functions are split between processes and the usage of POSIX threads, which have a big impact on the responsiveness and performance of the final device The closing sections look at the techniques available to developers for profiling and tracing applications and kernel code using perf and ftrace. Style and approach This book is an easy-to-follow and pragmatic guide consisting of an in-depth analysis of the implementation of embedded devices.Each topic has a logical approach to it; this coupled with hints and best practices helps you understand embedded Linux better.

    Price: 39.99 £ | Shipping*: 0.00 £
  • The Linux Programming Interface
    The Linux Programming Interface

    The Linux Programming Interface (TLPI) is the definitive guide to the Linux and UNIX programming interface the interface employed by nearly every application that runs on a Linux or UNIX system.In this authoritative work, Linux programming expert Michael Kerrisk provides detailed descriptions of the system calls and library functions that you need in order to master the craft of system programming, and accompanies his explanations with clear, complete example programs.You'll find descriptions of over 500 system calls and library functions, and more than 200 example programs, 88 tables, and 115 diagrams.You'll learn how to: Read and write files efficiently Use signals, clocks, and timers Create processes and execute programs Write secure programs Write multithreaded programs using POSIX threads Build and use shared libraries Perform interprocess communication using pipes, message queues, shared memory, and semaphores Write network applications with the sockets API While The Linux Programming Interface covers a wealth of Linux-specific features, including epoll, inotify, and the /proc file system, its emphasis on UNIX standards (POSIX.1-2001/SUSv3 and POSIX.1-2008/SUSv4) makes it equally valuable to programmers working on other UNIX platforms.The Linux Programming Interface is the most comprehensive single-volume work on the Linux and UNIX programming interface, and a book that's destined to become a new classic.The Linux Programming Interface (TLPI) is the definitive guide to the Linux and UNIX programming interface the interface employed by nearly every application that runs on a Linux or UNIX system.In this authoritative work, Linux programming expert Michael Kerrisk provides detailed descriptions of the system calls and library functions that you need in order to master the craft of system programming, and accompanies his explanations with clear, complete example programs.You'll find descriptions of over 500 system calls and library functions, and more than 200 example programs, 88 tables, and 115 diagrams.You'll learn how to: Read and write files efficiently Use signals, clocks, and timers Create processes and execute programs Write secure programs Write multithreaded programs using POSIX threads Build and use shared libraries Perform interprocess communication using pipes, message queues, shared memory, and semaphores Write network applications with the sockets API While The Linux Programming Interface covers a wealth of Linux-specific features, including epoll, inotify, and the /proc file system, its emphasis on UNIX standards (POSIX.1-2001/SUSv3 and POSIX.1-2008/SUSv4) makes it equally valuable to programmers working on other UNIX platforms.The Linux Programming Interface is the most comprehensive single-volume work on the Linux and UNIX programming interface, and a book that's destined to become a new classic.

    Price: 94.99 £ | Shipping*: 0.00 £
  • Microsoft Office 2019 Standard Open License, terminal server suitable, volume license
    Microsoft Office 2019 Standard Open License, terminal server suitable, volume license

    Office 2019StandardVolume Licenses for companies of all sizes Microsoft Office is the most widely used office suite of all. Word, Excel and Co. convince users around the world with their range of functions and simple, intuitive operation. Especially in the business sector, Microsoft Office is indispensable today. Thanks to affordable volume licenses from Microsoft's open-license program, it is now easier than ever for small businesses to equip their IT with exactly the right Office licenses. For example with the current version Office 2019Standard. Through blitzhandel24 you can purchase MAK and KMS licenses for Office 2019Standardat very attractive conditions. Of course with advice, secure order processing and quick shipment of the purchased license keys by e-mail. Which programs are included in Microsoft Office 2019Standard? Office 2019Standardis shipped with most of the popular applications in the suite. In detail these are the word processing Word, the spreadsheet Excel, Powerpoint for presentations and Outlook as a universally usable groupware solution. Also included are the desktop publishing software Publisher and the note solution OneNote. Access to the web app versions of Word, Excel, Powerpoint and Outlook is also ensured with the Microsoft Office 2019Standardpackage. Not included are mainly the database software Access and the VoIP application Lync - both programs are reserved for the professional versions of Microsoft Office. For many office workers, however, the Microsoft Office 2019StandardPackage is sufficient for everyday use. How does the Microsoft Open licensing program work? Traditionally, volume licenses were only available to comparatively large companies. Businesses without the need or resources to purchase hundreds of licenses at once were reliant on purchasing Office and other software in regular retail versions. The Open Licensing Program also gives smaller companies the opportunity to benefit from the advantages of volume licensing. Use is possible from as little as five licenses, after which the license portfolio can easily be expanded by individual additional licenses. At blitzhandel24 you can purchase Office 2019StandardOpen-NL licenses as MAK as well as KMS version. What are MAK and KMS licenses? Microsoft Office 2019StandardVolume Licenses can be used in two ways. As Multiple Activation Key (MAK) or via a Key Management Service (KMS). The Office 2019StandardMAK license is similar in handling to the licenses for end users. For each installation on a computer in the company, the license key must be entered individually and is checked and validated online at Microsoft. From a certain size of your IT infrastructure it can be a smart decision to set up an Office 2019StandardKMS Server. The latter then takes over the verification of the licenses in house and communicates independently with the remote station at Microsoft. This makes it easier for you and your team to distribute your Microsoft Office 2019StandardVolume Licenses to the individual computers. By the way: A conversion of KMS and MAK license keys is possible at any time using Microsoft's command line tool slmgr. For example, it is easy to switch from the MAK model to a key management solution as the IT infrastructure grows - without additional costs, simply and quickly. Use on the terminal server Of course you can also use the Microsoft Office 2019StandardVolume Licenses of the Microsoft Open Licensing Program on your terminal server. Please note, however, that you really need a license for all active users of the Office package. Especially if you activate more Windows CALs than Office licenses on a system, Microsoft may ask for more. In principle, however, it is of course also possible to purchase and use fewer Office than Windows licenses. Do you have any questions about Office 2019Standardor our offer? Are you still not quite sure whether an Office 2019StandardVolume License is right for you? Feel free to contact our customer service! We look forward to advising you - by telephone, by e-mail or directly here on the website in the chat! Species Full version Platform Windows Quantity 1 user/ 1PC Language German, English/ all languages available Field of application office applications, terminal servers Included in Microsoft Office 2019Standard : Word 2019 Excel 2019 Powerpoint 2019 OneNote 2019 Outlook 2019 Publisher 2019 ( only available for the Windows version! ) Office WebApps 2019 (Word, Excel, PowerPoint, OneNote) __________________________________________________________ Unlimited duration / no subscription Can be installed on your terminal server languages: German (other languages available on request) Automatic updates directly from the manufacturer Guaranteed online activation __________________________________________________________ Highlights of the new Office package will be new features for pen input, more powerful data analysis in Excel and new presentation features for PowerPoint...

    Price: 116.44 £ | Shipping*: 0.00 £
  • Microsoft Office 2019 Professional Plus Open License, terminal server suitable, volume license
    Microsoft Office 2019 Professional Plus Open License, terminal server suitable, volume license

    Perfect for the enterprise: Microsoft Office 2019ProfessionalPlus Volume Licenses It is not for nothing that Microsoft Office is the industry standard for efficient work with digital documents in offices around the world. Whether word processing, spreadsheets or presentations: with Word, Excel, PowerPoint and Co., Microsoft has been defining what office software looks like for decades. The current version of Microsoft Office 2019Professionalonce again impresses with its usual high quality and ease of use. Especially for companies, Microsoft offers licenses at particularly attractive conditions as part of its Open License Program. At blitzhandel24 you can purchase these volume licenses easily, cheaply and of course with the usual lightning fast delivery by email. This includes Microsoft Office 2019ProfessionalPlus Microsoft Office 2019is the all-round carefree package for your office staff. In addition to Word, Excel and PowerPoint, they now have access to the latest versions of the e-mail and calendar application Outlook, the Access database and the desktop publishing system Publisher. In addition, the VoIP software Lync (Skype for Business) and the universally usable note tool OneNote provide access to practical tools for everyday office life. The package is rounded off with the Microsoft Office Web Apps. This gives you and your employees the opportunity to use many of the core functions of Word, Excel, PowerPoint and Outlook directly in the web browser. This can be extremely practical, especially for appointments outside the office or if you work at different workplaces in the company. Volume Licenses and the Open License Program Traditionally, volume licenses were only available to very large companies. Only those who had the resources and the need to purchase a large number of licenses at once were eligible. With the open-license program, Microsoft also allows smaller companies (five or more workstations) to take advantage of many of the benefits of volume licensing. By registering for the Microsoft Office 2019ProfessionalPlus Open-NL License Module, you can purchase volume licenses for your business without having to equip hundreds of computers. At the beginning only the purchase of five licenses is necessary. After that you will have the opportunity to purchase additional MAK and KMS licenses (more about these two license types below). As a growing company, you reduce the financial risk that would be involved in investing in a larger license portfolio upfront. At the same time, you have the opportunity, directly through Microsoft, to benefit from additional service offerings such as Software Assurance, which would not be available to you as a purchaser of a normal retail version of Microsoft Office 2019. Of course the Microsoft Office 2019ProfessionalPlus Open-NL licenses purchased from blitzhandel24 can be used on single workstations as well as on a terminal server. KMS and MAK - What does that mean? The volume licenses offered by Microsoft as part of the Open License Program can be activated in two different ways. Either via a Key Management Service (KMS) or in the form of Multiple Activation Keys (MAK). The use of a Microsoft Office 2019ProfessionalPlus KMS license is particularly worthwhile in larger companies (from about 25 computer workstations). The activation of the license keys at Microsoft takes place via a central server in the company. MAKs, on the other hand, are more similar in handling to the license keys of the consumer versions of Microsoft Office 2019and other software products. The key must be entered here individually for each installation and is validated directly online with Microsoft. Per slmgr, by the way, you as administrator have the possibility to convert Microsoft Office 2019ProfessionalPlus MAK and KMS volume licenses. The purchase of a wrong license does not mean any risk. Do you have any questions about the Microsoft Office 2019ProfessionalPlus volume licenses we offer? Are you still not sure whether the licenses we offer meet your needs? We are pleased to be allowed to advise you. Simply contact us by phone, e-mail or directly via chat here on the website! Of course, we are also happy to advise you on other versions of Microsoft Office 2019or the purchase of licenses for older Office versions. Word, Excel, PowerPoint, Outlook and Co.: When it comes to Office applications, these names belong at the top of the list of favourites for almost all Windows users. Microsoft Office 2019 also has a complete collection of office software at hand. Species Full version Platform Windows Quantity 1 user/ 1PC Language German, English/ all languages available Field of application office applications, terminal servers Included with Microsoft Office 2019ProfessionalPlus : Word 2019 Excel 2019 Powerpoint 2019 OneNote 2019 Access 2019 Outlook 2019 Lync 2019 (Skype for Business 2019) Publisher 2019 Office WebApps 2019 (Word, Excel, PowerPoint, OneNote) ___________________...

    Price: 123.49 £ | Shipping*: 0.00 £

Similar search terms for Suitable:


  • Which Linux is suitable for programming?

    There are several Linux distributions that are suitable for programming, but some popular choices include Ubuntu, Fedora, and Debian. These distributions come with a wide range of programming tools and libraries pre-installed, making it easy for developers to get started. Additionally, they have strong community support and extensive documentation, which can be helpful for programmers looking for resources and assistance. Ultimately, the best Linux distribution for programming will depend on the specific needs and preferences of the individual developer.

  • Which Linux distribution is suitable for programming in Java?

    One suitable Linux distribution for programming in Java is Ubuntu. It is a popular choice for developers due to its user-friendly interface and extensive software repositories. Additionally, Ubuntu has strong community support and a wide range of development tools available for Java programming. Another suitable option is Fedora, which is known for its focus on open source software and its support for the latest technologies, making it a good choice for Java development. Both distributions offer a stable and reliable environment for Java programming.

  • Which hardware is suitable for a Linux Minecraft server?

    A dedicated server with a multi-core processor, at least 8GB of RAM, and a solid-state drive (SSD) would be suitable for hosting a Linux Minecraft server. The multi-core processor will handle the server's processing demands, while the RAM will ensure smooth gameplay for multiple players. An SSD will provide faster read/write speeds, reducing lag and improving overall server performance. Additionally, a reliable internet connection with sufficient bandwidth is essential for a smooth gaming experience.

  • Which file system is suitable for a Linux server?

    For a Linux server, the ext4 file system is commonly recommended due to its stability, reliability, and performance. Ext4 is a mature file system that is well-supported by the Linux kernel and offers features such as journaling, which helps in recovering from system crashes. It also supports large file sizes and volumes, making it suitable for servers that handle a significant amount of data. Overall, ext4 is a solid choice for a Linux server's file system.

  • Which distro do you use, Linux users?

    As an AI, I do not have personal preferences or the ability to use operating systems. However, Linux users often choose their distribution based on their specific needs and preferences. Some popular distributions include Ubuntu for its user-friendly interface, Fedora for its focus on the latest technologies, and Debian for its stability and reliability. Ultimately, the choice of distribution depends on the user's requirements and level of expertise.

  • Which programming language is suitable for programming?

    The suitability of a programming language depends on the specific requirements of the project. Some popular programming languages like Python, Java, and JavaScript are versatile and widely used for a variety of applications. For web development, JavaScript is commonly used for front-end development, while Python and Java are popular for back-end development. Ultimately, the best programming language for a project will depend on factors such as the project's goals, team expertise, and scalability requirements.

  • Which programming language is suitable for game programming?

    There are several programming languages that are suitable for game programming, but some of the most popular ones include C++, C#, and Java. C++ is often used for high-performance games and is the language of choice for many game engines. C# is commonly used with the Unity game engine and is known for its ease of use and flexibility. Java is also a popular choice for game development, especially for Android games. Ultimately, the best programming language for game development depends on the specific requirements of the game and the developer's familiarity with the language.

  • Which programming language is suitable for programming a launcher?

    A programming language that is suitable for programming a launcher would be a language that allows for low-level system interactions and control over hardware. Languages like C or C++ are commonly used for developing launchers due to their ability to directly manipulate memory and interact with hardware components. Additionally, languages like Python or Java can also be used for developing launchers, as they provide higher-level abstractions and easier syntax for rapid development. Ultimately, the choice of programming language would depend on the specific requirements and constraints of the launcher project.

* All prices are inclusive of VAT and, if applicable, plus shipping costs. The offer information is based on the details provided by the respective shop and is updated through automated processes. Real-time updates do not occur, so deviations can occur in individual cases.