Buy linux-fans.com ?

Products related to Configure:


  • 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 £
  • Essential 555 IC : Design, Configure, and Create Clever Circuits
    Essential 555 IC : Design, Configure, and Create Clever Circuits

    Learn how to create functional gadgets using simple but clever circuits based on the venerable "555." These projects will give you hands-on experience with useful, basic circuits that will aid you across other projects.These inspiring designs might even lead you to develop the next big thing.The 555 Timer Oscillator Integrated Circuit chip is one of the most popular chips in the world.Through clever projects, you will gain permanent knowledge of how to use the 555 timer will carry with you for life. With this book you'll build a series of unique and useful projects.Each one gets more and more complicated, and you'll learn more as you go along. Start off with a basic 555 timer IC design concept to build a simple project.Learn how to create a simple form of digital memory that can store data, the basis of every computer system ever created.Build a collection of lighting effect circuits that will flash and animate LEDs in different ways.Use a simple configuration of the 555 timer IC to create a complex traffic light system.You'll even create sound with an audio synthesizer!No programming is needed to make startlingly functional electronic devices. Get started today building the next big thing. Or even the next small thing. But build some thing!What You Need:The only physical things people need are the parts to build the projects, which are labeled out with part numbers in the beginning of each project.Otherwise, only an hour here or there is needed to build these projects.Only some familiarity with electrical components is necessary in regards to purchasing for each project.

    Price: 15.99 £ | Shipping*: 3.99 £
  • 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 £
  • Learning eBPF: Programming the Linux Kernel for Enhanced Observability, Networking, and Security
    Learning eBPF: Programming the Linux Kernel for Enhanced Observability, Networking, and Security

    Learning eBPF: Programming the Linux Kernel for Enhanced Observability, Networking, and Security

    Price: 42.74 € | Shipping*: 0.00 €
  • How do I configure a DNS server on Linux?

    To configure a DNS server on Linux, you can use software like BIND (Berkeley Internet Name Domain). First, install BIND using your package manager. Then, configure the BIND configuration file located at /etc/named.conf to define your DNS zones and settings. Next, create zone files for each domain you want to host, specifying the necessary DNS records. Finally, start the BIND service and configure your network settings to point to your DNS server.

  • How do I configure FileZilla on a Linux server?

    To configure FileZilla on a Linux server, you will first need to install the FileZilla server software on your Linux server. Once installed, you will need to configure the server settings such as the port number, user accounts, and permissions. You can also set up SSL/TLS encryption for secure file transfers. After configuring the server settings, you can then connect to the FileZilla server using the FileZilla client software on your local machine. You will need to enter the server's IP address, port number, and login credentials to establish a connection.

  • How can I configure an ARK server?

    To configure an ARK server, you will need to first install the game on your computer. Once the game is installed, you can launch the game and select the "Host/Local" option to set up a server. From there, you can customize the server settings such as the map, player limits, and difficulty settings. You can also set up server passwords, enable mods, and adjust other gameplay options to tailor the server to your preferences. Finally, you can save the server configuration and start the server to begin playing with your desired settings.

  • How can one configure a Roblox private server?

    To configure a Roblox private server, you can start by creating a VIP server for your game. This can be done by going to the game's settings and enabling the VIP server option. Once the VIP server is created, you can customize the server settings such as player permissions, game modes, and other options. You can also invite specific players to join your private server by sharing the server link with them. Additionally, you can manage the server settings and monitor player activity through the VIP server dashboard.

Similar search terms for Configure:


  • Essential 555 IC: Design, Configure, and Create Clever Circuits
    Essential 555 IC: Design, Configure, and Create Clever Circuits

    Essential 555 IC: Design, Configure, and Create Clever Circuits

    Price: 15.19 € | 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 £
  • Aluminum Hot Mechanical Keyboard Designed Shape 44Key Keypad New VIA Configure Programmable Macro
    Aluminum Hot Mechanical Keyboard Designed Shape 44Key Keypad New VIA Configure Programmable Macro

    Aluminum Hot Mechanical Keyboard Designed Shape 44Key Keypad New VIA Configure Programmable Macro

    Price: 31.89 € | Shipping*: 0 €
  • How can one configure a Roblox Private Server?

    To configure a Roblox Private Server, you can start by creating a VIP server on the game you want to play privately. This can be done by going to the game's page on Roblox and looking for the option to create a VIP server. Once the server is created, you can customize the settings such as who can join, the server name, and other gameplay options. You can also invite specific players to join your private server by sharing the server link with them.

  • Can I configure a server for dual boot?

    Yes, you can configure a server for dual booting, just like you would with a regular computer. However, it is important to note that dual booting a server may not be recommended for production environments as it can introduce complexity and potential stability issues. It is generally recommended to use virtualization or containerization technologies to run multiple operating systems on a server instead of dual booting.

  • Can I configure Linux Tails to not reset itself?

    Yes, you can configure Linux Tails to not reset itself by creating a persistent volume. This allows you to store your files and settings across reboots, so that they are not lost when Tails resets itself. However, it is important to note that using a persistent volume may compromise the anonymity and security features of Tails, so it should be used with caution and only in situations where the benefits outweigh the risks.

  • How do I properly configure my SMTP outgoing server?

    To properly configure your SMTP outgoing server, you will need to access your email client's settings and locate the section for outgoing mail server (SMTP). Enter the correct server address provided by your email service provider, along with the port number (usually 587 or 25). Make sure to enable authentication and enter your email address and password for authentication. You may also need to choose the type of encryption (SSL or TLS) depending on your provider's requirements. Finally, save the settings and test your outgoing mail to ensure it is working correctly.

* 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.