Buy linux-fans.com ?

Products related to Command:


  • Efficient Linux at the Command Line : Boost Your Command-Line Skills
    Efficient Linux at the Command Line : Boost Your Command-Line Skills

    Take your Linux skills to the next level! Whether you're a system administrator, software developer, site reliability engineer, or enthusiastic hobbyist, this practical, hands-on book will help you work faster, smarter, and more efficiently.You'll learn how to create and run complex commands that solve real business problems, process and retrieve information, and automate manual tasks. You'll also truly understand what happens behind the shell prompt, so no matter which commands you run, you can be more successful in everyday Linux use and more competitive on the job market. As you build intermediate to advanced command-line skills, you'll learn how to:Choose or construct commands that get your work done quicklyRun commands efficiently and navigate the Linux filesystem with easeBuild powerful, complex commands out of simpler onesTransform text files and query them like databases to achieve business goalsControl Linux point-and-click features from the command line

    Price: 47.99 £ | Shipping*: 0.00 £
  • Linux Command Line and Shell Scripting Bible
    Linux Command Line and Shell Scripting Bible

    Advance your understanding of the Linux command line with this invaluable resource Linux Command Line and Shell Scripting Bible, 4th Edition is the newest installment in the indispensable series known to Linux developers all over the world.Packed with concrete strategies and practical tips, the latest edition includes brand-new content covering: Understanding the Shell Writing Simple Script Utilities Producing Database, Web & Email Scripts Creating Fun Little Shell Scripts Written by accomplished Linux professionals Christine Bresnahan and Richard Blum, Linux Command Line and Shell Scripting Bible, 4th Edition teaches readers the fundamentals and advanced topics necessary for a comprehensive understanding of shell scripting in Linux.The book is filled with real-world examples and usable scripts, helping readers navigate the challenging Linux environment with ease and convenience. The book is perfect for anyone who uses Linux at home or in the office and will quickly find a place on every Linux enthusiast’s bookshelf.

    Price: 40.00 £ | Shipping*: 0.00 £
  • 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 £
  • What is the command mysqld_safe in Linux?

    The command mysqld_safe in Linux is used to start the MySQL server in a safe mode. This mode ensures that the server is started with certain safety features enabled, such as automatic restart in case of a crash. It also provides logging and monitoring capabilities to help troubleshoot any issues that may arise during server operation. Overall, mysqld_safe is a useful tool for managing the MySQL server in a secure and reliable manner.

  • What is the command chain in Linux?

    In Linux, the command chain refers to the sequence of commands that are executed in a specific order. Each command in the chain performs a specific task and passes its output to the next command in the chain. This allows users to perform complex operations by combining multiple commands together. The output of one command becomes the input for the next command, creating a seamless flow of data processing. By chaining commands together, users can efficiently manipulate data and perform various tasks in the Linux terminal.

  • Can you use the Linux command line?

    Yes, I can use the Linux command line. I am proficient in navigating the file system, managing files and directories, running commands, and performing various administrative tasks using the command line interface. I can also write and execute shell scripts to automate tasks and perform system maintenance.

  • How do I create Linux command files?

    To create a Linux command file, also known as a shell script, you can use a text editor such as vi, nano, or gedit to write a series of commands in a file with a .sh extension. Start the file with a shebang line (#!/bin/bash) to specify the shell to be used to interpret the commands. Then, write the commands you want to execute in the script, save the file, and make it executable using the chmod command (e.g., chmod +x filename.sh). You can then run the script by typing its name in the terminal.

Similar search terms for Command:


  • 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 €
  • The Linux Command Line, 2nd Edition : A Complete Introduction
    The Linux Command Line, 2nd Edition : A Complete Introduction

    The Linux Command Line takes you from your very first terminal keystrokes to writing full programs in Bash, the most popular Linux shell (or command line).Along the way you'll learn the timeless skills handed down by generations of experienced, mouse-shunning gurus: file navigation, environment configuration, command chaining, pattern matching with regular expressions, and more.In addition to that practical knowledge, author William Shotts reveals the philosophy behind these tools and the rich heritage that your desktop Linux machine has inherited from Unix supercomputers of yore.

    Price: 37.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 £
  • Command for blood, command for war
    Command for blood, command for war


    Price: 15.49 £ | Shipping*: 3.99 £
  • Why doesn't the Linux command tail work?

    The Linux command tail may not work for a few reasons. One possibility is that the file being accessed by tail does not exist or the user does not have the necessary permissions to read the file. Another reason could be that the syntax used for the tail command is incorrect, such as specifying an invalid option or file name. Additionally, if the system is experiencing high disk I/O or the file being tailed is being actively written to, it may cause tail to not function as expected.

  • Why is the Linux terminal command not found?

    The Linux terminal command "not found" error typically occurs when the system cannot locate the specified command or program. This can happen if the command is misspelled, the program is not installed on the system, or the command is not included in the system's PATH variable. To resolve this issue, you can try checking the spelling of the command, installing the necessary program, or adding the directory containing the command to the PATH variable.

  • What is the command make in Ubuntu Linux?

    The "make" command in Ubuntu Linux is used to compile and build software from source code. It reads a file called "Makefile" that contains instructions on how to build the software, such as which source files to compile and how to link them together. The "make" command is commonly used by developers to automate the build process and generate executable programs from source code.

  • What is the startup command for Linux Mint?

    The startup command for Linux Mint is "startx." This command is used to start the X Window System, which is the graphical user interface for Linux. When you enter "startx" in the terminal, it initiates the desktop environment and allows you to interact with the operating system using a graphical interface.

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