- Table View
- List View
LLMOps: Managing Large Language Models in Production
by Abi AryanHere's the thing about large language models: they don't play by the old rules. Traditional MLOps completely falls apart when you're dealing with GenAI. The model hallucinates, security assumptions crumble, monitoring breaks, and agents can't operate. Suddenly you're in uncharted territory. That's exactly why LLMOps has emerged as its own discipline. LLMOps: Managing Large Language Models in Production is your guide to actually running these systems when real users and real money are on the line. This book isn't about building cool demos. It's about keeping LLM systems running smoothly in the real world. Navigate the new roles and processes that LLM operations require Monitor LLM performance when traditional metrics don't tell the whole story Set up evaluations, governance, and security audits that actually matter for GenAI Wrangle the operational mess of agents, RAG systems, and evolving prompts Scale infrastructure without burning through your compute budget
LLMs and Generative AI for Healthcare: The Next Frontier
by Kerrie Holley Manish MathurLarge language models (LLMs) and generative AI are rapidly changing the healthcare industry. These technologies have the potential to revolutionize healthcare by improving the efficiency, accuracy, and personalization of care. This practical book shows healthcare leaders, researchers, data scientists, and AI engineers the potential of LLMs and generative AI today and in the future, using storytelling and illustrative use cases in healthcare.Authors Kerrie Holley, former Google healthcare professionals, guide you through the transformative potential of large language models (LLMs) and generative AI in healthcare. From personalized patient care and clinical decision support to drug discovery and public health applications, this comprehensive exploration covers real-world uses and future possibilities of LLMs and generative AI in healthcare.With this book, you will:Understand the promise and challenges of LLMs in healthcareLearn the inner workings of LLMs and generative AIExplore automation of healthcare use cases for improved operations and patient care using LLMsDive into patient experiences and clinical decision-making using generative AIReview future applications in pharmaceutical R&D, public health, and genomicsUnderstand ethical considerations and responsible development of LLMs in healthcare"The authors illustrate generative's impact on drug development, presenting real-world examples of its ability to accelerate processes and improve outcomes across the pharmaceutical industry."--Harsh Pandey, VP, Data Analytics & Business Insights, Medidata-DassaultKerrie Holley is a retired Google tech executive, IBM Fellow, and VP/CTO at Cisco. Holley's extensive experience includes serving as the first Technology Fellow at United Health Group (UHG), Optum, where he focused on advancing and applying AI, deep learning, and natural language processing in healthcare.Manish Mathur brings over two decades of expertise at the crossroads of healthcare and technology. A former executive at Google and Johnson & Johnson, he now serves as an independent consultant and advisor. He guides payers, providers, and life sciences companies in crafting cutting-edge healthcare solutions.
LLMs in Production: Engineering AI Applications
by Christopher Brousseau Matt SharpGoes beyond academic discussions deeply into the applications layer of Foundation Models.This practical book offers clear, example-rich explanations of how LLMs work, how you can interact with them, and how to integrate LLMs into your own applications. Find out what makes LLMs so different from traditional software and ML, discover best practices for working with them out of the lab, and dodge common pitfalls with experienced advice. In LLMs in Production you will: • Grasp the fundamentals of LLMs and the technology behind them • Evaluate when to use a premade LLM and when to build your own • Efficiently scale up an ML platform to handle the needs of LLMs • Train LLM foundation models and finetune an existing LLM • Deploy LLMs to the cloud and edge devices using complex architectures like PEFT and LoRA • Build applications leveraging the strengths of LLMs while mitigating their weaknesses LLMs in Production delivers vital insights into delivering MLOps so you can easily and seamlessly guide one to production usage. Inside, you&’ll find practical insights into everything from acquiring an LLM-suitable training dataset, building a platform, and compensating for their immense size. Plus, tips and tricks for prompt engineering, retraining and load testing, handling costs, and ensuring security. Foreword by Joe Reis. About the technology Most business software is developed and improved iteratively, and can change significantly even after deployment. By contrast, because LLMs are expensive to create and difficult to modify, they require meticulous upfront planning, exacting data standards, and carefully-executed technical implementation. Integrating LLMs into production products impacts every aspect of your operations plan, including the application lifecycle, data pipeline, compute cost, security, and more. Get it wrong, and you may have a costly failure on your hands. About the book LLMs in Production teaches you how to develop an LLMOps plan that can take an AI app smoothly from design to delivery. You&’ll learn techniques for preparing an LLM dataset, cost-efficient training hacks like LORA and RLHF, and industry benchmarks for model evaluation. Along the way, you&’ll put your new skills to use in three exciting example projects: creating and training a custom LLM, building a VSCode AI coding extension, and deploying a small model to a Raspberry Pi. What's inside • Balancing cost and performance • Retraining and load testing • Optimizing models for commodity hardware • Deploying on a Kubernetes cluster About the reader For data scientists and ML engineers who know Python and the basics of cloud deployment. About the author Christopher Brousseau and Matt Sharp are experienced engineers who have led numerous successful large scale LLM deployments. Table of Contents 1 Generative AI: Why large language models have captured attention 2 Large language models: A deep dive into language modeling 3 Large language model operations: Building a platform for LLMs 4 Data engineering for large language models: Setting up for success 5 Training large language models: How to generate the generator 6 Large language model services: A practical guide 7 Prompt engineering: Becoming an LLM whisperer 8 Applications and Agents: Building an interactive experience 9 Creating an LLM project: Reimplementing Llama 3 10 Creating a coding copilot project: This would have helped you earlier 11 Deploying an LLM on a Raspberry Pi: How low can you go? 12 Creating a coding copilot project: Integrating an LLM service into VS Code with RAG started A History of linguistics B Reinforcement learning with human feedback C Multimodal latent spaces
LLVM Code Generation: A deep dive into compiler backend development
by Quentin ColombetExplore the world of code generation with the LLVM infrastructure, and learn how to extend existing backends or develop your ownKey FeaturesUnderstand the steps involved in generating assembly code from LLVM IRLearn the key constructs needed to leverage LLVM for your hardware or backendStrengthen your understanding with targeted exercises and practical examples in every chapterPurchase of the print or Kindle book includes a free PDF eBookBook DescriptionThe LLVM infrastructure is a popular compiler ecosystem widely used in the tech industry and academia. This technology is crucial for both experienced and aspiring compiler developers looking to make an impact in the field. Written by Quentin Colombet, a veteran LLVM contributor and architect of the GlobalISel framework, this book provides a primer on the main aspects of LLVM, with an emphasis on its backend infrastructure; that is, everything needed to transform the intermediate representation (IR) produced by frontends like Clang into assembly code and object files. You’ll learn how to write an optimizing code generator for a toy backend in LLVM. The chapters will guide you step by step through building this backend while exploring key concepts, such as the ABI, cost model, and register allocation. You’ll also find out how to express these concepts using LLVM's existing infrastructure and how established backends address these challenges. Furthermore, the book features code snippets that demonstrate the actual APIs. By the end of this book, you’ll have gained a deeper understanding of LLVM. The concepts presented are expected to remain stable across different LLVM versions, making this book a reliable quick reference guide for understanding LLVM.What you will learnUnderstand essential compiler concepts, such as SSA, dominance, and ABIBuild and extend LLVM backends for creating custom compiler featuresOptimize code by manipulating LLVM's Intermediate RepresentationContribute effectively to LLVM open-source projects and developmentDevelop debugging skills for LLVM optimizations and passesGrasp how encoding and (dis)assembling work in the context of compilersUtilize LLVM's TableGen DSL for creating custom compiler modelsWho this book is forThis book is for both beginners to LLVM and experienced LLVM developers. If you’re new to LLVM, it offers a clear, approachable guide to compiler backends, starting with foundational concepts. For seasoned LLVM developers, it dives into less-documented areas such as TableGen, MachineIR, and MC, enabling you to solve complex problems and expand your expertise. Whether you’re starting out or looking to deepen your knowledge, this book has something for you.
LLVM Cookbook
by Suyog Sarda Mayur PandeyThe book is for compiler programmers who are familiar with concepts of compilers and want to indulge in understanding, exploring, and using LLVM infrastructure in a meaningful way in their work. This book is also for programmers who are not directly involved in compiler projects but are often involved in development phases where they write thousands of lines of code. With knowledge of how compilers work, they will be able to code in an optimal way and improve performance with clean code.
LLVM Essentials
by Suyog Sarda Mayur PandeyBecome familiar with the LLVM infrastructure and start using LLVM libraries to design a compiler About This Book * Learn to use the LLVM libraries to emit intermediate representation (IR) from high-level language * Build your own optimization pass for better code generation * Understand AST generation and use it in a meaningful way Who This Book Is For This book is intended for those who already know some of the concepts of compilers and want to quickly get familiar with the LLVM infrastructure and the rich set of libraries that it provides. What You Will Learn * Get an introduction to LLVM modular design and LLVM tools * Convert frontend code to LLVM IR * Implement advanced LLVM IR paradigms * Understand the LLVM IR Optimization Pass Manager infrastructure and write an optimization pass * Absorb LLVM IR transformations * Understand the steps involved in converting LLVM IR to Selection DAG * Implement a custom target using the LLVM infrastructure * Get a grasp of C's frontend clang, an AST dump, and static analysis In Detail LLVM is currently the point of interest for many firms, and has a very active open source community. It provides us with a compiler infrastructure that can be used to write a compiler for a language. It provides us with a set of reusable libraries that can be used to optimize code, and a target-independent code generator to generate code for different backends. It also provides us with a lot of other utility tools that can be easily integrated into compiler projects. This book details how you can use the LLVM compiler infrastructure libraries effectively, and will enable you to design your own custom compiler with LLVM in a snap. We start with the basics, where you'll get to know all about LLVM. We then cover how you can use LLVM library calls to emit intermediate representation (IR) of simple and complex high-level language paradigms. Moving on, we show you how to implement optimizations at different levels, write an optimization pass, generate code that is independent of a target, and then map the code generated to a backend. The book also walks you through CLANG, IR to IR transformations, advanced IR block transformations, and target machines. By the end of this book, you'll be able to easily utilize the LLVM libraries in your own projects. Style and approach This book deals with topics sequentially, increasing the difficulty level in a step-by-step approach. Each topic is explained with a detailed example, and screenshots are included to help you understand the examples.
LLVM Techniques, Tips, and Best Practices Clang and Middle-End Libraries: Design powerful and reliable compilers using the latest libraries and tools from LLVM
by Min-Yih HsuLearn how you can build the next big programming language, compiler, or source code analyzer using LLVM and ClangKey FeaturesExplore Clang, LLVM's middle-end and backend, in a pragmatic wayDevelop your LLVM skillset and get to grips with a variety of common use casesEngage with real-world LLVM development through various coding examplesBook DescriptionEvery programmer or engineer, at some point in their career, works with compilers to optimize their applications. Compilers convert a high-level programming language into low-level machine-executable code. LLVM provides the infrastructure, reusable libraries, and tools needed for developers to build their own compilers. With LLVM's extensive set of tooling, you can effectively generate code for different backends as well as optimize them. In this book, you'll explore the LLVM compiler infrastructure and understand how to use it to solve different problems. You'll start by looking at the structure and design philosophy of important components of LLVM and gradually move on to using Clang libraries to build tools that help you analyze high-level source code. As you advance, the book will show you how to process LLVM IR – a powerful way to transform and optimize the source program for various purposes. Equipped with this knowledge, you'll be able to leverage LLVM and Clang to create a wide range of useful programming language tools, including compilers, interpreters, IDEs, and source code analyzers. By the end of this LLVM book, you'll have developed the skills to create powerful tools using the LLVM framework to overcome different real-world challenges.What you will learnFind out how LLVM's build system works and how to reduce the building resourceGet to grips with running custom testing with LLVM's LIT frameworkBuild different types of plugins and extensions for ClangCustomize Clang's toolchain and compiler flagsWrite LLVM passes for the new PassManagerDiscover how to inspect and modify LLVM IRUnderstand how to use LLVM's profile-guided optimizations (PGO) frameworkCreate custom compiler sanitizersWho this book is forThis book is for software engineers of all experience levels who work with LLVM. If you are an academic researcher, this book will help you learn useful LLVM skills in a short time and enable you to build your prototypes and projects quickly. Programming language enthusiasts will also find this book useful for building a new programming language with the help of LLVM.
LMIs in Control Systems: Analysis, Design and Applications
by Guang-Ren Duan Hai-Hua YuAlthough LMI has emerged as a powerful tool with applications across the major domains of systems and control, there has been a need for a textbook that provides an accessible introduction to LMIs in control systems analysis and design. Filling this need, LMIs in Control Systems: Analysis, Design and Applications focuses on the basic analysis and d
LMMS: A Complete Guide to Dance Music Production
by David EarlWritten in a step by step tutorial style, learning comes as a result of creating a complete dance music track, along with the explanations that follow each stage. You have a computer and a love for dance and electronic music. Maybe you've been to some clubs, and the energy of electronic dance music has you completely under its spell. You see a DJ spinning, and everyone is dancing. It's infectious. You want to make music that affects people that way. Today the open source community has offered you LMMS. Read this book, and you'll be shown a process to creating great dance music. This book is going to connect the dots if you have already started making dance music, and provide a very solid foundation if you are just getting started - no matter what your skill level is.
LPI Linux Certification in a Nutshell
by Jeff Dean Bruno Gomes Pessanha Nicolai Langfeldt Steven Pritchard James StangerLPI Linux Certification in a Nutshell,Second Edition is an invaluable resource for determining what you needto practice to pass the Linux Professional Institute exams. This bookwill helpyou determine when you're ready to take the exams, which aretechnically challenging and designed to reflect the skills thatadministrators needin real working environments. As more corporations adopt Linux as the networking backbone for theirIT systems, the demand for certified technicians will becomeeven greater. Passing the LPI exams will broaden your career optionsbecause the LPICis the most widely known and respected Linux certification program intheworld. Linux Journal recognized the LPI as the bestTraining andCertification Program. The exams were developed by the LinuxProfessional Institute,an international, volunteer-driven organization with affiliates in adozen countries. The core LPI exams cover two levels. Level 1 tests a basic knowledge ofLinux installation, configuration, and command-lineskills. Level 2 goes into much more depth regarding systemtroubleshooting andnetwork services such as email and the Web. The second edition of LPILinuxCertification in a Nutshell is a thoroughly researchedreference to these exams. The book is divided into four parts, one foreach of theLPI exams. Each part features not only a summary of the core skills youneed, but sample exercises and test questions, along with helpful hintsto letyou focus your energies. Major topics include: GNU and Unix commandsLinux installation and package managementDevices, filesystems, and kernel configurationText editing, processing, and printingThe X Window SystemNetworking fundamentals and troubleshootingSecurity, including intrusion detection, SSH, Kerberos, andmoreDNS, DHCP, file sharing, and other networking infrastructureEmail, FTP, and Web services Praise for the first edition:"Although O'Reilly's Nutshell series are intended as 'DesktopReference' manuals, I have to recommend this one as a goodall-round read; not only as a primer for LPI certification, but as anexcellent introductory text on GNU/Linux. In all, this is a valuableaddition toO'Reilly's already packed stable of Linux titles and I look forward tomore from the author."--First Monday
LPI Linux Certification in a Nutshell
by Jeff DeanLPI Linux Certification in a Nutshell prepares system administrators for the basic LPI General Linux 101 exam and the more advanced 102 exam. The book is divided into two parts, one for each of the LPI exams. Each part features a summary of the exam, a Highlighter's Index, labs, suggested exercises, and practice exams to help you pass the LPI exams with flying colors.
LPI Linux Certification in a Nutshell, 2nd Edition
by Jeff Dean Bruno Gomes Pessanha Nicolai Langfeldt Steven Pritchard James StangerLPI Linux Certification in a Nutshell , Second Edition is an invaluable resource for determining what you need to practice to pass the Linux Professional Institute exams. This book will help you determine when you're ready to take the exams, which are technically challenging and designed to reflect the skills that administrators need in real working environments. As more corporations adopt Linux as the networking backbone for their IT systems, the demand for certified technicians will become even greater. Passing the LPI exams will broaden your career options because the LPIC is the most widely known and respected Linux certification program in the world. Linux Journal recognized the LPI as the best Training and Certification Program. The exams were developed by the Linux Professional Institute, an international, volunteer-driven organization with affiliates in a dozen countries. The core LPI exams cover two levels. Level 1 tests a basic knowledge of Linux installation, configuration, and command-line skills. Level 2 goes into much more depth regarding system troubleshooting and network services such as email and the Web. The second edition of LPI Linux Certification in a Nutshell is a thoroughly researched reference to these exams. The book is divided into four parts, one for each of the LPI exams. Each part features not only a summary of the core skills you need, but sample exercises and test questions, along with helpful hints to let you focus your energies. Major topics include: GNU and Unix commands Linux installation and package management Devices, filesystems, and kernel configuration Text editing, processing, and printing The X Window System Networking fundamentals and troubleshooting Security, including intrusion detection, SSH, Kerberos, and more DNS, DHCP, file sharing, and other networking infrastructure Email, FTP, and Web services Praise for the first edition: "Although O'Reilly's Nutshell series are intended as 'Desktop Reference' manuals, I have to recommend this one as a good all-round read; not only as a primer for LPI certification, but as an excellent introductory text on GNU/Linux. In all, this is a valuable addition to O'Reilly's already packed stable of Linux titles and I look forward to more from the author." --First Monday
LPI Linux Certification in a Nutshell, 2nd Edition
by Jeff DeanLPI Linux Certification in a Nutshell, Second Editionis a thoroughly researched reference to the Linux Professional Institute exams. The book is divided into four parts, one for each of the LPI exams. Each part features not only a summary of the core skills you need, but sample exercises and test questions, along with helpful hints to let you focus your energies.
LPI Linux Certification in a Nutshell: A Desktop Quick Reference (In A Nutshell (o'reilly) Ser.)
by Bruno Gomes Pessanha James Stanger Stephen Addison Schneiter Adam HaederLinux deployment continues to increase, and so does the demand for qualified and certified Linux system administrators. If you're seeking a job-based certification from the Linux Professional Institute (LPI), this updated guide will help you prepare for the technically challenging LPIC Level 1 Exams 101 and 102.The third edition of this book is a meticulously researched reference to these exams, written by trainers who work closely with LPI. You'll find an overview of each exam, a summary of the core skills you need, review questions and exercises, as well as a study guide, a practice test, and hints to help you focus.Major topics include:Critical GNU and Unix commandsLinux installation and package managementDevices and filesystemsText editing, processing, and printingThe X Window SystemNetworking and securityMail transfer agentsEmail, FTP, and web servicesThese exams are for junior to mid-level Linux administrators with about two years of practical system administration experience. You should be comfortable with Linux at the command line and capable of performing simple tasks, including system installation and troubleshooting.
LPI Linux Essentials Study Guide: Exam 010 v1.6
by Richard Blum Christine BresnahanProvides a solid foundation for those considering a career in IT—covers the objectives of the new Linux Essentials Exam 010-160 v1.6 Linux is a secure, reliable, open source alternative to costly operating systems such as Microsoft Windows. As large organizations worldwide continue to add Linux servers, the need for IT professionals skilled in Linux continues to grow. The LPI Linux Essentials Study Guide is a valuable resource for anyone preparing to take the new Linux Essentials Exam—the entry-level certification from The Linux Professional Institute (LPI) which validates knowledge of Linux concepts and applications. Written by recognized experts on Linux and open source technologies, this accessible, user-friendly guide covers desktop skills, the command line, directories and files, networks, scripting, security, users and permissions, and much more. Clear, concise chapters provide numerous hands-on tutorials, real-world examples, color illustrations, and practical end-of-chapter exercises and review questions. An ideal introduction for those new to Linux or considering a career in IT, this guide helps readers: Learn the operation and components of Linux desktops and servers Understand open source software, licensing, and applications Configure networks, security, cloud services, storage, and devices Create users and groups and set permissions and ownership Use the command line and build automation scripts LPI Linux Essentials Study Guide: Exam 010 v1.6 is perfect for anyone beginning a career in IT, newcomers to Linux, students in computer courses, and system administrators working with other operating systems wanting to learn more about Linux and other open source solutions.
LPI Security Essentials Study Guide: Exam 020-100
by David ClintonPrepare smarter and faster for the LPI Security Essentials exam In LPI Security Essentials Study Guide: Exam 020-100, veteran Linux server administrator David Clinton delivers an expert tutorial on the major security threats facing computers, networks, connected devices, and IT services, both on-premise and in the cloud. You’ll discover common and effective ways to prevent, mitigate, and respond to security attacks, and validate your ability to use encryption to secure data transferred through a network. This book is designed to prepare you for the LPI Security Essentials certification offered by the global standard and career support organization for open-source professionals. Whether you’re preparing for this foundational exam as a steppingstone to the more advanced Security+ certification or as an end in itself, you’ll advance your knowledge of security concepts, encryption, node, device, and storage security, network and service security, and identity and privacy concepts. You’ll get: Techniques and tools you can use immediately in a new role as an IT security professional Key strategies for digital self-defense, including securing your own devices and making use of IT services Complimentary access to Sybex’s superior online interactive learning environment and test bank, complete with chapter tests, a practice exam, electronic flashcards, and a glossary of key terms Perfect for anyone seeking to take the LPI Security Essentials certification exam, LPI Security Essentials Study Guide, Exam 020-100 is a must-have resource for people looking to hit the ground running in a new career focused on information security.
LPI Web Development Essentials Study Guide: Exam 030-100
by Audrey O'SheaPass the LPI Web Development Essentials exam and set yourself up for success at a new web development job In LPI Linux Professional Institute Web Development Essentials Study Guide: Exam 030-100, accomplished IT educator and systems engineer, Audrey O’Shea delivers an easy-to-follow and hands-on roadmap to passing the LPI Web Development Essentials exam and hitting the ground running at a new job as a web developer. In the book, you’ll explore the software development skills, web technologies, HTML, CSS, Node.js, and JavaScript info you need to implement modern applications and solutions in a web environment. You will find: Introductory coverage of SQL, HTML, JavaScript, CSS, and MongoDB A heavy emphasis on real-world job skills, as well as the technologies used every day by web developers in the field Complimentary access to the Sybex interactive online learning environment and test bank, complete with hundreds of practice questions, electronic flashcards, and a searchable glossary of important termsAn essential and practical resource for anyone preparing for the Web Development Essentials certification exam, LPI Linux Professional Institute Web Development Essentials Study Guide: Exam 030-100 is also the ideal book for entry-level software developers seeking knowledge of web development tools and principles.
LPIC-1 Linux Professional Institute Certification Practice Tests: Exam 101-500 and Exam 102-500
by Steve Suehring1,000 practice questions with answers and explanations, organized into 10 full-length tests, PLUS 2 practice exams; complements the LPIC-1 Study Guide Linux Servers currently have a 20% market share which continues to grow. The Linux OS market saw a 75% increase from last year and is the third leading OS, behind Windows and MacOS. There has never been a better time to expand your skills, broaden your knowledge, and earn certification from the Linux Professional Institute. LPIC-1: Linux Professional Institute Certification Practice Tests is the must-have complement to the bestselling LPIC-1 Study Guide. Practice tests help you gain confidence and identify the areas in need of more attention. Ten full-length tests, covering the ten objective domains, and two additional 60-question practice exams contain 1000 practice questions, complete with answers and full explanations! Divided into two parts, this volume of practice tests covers Exams 101-500 and 102-500. Part I covers system architecture, Linux installation and Package management, GNU and Unix Commands, and devices, and Linux filesystems and filesystem hierarchy. Part II focuses on shells and shell scripting, user interfaces and desktops, administrative tasks, essential system services, networking, and security. This book: Covers all objective domains of the LPIC-1 exam Provides additional practice questions to supplement the LPIC-1 Study Guide Helps reinforce vital skills and knowledge Includes one year of FREE access to the online test bank LPIC-1: Linux Professional Institute Certification Practice Tests is a must-have resource for network and system administrators studying for the LPIC-1 exams and Linux administrators or IT professionals looking to update their skillset.
LPIC-1 Linux Professional Institute Certification Study Guide
by Richard Blum Christine BresnahanThorough LPIC-1 exam prep, with complete coverage and bonus study tools LPIC-1Study Guide is your comprehensive source for the popular Linux Professional Institute Certification Level 1 exam, fully updated to reflect the changes to the latest version of the exam. With 100% coverage of objectives for both LPI 101 and LPI 102, this book provides clear and concise information on all Linux administration topics and practical examples drawn from real-world experience. Authoritative coverage of key exam topics includes GNU and UNIX commands, devices, file systems, file system hierarchy, user interfaces, and much more, providing complete exam prep for the LPIC-1 candidate. Get access to invaluable study tools, including bonus practice exams, electronic flashcards, and a searchable PDF of key terms featured on the exam. Linux is viewed by many companies and organizations as an excellent, low-cost, secure alternative to expensive operating systems, such as Microsoft Windows. The LPIC-1 tests a candidate's understanding and familiarity with the Linux Kernel. This book provides comprehensive preparation and review, helping readers face the exam with confidence. Review the system architecture, Linux installation, and package management Understand shells, scripting, and data management more completely Practice administrative tasks and essential system services Brush up on networking fundamentals and security issues As the Linux server market share continue to grow, so too does the demand for qualified and certified Linux administrators. Certification holders must recertify every five years, but LPI recommends recertifying every two years to stay fully up to date with new technologies and best practices. As exam day approaches, LPIC-1Study Guide is the one source you will want by your side.
LPIC-1 Linux Professional Institute Certification Study Guide: Exam 101-500 and Exam 102-500
by Richard Blum Christine BresnahanThe bestselling study guide for the popular Linux Professional Institute Certification Level 1 (LPIC-1). The updated fifth edition of LPIC-1: Linux Professional Institute Certification Study Guide is a comprehensive, one-volume resource that covers 100% of all exam objectives. Building on the proven Sybex Study Guide approach, this essential resource offers a comprehensive suite of study and learning tools such as assessment tests, hands-on exercises, chapter review questions, and practical, real-world examples. This book, completely updated to reflect the latest 101-500 and 102-500 exams, contains clear, concise, and user-friendly information on all of the Linux administration topics you will encounter on test day. Key exam topics include system architecture, Linux installation and package management, GNU and UNIX commands, user interfaces and desktops, essential system services, network and server security, and many more. Linux Servers currently have a 20% market share which continues to grow. The Linux OS market saw a 75% increase from last year and is the third leading OS, behind Windows and MacOS. There has never been a better time to expand your skills, broaden your knowledge, and earn certification from the Linux Professional Institute. A must-have guide for anyone preparing for the 101-500 and 102-500 exams, this study guide enables you to: Assess your performance on practice exams to determine what areas need extra study Understand and retain vital exam topics such as administrative tasks, network configuration, booting Linux, working with filesystems, writing scripts, and using databases Gain insights and tips from two of the industry’s most highly respected instructors, consultants, and authors Access Sybex interactive tools that include electronic flashcards, an online test bank, customizable practice exams, bonus chapter review questions, and a searchable PDF glossary of key terms LPIC-1: Linux Professional Institute Certification Study Guide is ideal for network and system administrators studying for the LPIC-1 exams, either for the first time or for the purpose of renewing their certifications.
LPIC-2 Linux Professional Institute Certification Study Guide
by Roderick W. SmithThe first book to cover the LPIC-2 certificationLinux allows developers to update source code freely, making it an excellent, low-cost, secure alternative to alternate, more expensive operating systems. It is for this reason that the demand for IT professionals to have an LPI certification is so strong. This study guide provides unparalleled coverage of the LPIC-2 objectives for exams 201 and 202. Clear and concise coverage examines all Linux administration topics while practical, real-world examples enhance your learning process. On the CD, you'll find the Sybex Test Engine, electronic flashcards, and a glossary containing the most important terms you need to understand..Prepares you for exams 201 and 202 of the Linux Professional Institute CertificationOffers clear, concise coverage on exam topics such as the Linux kernel, system startup, networking configuration, system maintenance, domain name server, file sharing, and moreAddresses additional key topics for the exams including network client management, e-mail services, system security, and troubleshootingThis must-have study guide serves as an invaluable roadmap to attaining LPI certification.
LPIC-2: Exam 201 and Exam 202
by Richard Blum Christine BresnahanFull coverage of the latest LPI-level 2 exams, with bonus online test bank LPIC-2 is the one-stop preparation resource for the Linux Professional Institute's Advanced Level certification exam. With 100 percent coverage of all exam objectives, this book provides clear and concise coverage of the Linux administration topics you'll need to know for exams 201 and 202. Practical examples highlight the real-world applications of important concepts, and together, the author team provides insights based on almost fifty years in the IT industry. This brand new second edition has been completely revamped to align with the latest versions of the exams, with authoritative coverage of the Linux kernel, system startup, advanced storage, network configuration, system maintenance, web services, security, troubleshooting, and more. You also get access to online learning tools including electronic flashcards, chapter tests, practice exams, and a glossary of critical terms to help you solidify your understanding of upper-level Linux administration topics. The LPI-level 2 certification confirms your advanced Linux skill set, and the demand for qualified professionals continues to grow. This book gives you the conceptual guidance and hands-on practice you need to pass the exam with flying colors. Understand all of the material for both LPIC-2 exams Gain insight into real-world applications Test your knowledge with chapter tests and practice exams Access online study aids for more thorough preparation Organizations are flocking to the open-source Linux as an excellent, low-cost, secure alternative to expensive operating systems like Microsoft Windows. As the Linux market share continues to climb, organizations are scrambling to find network and server administrators with expert Linux knowledge and highly practical skills. The LPI-level 2 certification makes you the professional they need, and LPIC-2 is your ideal guide to getting there.
LPIC-3 Virtualization and Containerization Study Guide: Certification Companion for the LPIC-3 305 Exam (Certification Study Companion Series)
by Antonio VazquezGet up to speed on the key topics required for the Linux Professional Institute's LPIC-3 305 exam, the third in the four-part LPIC-3 certification, which covers virtualization and containerization. The wider LPIC-3 certification helps developers and system administrators become experts in a given context of Linux and Open Source solutions. This study companion is designed to sit alongside your studies and certification guides as you prepare for the exam and will take you through the three main areas of Full Virtualization, Container Virtualization as well as VM Deployment and Provisioning. We will undertake a deep dive of all the major topics, from the basics of virtualizations and containers to in-depth breakdown of virtualization solutions like KVN, Xen and Proxmox as well as popular containers like Docker, Kubernetes, Openstack, Terraform, Packer, Vagrant and others with key concepts covered on the exam called out and applied in each chapter of this book, giving you both practice and reinforcement, a far more effective learning tool than rote learning or similar approaches typically enlisted in exam preparation. LPIC-3 Virtualization and Containerization Study Guide will give you the guidance and support as you take the next exciting step in supercharging your Linux skills and knowledge to take the next step in your professional career. You Will: Gain a clear picture about the different types of virtualization in use today. Understand how to work with virtualization solutions like KVM and Xen, and manage them using the libvirt API. Become aware of the use of fully enterprise-ready virtualization solutions like Proxmox. Learn the technologies that make Open Source virtualization, possible This is for: Developers and more seasoned Linux SysAdmins who are working towards the LPIC-3 certification. It would be expected that readers will meet the requirements of taking the exam which includes having passed the LPIC-2 certification. However, this guide will also be of use to Linux professionals who are not currently pursuing certification but wish to expand and refresh their Linux skills in relation to virtualization and containerization.
LTE Cellular Narrowband Internet of Things (NB-IoT): Practical Projects for the Cloud and Data Visualization
by Hossam FattahNB-IoT is the Internet of Things (IoT) technology used for cellular communication. NB-IoT devices deliver much better capability and performance, such as: increased area coverage of up to one kilometer; a massive number of devices—up to 200,000—per a single base-station area; longer battery lifetime of ten years; and better indoor and outdoor coverage for areas with weak signal, such as underground garages. The cellular NB-IoT technology is a challenging technology to use and understand. With more than 30 projects presented in this book, covering many use cases and scenarios, this book provides hands-on and practical experience of how to use the cellular NB-IoT for smart applications using Arduino™, Amazon Cloud, Google Maps, and charts. The book starts by explaining AT commands used to configure the NB-IoT modem; data serialization and deserialization; how to set up the cloud for connecting NB-IoT devices; setting up rules, policy, security certificates, and a NoSQL database on the cloud; how to store and read data in the cloud; how to use Google Maps to visualize NB-IoT device geo-location; and how to use charts to visualize sensor datasets. Projects for Arduino are presented in four parts. The first part explains how to connect the device to the mobile operator and cellular network; perform communication using different network protocols, such as TCP, HTTP, SSL, or MQTT; how to use GPS for geo-location applications; and how to upgrade NB-IoT modem firmware over the air. The second part explains the microcontroller unit and how to build and run projects, such as a 7-segment display or a real-time clock. The third part explains how NB-IoT can be used with sensor devices, such as ultrasonic and environmental sensors. Finally, the fourth part explains how NB-IoT can be used to control actuators, such as stepper motors and relays. This book is a unique resource for understanding practical uses of the NB-IoT technology and serves as a handbook for technical and non-technical readers who are looking for practicing and exercising the cellular NB-IoT technology. The book can be used by engineers, students, researchers, system integrators, mobile operators’ technical staff, and electronics enthusiasts. To download the software which can be used with the book, go to: https://github.com/5ghub/NB-IoT About the Author: Hossam Fattah is a technology expert in 4G/5G wireless systems and networking. He received his Ph.D. in Electrical and Computer Engineering from University of British Columbia, Vancouver, Canada in 2003. He received his Master of Applied Science in Electrical and Computer Engineering from University of Victoria, Victoria, Canada in 2000. He completed his B.Sc. degree in Computers and Systems Engineering from Al-Azhar University, Cairo, Egypt in 1995. Between 2003 and 2011, he was in academia and industry, including Texas A&M University. Between 2011 and 2013, he was with Spirent Communications, NJ, USA. Since 2013, he has been with Microsoft, USA. He is also an affiliate associate professor at University of Washington, Tacoma, WA, USA, teaching graduate courses on IoT and distributed systems and collaborating on 5G research and innovations. He has had many patents and technical publications in conferences and journals. He is a registered professional Engineer with the Association of Professional Engineers, British Columbia, Canada. He is the author of the recent book 5G LTE Narrowband Internet of Things (NB-IoT). His research interest is in wireless communications and radio networks and protocols, cellular quality of service, radio resource management, traffic and packet scheduling, network analytics, and mobility.
LTE-Advanced Air Interface Technology
by Xincheng Zhang Xiaojin ZhouOpportunities are at hand for professionals eager to learn and apply the latest theories and practices in air interface technologies. Written by experienced researchers and professionals, LTE-Advanced Air Interface Technology thoroughly covers the performance targets and technology components studied by 3GPP for LTE-Advanced. Besides being an expla