Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Hands-On System Programming with Go
Hands-On System Programming with Go

Hands-On System Programming with Go: Build modern and concurrent applications for Unix and Linux systems using Golang

eBook
AU$48.99
Paperback
AU$60.99
Subscription
Free Trial
Renews at AU$24.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Table of content icon View table of contents Preview book icon Preview Book

Hands-On System Programming with Go

Section 1: An Introduction to System Programming and Go

This section is an introduction to Unix and system programming. It will help you understand what components Unix operating systems have to offer, from the kernel API to the filesystem, and you will become familiar with system programming's basic concepts.

This section consists of the following chapters:

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Learn how to write Unix and Linux system code in Golang v1.12
  • Perform inter-process communication using pipes, message queues, shared memory, and semaphores
  • Explore modern Go features such as goroutines and channels that facilitate systems programming

Description

System software and applications were largely created using low-level languages such as C or C++. Go is a modern language that combines simplicity, concurrency, and performance, making it a good alternative for building system applications for Linux and macOS. This Go book introduces Unix and systems programming to help you understand the components the OS has to offer, ranging from the kernel API to the filesystem. You'll then familiarize yourself with Go and its specifications. You'll also learn how to optimize input and output operations with files and streams of data, which are useful tools in building pseudo-terminal applications. You'll gain insights into how processes communicate with each other, and learn about processes and daemon control using signals, pipes, and exit codes. This book will also enable you to understand how to use network communication using various protocols, including TCP and HTTP. As you advance, you'll focus on Go's best feature - concurrency, which will help you handle communication with channels and goroutines, other concurrency tools to synchronize shared resources, and the context package to write elegant applications. By the end of this book, you will have learned how to build concurrent system applications using Go

Who is this book for?

If you are a developer who wants to learn system programming with Go, this book is for you. Although no knowledge of Unix and Linux system programming is necessary, intermediate knowledge of Go will help you understand the concepts covered in the book

What you will learn

  • Explore concepts of system programming using Go and concurrency
  • Gain insights into Golang s internals, memory models and allocation
  • Familiarize yourself with the filesystem and IO streams in general
  • Handle and control processes and daemons lifetime via signals and pipes
  • Communicate with other applications effectively using a network
  • Use various encoding formats to serialize complex data structures
  • Become well-versed in concurrency with channels, goroutines, and sync
  • Use concurrency patterns to build robust and performant system applications

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 05, 2019
Length: 458 pages
Edition : 1st
Language : English
ISBN-13 : 9781789803365
Vendor :
Google
Category :
Languages :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning

Product Details

Publication date : Jul 05, 2019
Length: 458 pages
Edition : 1st
Language : English
ISBN-13 : 9781789803365
Vendor :
Google
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
AU$24.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
AU$249.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts
AU$349.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total AU$ 212.97
Mastering Go
AU$90.99
Go Programming Cookbook
AU$60.99
Hands-On System Programming with Go
AU$60.99
Total AU$ 212.97 Stars icon

Table of Contents

23 Chapters
Section 1: An Introduction to System Programming and Go Chevron down icon Chevron up icon
An Introduction to System Programming Chevron down icon Chevron up icon
Unix OS Components Chevron down icon Chevron up icon
An Overview of Go Chevron down icon Chevron up icon
Section 2: Advanced File I/O Operations Chevron down icon Chevron up icon
Working with the Filesystem Chevron down icon Chevron up icon
Handling Streams Chevron down icon Chevron up icon
Building Pseudo-Terminals Chevron down icon Chevron up icon
Section 3: Understanding Process Communication Chevron down icon Chevron up icon
Handling Processes and Daemons Chevron down icon Chevron up icon
Exit Codes, Signals, and Pipes Chevron down icon Chevron up icon
Network Programming Chevron down icon Chevron up icon
Data Encoding Using Go Chevron down icon Chevron up icon
Section 4: Deep Dive into Concurrency Chevron down icon Chevron up icon
Dealing with Channels and Goroutines Chevron down icon Chevron up icon
Synchronization with sync and atomic Chevron down icon Chevron up icon
Coordination Using Context Chevron down icon Chevron up icon
Implementing Concurrency Patterns Chevron down icon Chevron up icon
Section 5: A Guide to Using Reflection and CGO Chevron down icon Chevron up icon
Using Reflection Chevron down icon Chevron up icon
Using CGO Chevron down icon Chevron up icon
Assessments Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.3
(3 Ratings)
5 star 33.3%
4 star 33.3%
3 star 0%
2 star 0%
1 star 33.3%
Rok Biderman Sep 22, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I would really recommend this book to someone starting out, but not completely new to Go. It would be a solid intro into systems programming but also appropriate for any programmers starting to work in Go who is struggling with applying concurrency patterns. It can also serve as a nice refresher for more experienced developers, as it's a more advanced book. Get yourself a good intro book into Go programming (there are plenty out there), and then go for this book to get you into the systems side of it.A basic understanding of programming concepts and of Go are worked through the book from a system's perspective, discovering the details that the usual programming books won't cover. The book is concise and well written, with good examples and can ease you into using Go as a tool to do Linux systems programming.Having picked up this book as a helper for a toy implementation of network accessible file system in Go I am building, the patterns in the third part of the book came pretty handy. It goes and delivers a comprehensive overview of concurrency patterns to ease the transition.Going deeper into these topics is essential for anyone interested in aspects of security, handy if you're trying to design high-performance applications or for someone like me, just trying to expand my knowledge.
Amazon Verified review Amazon
Jaime A Jul 03, 2020
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Muy bueno, lo estoy leyendo todavía. estoy aprendiendo muchísimo sobre algunoz aspectos del lenguaje más orientados a sistemas. Muy recomendable
Amazon Verified review Amazon
Jerome Lanteri Apr 08, 2020
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
Il n'y a que les titres et les introduction sur chaque chapitre. Ensuite tout le reste est inexistant.Bravo !
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.