We may earn an affiliate commission when you visit our partners.
Course image
Ziyad Yehia and Internet of Things Academy

  Ziyad is enthusiastic as a teacher and really gets the material across in a way that anyone could understand it. I was intimidated about learning the Linux Terminal, but this course made it easy. Thanks Ziyad. "  - Thomas K  - 5 Star Review

Read more

  Ziyad is enthusiastic as a teacher and really gets the material across in a way that anyone could understand it. I was intimidated about learning the Linux Terminal, but this course made it easy. Thanks Ziyad. "  - Thomas K  - 5 Star Review

"Thanks Ziyad you become my favorite instructor ever.... I love his teaching style, motivation and energy throughout the course. He breaks thick concepts in smaller pieces and with the examples make it so easy to understand."  - Shahid Z  - 5 Star Review

"Very Thorough. Step by Step is necessary for this beginner. Excellent so far. " - Micheal W  - 5 Star Review

Hello and welcome to the Linux Mastery Course where you are going to master the Linux command line in a project-based and unforgettable way.

This course has been expertly crafted to make sure that you rapidly improve your Linux skills, Turbocharge your productivity and Boost your career with no time wasting and no useless fluff.

Course Structure

  • Topic 1) Mastering the Linux TerminalUnderstand the How AND Why of the Linux Command Line

If you want true mastery, it's not enough to learn how to do something. You need to understand why.

In this section, you will learn what Linux commands are, and how they are structured so that you can get valuable insight into how working with the Linux command line works, rather than just memorising command after command after command like other Linux courses will make you do. 

You will learn important concepts such as:

  • The difference between the Linux terminal and the shell

  • Command Input and Output

  • Data Redirection.

  • Connecting Linux Commands together to Build Sophisticated Data Pipelines.

And so many other useful concepts that will give you the fundamental skills to confidently use the command line to accomplish anything you want.

This course also focuses on empowering you to be an independent learner of the Linux operating system so you will also learn how to use the Linux Manual.

Knowing how to use the Linux manual will give you the independence to do what you want to do, rather than just what other people have shown you.

  • Topic 2) Mastering the Linux File System         Increase Productivity by Working with Files from the Linux Command Line

Once you’ve become a master of the Linux terminal and understood the critical concepts behind what you’re doing, you will then move on to gain mastery over the Linux File System. 

Working with Files is what we do 99% of the time when we work with computers and in this section you will learn how to navigate the file system from the command line and perform a whole bunch of tasks with files and folders such as:

  • How to Create files and folders in Linux 

  • How to Delete files and folders in Linux

  • How to Copy and paste files and folders in Linux.

  • How to Move and Rename files and folders in Linux.

  • How to Find files and Sort data in Linux.

  • How to Backup and Compress files and folders in Linux.

But you'll do it all from the Linux command line.

You will also learn some productivity tips to squeeze every bit of juice out of your command line work as well as getting a tour of the Linux file system so that you feel right at home :)

  • Topic 3) Mastering Task Automation and Scheduling       Save time by automating the boring stuff.

Once you’ve mastered the Linux file system, we will turn our attention to task automation and scheduling. 

Now, if you’re the kind of person who loves to automate tasks and free up your spare time, you will LOVE this section.  

We will cover how to write bash scripts and automate them using a special scheduling program called cron so that you can automate the boring stuff and increase your productivity.

  • Topic 4) Mastering Package Managers and Software Repositories

         Discover new tools and possibilities by exploring Open Source Software. 

Then in the Final section of the course, we will turn our attention to Linux software management.

One great thing about Linux is that it is an open source operating system that is being contributed to by millions and millions of people around the world.  

In this section of the course you will gain the independence to search through this enormous body of software for cool new tools that do what you want, and learn how to install and manage that software all from the Linux command line. 

You will also learn how to access source code and customise programs, as well as understand the subtle differences between free and open source software.  

Projects + Quizzes

At the end of each section there are capstone projects that serve as badges of honor that confirm you have fully understood concepts and are ready to progress to the next level of Linux mastery.

There are also quizzes scattered throughout the course to further check your understanding.

BONUS: Lecture Summaries + Cheat sheets.

The course also comes with free professionally-designed cheat sheets and section summaries so you don't even need to take notes.  

just focus on your learning and getting results and rest assured that all the important concepts are jotted down for you to refer to whenever you want.

24/7 Lifetime Access + Certificate of Completion

When you enroll you will get lifetime access to all of the course contents and any updates and when you complete the course 100% you will also get a certificate of completion that you can add to your resumé/CV to show off to the world your new-found Linux Mastery.

So What are you Waiting For?

Click that shiny Enroll button and I’ll See you inside ;)

Enroll now

What's inside

Learning objectives

  • Quickly learn the linux command line from scratch!
  • Use bash scripts and cron scheduling software to automate boring tasks!
  • Become an independent user of the linux operating system!
  • Learn how to search for, customise, install and manage open source software with package managers!
  • Operate a linux computer entirely from the command line!
  • Gain a complete understanding of linux & fill in any existing knowledge gaps!

Syllabus

Get all Psyched Up About The Great Decision You Have Made!

In this video, you'll get an introduction to the course and what you will be learning!

Read more
Mastery Level 1: Setting up your Linux Virtual Machine
A Quick Note...
By the end of this section you will know how to use the terminal to execute commands, redirect command output and chain commands together to form powerful command pipelines.
A quick note...

In this video you will jump right in and run your very first Linux commands!

In this video, you will learn the overall structure that every command follows. This will allow Linux commands to start looking like a language rather than random text on the screen ;)

Terminal Concepts Quiz

The key to independent usage of Linux is effectively using the Linux manual.

The Linux manual is massive and in order to engage with the manual effectively we need to know how it is structured. 

In this video you will learn about the 8 sections of the manual page and what each one is for.

In this video, we will take what we have learned about the Linux manual and apply it.

You will learn how to search the manual using keywords, how to open manual pages and how to read them to learn how to use a new command.

In this video, we are going to put together the whole process of using the manual pages and you will also learn some useful Linux manual tips and tricks!

Linux Manual Quiz

In this video you are going to learn about the 4 different ways you can get data into and out of a Linux command.

Command Input + Output Quiz

In this video, you will learn how to use redirection to control the most important data stream... Standard Output.

In this video, we will finish off our discussion of redirection by seeing how to redirect standard error and standard input. 

You will also see how you can redirect multiple data streams at the same time!

Redirection Quiz

In this video, you are going to learn how to build pipelines and we will build a pipeline that can find the day of the week and save it to a file.

You have recently learned about piping and redirection, but the two don't always play so nice together.

In this video, you are going to learn how to use the tee command to take "snapshots" of data flowing through your pipeline and save it to files, to avoid breaking your pipelines with redirection. 

As you have learned, piping is all about connecting the standard output of one command to the standard input of another command.

But what if a command doesn't accept standard input, and only works with command line arguments (echo for example)?

Well that's where the xargs command comes in and this video will teach you all about it.

Piping Quiz

In this video you will learn everything you will ever need to know about creating aliases.

Aliases allow you to create memorable nicknames for your commands and pipelines.

By creating aliases and using the special trick that you will learn in this video, you can create awesome pipelines and save them for later so that they can be used in even bigger pipelines down the line.

Congratulations for Finishing this Section on Mastering the Linux Terminal! In this video we will have a recap of what you have learned and celebrate your progress so far.

"Pipeline Master" Project
By the end of this section, you will be able to Create, Delete, Copy, Paste, Open, Search, Edit Find and Backup Files + Folders across your whole computer from the command line.

In this video you'll get an introduction to what you will learn in this section of the course on Mastering the Linux File System!

In this video, you will learn about how to use the pwd and ls commands to see where your shell is currently operating on your file system and what is around you :)

In this video, you will learn how to move around the file system using the cd command, and see how the cd, ls and pwd commands all work in unison to elegantly navigate the file system :)

In this video you will learn about the shell's super useful tab completion feature and then we will have a recap of everything you've learned about navigating the file system.

Here's a quick quiz to check you know the important principles of navigating the linux file system

In this video, you will learn about the useful freedoms that Linux gives you when naming your files, and you'll also discover a few things you need to be aware of if you want 3rd party software to play nice with your custom filenames.

In this video, you will learn about wildcards and how they can be used to make your commands more precise, more controlled and more powerful.

Here is a quick quiz to check that you know how to use the most common types of wildcards.

In this video, you will learn how to use the touch and mkdir commands to create files and directories using the command line.

In this video, you will take your file and folder creation skills to the next level, by using brace expansion to create 7200 files with just one command...

Creating Files and Folders Quiz

In this video, we begin our discussion of deleting files and folders and you you will learn how to delete files using the command line.

In this video, we wrap up our discussion of deleting files and folders and you you will learn how to delete folders using the command line.

In this video, you will learn how to use the command line to copy and paste files and folders.

In this video, you will learn how to use the mv command to move and rename files + folders.

In this video, you are going to learn how to use an fun command-line based text editor called nano!

In this video we will finish up investigating all the options available to you when using the nano editor.

Nano Quiz

In this video you will learn how to use the locate command and some of it's limitations.

In this video you will learn how to overcome the limitations of the locate command and use it to its full potential.

Locate Command Quiz

In this video, we will begin our discussion of the find command -- one of the most powerful commands available on the command line!

In this video, you will begin to learn how to take control of the file command by learning how to control the depth that the find command searches to and how to control whether the find command looks for just files or just directories.

In this video, you will take your skills with the find command to a whole new level by learning how to search for things using names and regular expressions and also how to search for files by file size.

In this video, you will learn how to execute commands on the potentially thousands of results that the find command returns by using the -exec and -ok options. 

In this video, you will take your finding skills to the extreme, by searching for a needle file in the haystack of 5000 files and moving it to the Desktop!

Find Command Quiz

In this video you will learn how to use the cat, tac and rev commands to read a file's contents

In this video you will level up your ability to view file contents by using the "less" paging program and the head and tail commands. 

In this video, you will learn how to use the sort command to sort text and numerical data and know how to reverse the output and remove duplicate results.

In this video, you will learn how to use the sort command to sort tabular data using a variety of different methods.

Sorting Quiz

In this video, you will learn about the archiving process in Linux and learn how to use the tar command to create what is known as a "tar ball"; a file container primed for compression.

In this video, you will learn about various compression algorithms in Linux and learn how to compress and decompress your archives using the command line.

Congratulations for Finishing this Section on Mastering the Linux File System! In this video we will have a recap of what you have learned and celebrate your progress so far.

"Super Secret" Project ;)
Be able to write basic bash scripts to automate tasks and schedule those bash scripts to run using cron

In this video you'll get an introduction to what you will learn in this section of the course on Mastering Job Automation with Bash Scripts and the Cron Scheduling Program!

In this video, you will learn how to create your very own bash scripts.

In this video, you will continue to learn how to create your very own bash scripts and you'll also learn how to allow those bash scripts to be ran just like regular commands.

Bash Scripts Quiz

In this video, you will learn how to use the cron scheduling utility to automate your workflow.

In this video, you will learn more advanced functionality for the cron scheduling utility and use cron and bash scripts to schedule automated weekly backups.

"Hungry for Data" Project
In this section, you will learn everything there is to know about managing and installing third party software on your linux machine!

In this video you'll get an introduction to what you will learn in this section of the course on Mastering Package Managers and Software Repositories!

In this video, you will learn about the history of the GNU project and free software and learn what the term "open source" really means. You will also learn what "Linux" really is. 

In this video, you will learn how to download source code from gnu.org, and then customise, compile and install it to demonstrate the freedom that free open source software gives you.

In this video you will learn about the incredible digital libraries of software called the "Software repositories".

In this video you will learn about how your apt package manager and how it uses a cache to  store lists of packages and to improve performance.

The most important part about having a cache is ensuring it is up to date. In this video, you will learn how to update the apt-cache and how to use the updated cache to upgrade all the software on you system!

In this video you will learn how to use the software repositories to install new packages!

In this video, you will learn how to access source code for packages using the software repositories!

In this video, you will learn how to remove packages from your system when they are no longer needed.

Software Management Quiz

Congratulations for Finishing this Section on Mastering Package Managers and Software Repositories! In this video we will have a recap of what you have learned and celebrate your progress so far.

Course Conclusion

CONGRATULATIONS!! -- You've made it to the end of the course!

Here is a video to congratulate you on your new found skills and also with some juicy bonuses for you to enjoy ;)

Get Current Best-Price Coupons to All of Internet of Things Academy's courses!

Get Setup With a Working Linux Virtual Machine! :D

In this video you will learn how to install Virtual Box so you can run Linux inside a virtual Machine!

This will be the first step in creating the perfect Linux Learning Environment because It means that you cannot break anything because your Linux machine will be virtual!

In this Video You are going to grab your own copy of Ubuntu and set up your very own Linux Virtual Machine :D

In this video you will Launch your Shiny new Linux Virtual Machine and See Your New Operating System With Your Own Eyes :D 

Having some trouble with your VM installation? Don't worry -- Try one these solutions :)

Good to know

Know what's good
, what to watch for
, and possible dealbreakers
Develops skills and knowledge that are core to Linux operating systems including file manipulation, command line usage, and software management
Taught by Ziyad Yehia and the Internet of Things Academy, both of whom are well-known and respected in the field of Linux operating systems and command line use
Takes a creative approach to teaching Linux file system, command line, and software management through project-based learning and a clear focus on understanding the 'how' and 'why' of the Linux operating system
Provides hands-on learning experiences through capstone projects and quizzes that test understanding of key concepts
Offers a comprehensive study of Linux file system, command line, and package management
Includes lifetime access to course contents and a certificate of completion, which can be added to a resume or CV to showcase newfound Linux skills

Save this course

Save Linux Mastery: Master the Linux Command Line in 11.5 Hours to your list so you can find it easily later:
Save

Reviews summary

Entertaining linux mastery

Learners say this Linux course is an amazing option if you're looking to become an advanced user. Students note that the instructor is funny, making the learning process enjoyable.
Instructor has a entertaining style.
"The teacher is funny, and this make you enjoy the classes..."
"O professor é engraçado, e isso faz você aproveitar as aulas..."
Can lead to becoming an advanced Linux user.
"This course can bring you from the beggining of a linux user to advanced user."
"pode levar você de um usuário iniciante no linux para um usuário avançado."

Activities

Be better prepared before your course. Deepen your understanding during and after it. Supplement your coursework and achieve mastery of the topics covered in Linux Mastery: Master the Linux Command Line in 11.5 Hours with these activities:
Review Linux basics
Reviewing the basics of Linux can ensure you enter the course with a strong understanding of the underlying principles
Browse courses on Linux Basics
Show steps
  • Review the Linux file system
  • Review the basic Linux commands
Review Data Structures and Algorithms
Refresh your knowledge of data structures and algorithms to enhance your understanding of this course.
Browse courses on Data Structures
Show steps
  • Review basic data structures such as arrays, linked lists, and hash tables
  • Revise fundamental algorithms like sorting, searching, and recursion
  • Practice implementing these concepts in a programming language
Compile study materials
Compiling materials will help you get organized and can reveal any knowledge gaps you may have
Show steps
  • Review the syllabus and make a list of the topics that will be covered in the course
  • Gather any materials that you already have, such as textbooks, notes, and handouts
  • Organize your materials so that they are easy to find and use
13 other activities
Expand to see all activities and additional details
Show all 16 activities
Participate in a Study Group
Enhance your learning through peer collaboration and discussion.
Show steps
  • Join or form a study group with fellow students
  • Discuss course materials, concepts, and assignments
  • Share knowledge and perspectives with each other
  • Provide support and encouragement to fellow group members
Practice Shell Commands
Reinforce your understanding of shell commands through practice.
Show steps
  • Review the syntax and usage of various shell commands
  • Execute shell commands in a terminal
  • Combine multiple commands using pipes and redirection
  • Use shell commands to automate tasks
Practice Linux commands
Practice makes perfect. Completing exercises will solidify your understanding, and help you memorize the material for the long term
Browse courses on Linux Commands
Show steps
  • Find a list of common Linux commands
  • Practice using the commands in a terminal window
Practice using the Linux command line with interactive tutorials
Develop fluency in using the Linux command line to prepare for using it in more complex tasks and projects.
Browse courses on Linux Command Line
Show steps
  • Find a reputable online resource that provides interactive Linux command line tutorials.
  • Follow the instructions in the tutorials to complete each exercise.
  • Make a note of any commands or concepts that you find particularly challenging.
  • Review the tutorials regularly to reinforce your learning.
Learn About Linux File Permissions
Follow tutorials to enhance your understanding of Linux file permissions.
Browse courses on File Permissions
Show steps
  • Follow a tutorial on Linux file permissions
  • Practice changing file permissions
  • Understand the different types of file permissions
  • Apply file permissions to real-world scenarios
Complete regular practice exercises on Linux commands
Sharpen your Linux command line skills through repetitive practice exercises.
Browse courses on Linux Command Line
Show steps
  • Identify a website or application that offers Linux command line practice exercises.
  • Complete several exercises each day, focusing on areas where you need the most improvement.
  • Review your answers and identify any areas where you made mistakes.
  • Continue practicing regularly until you feel confident in your ability to use the Linux command line.
Explore Linux Networking Concepts
Expand your knowledge of Linux networking by exploring tutorials.
Browse courses on Linux Networking
Show steps
  • Identify a suitable tutorial on Linux networking
  • Follow the tutorial and learn about networking concepts
  • Configure a network interface on your Linux system
  • Troubleshoot common networking issues
Join a Linux study group
Interacting with your peers can provide a deeper understanding of the subject matter
Browse courses on Linux Commands
Show steps
  • Find a study group online or in your local area
  • Meet with the group regularly to discuss the course material
Join a study group or online forum for Linux users
Connect with other Linux users to share knowledge, ask questions, and collaborate on projects.
Browse courses on Linux Command Line
Show steps
  • Search for online forums or study groups dedicated to Linux.
  • Join a group that aligns with your interests and skill level.
  • Participate in discussions, ask questions, and share your own knowledge.
  • Collaborate with other members on projects or study sessions.
Create a Linux cheat sheet
Creating your own cheat sheet will be a great way to retain the material, and will be a helpful resource to have on hand moving forward.
Browse courses on Linux Commands
Show steps
  • Create a new document
  • Add a list of the most important Linux commands
  • Include a brief description of each command
Create a cheat sheet or reference guide for Linux commands
Solidify your understanding of Linux commands by creating a resource that you can refer to later.
Browse courses on Linux Command Line
Show steps
  • Gather a list of the most commonly used Linux commands.
  • Create a document or spreadsheet that includes the command, its description, and any relevant syntax.
  • Add examples and explanations to help you remember how to use each command.
  • Review your cheat sheet regularly to reinforce your learning.
Build a Simple Linux Script
Create a simple Linux script to apply your knowledge practically.
Show steps
  • Plan and design your script
  • Write the script using a text editor
  • Test and debug the script
  • Execute the script and observe its functionality
Contribute to an Open-Source Software Project
Contribute to an open-source project to enhance your coding skills and gain practical experience.
Browse courses on Software Development
Show steps
  • Identify an open-source project aligned with your interests
  • Understand the project's codebase and contribution guidelines
  • Make a meaningful contribution to the project
  • Submit a pull request and engage with the project maintainers

Career center

Learners who complete Linux Mastery: Master the Linux Command Line in 11.5 Hours will develop knowledge and skills that may be useful to these careers:
Data Scientist
Data Scientists are responsible for developing and implementing data-driven solutions to business problems. They use their knowledge of statistics, machine learning, and data analysis to extract insights from data and build predictive models. This course can help Data Scientists by providing them with a solid foundation in the Linux command line, which is essential for working with data on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Data Scientists.
System Administrator
System Administrators are responsible for managing and maintaining computer systems. They use their knowledge of operating systems, networking, and security to ensure that systems are running smoothly and securely. This course can help System Administrators by providing them with a solid foundation in the Linux command line, which is essential for working with systems on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for System Administrators.
Database Administrator
Database Administrators are responsible for managing and maintaining databases. They use their knowledge of database management systems and technologies to ensure that databases are running smoothly and securely. This course can help Database Administrators by providing them with a solid foundation in the Linux command line, which is essential for working with databases on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Database Administrators.
DevOps Engineer
DevOps Engineers are responsible for bridging the gap between development and operations teams. They use their knowledge of both software development and IT operations to ensure that software is deployed and maintained efficiently and reliably. This course can help DevOps Engineers by providing them with a solid foundation in the Linux command line, which is essential for working with software on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for DevOps Engineers.
IT Manager
IT Managers are responsible for planning, implementing, and managing IT systems and services. They use their knowledge of IT technologies and business principles to ensure that IT systems are aligned with business needs. This course can help IT Managers by providing them with a solid foundation in the Linux command line, which is essential for working with IT systems on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for IT Managers.
Network Engineer
Network Engineers are responsible for designing, implementing, and maintaining computer networks. They use their knowledge of networking protocols and technologies to ensure that networks are running smoothly and securely. This course can help Network Engineers by providing them with a solid foundation in the Linux command line, which is essential for working with networks on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Network Engineers.
Software Developer
Software Developers are responsible for designing, developing, and maintaining software applications. They use their knowledge of programming languages and software development principles to create software that meets the needs of users. This course can help Software Developers by providing them with a solid foundation in the Linux command line, which is essential for working with software on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Software Developers.
Security Analyst
Security Analysts are responsible for identifying and mitigating security risks. They use their knowledge of security principles and technologies to protect systems and data from unauthorized access and attack. This course can help Security Analysts by providing them with a solid foundation in the Linux command line, which is essential for working with security tools and technologies on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Security Analysts.
Software Engineer
Software Engineers design, develop, and maintain software applications. They use their knowledge of programming languages and software engineering principles to create software that meets the needs of users. This course can help Software Engineers by providing them with a solid foundation in the Linux command line, which is essential for working with software on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Software Engineers.
Quality Assurance Analyst
Quality Assurance Analysts are responsible for testing software and identifying bugs. They use their knowledge of software testing principles and technologies to ensure that software is of high quality and meets the needs of users. This course may be useful for Quality Assurance Analysts by providing them with a solid foundation in the Linux command line, which is essential for working with software on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Quality Assurance Analysts.
Technical Writer
Technical Writers are responsible for creating user guides, documentation, and other technical content. They use their knowledge of technical writing principles and technologies to create content that is clear, concise, and accurate. This course may be useful for Technical Writers by providing them with a solid foundation in the Linux command line, which is essential for working with technical content on a Linux system. The course also covers topics such as file management, task automation, and package management, which are all essential skills for Technical Writers.
Business Analyst
Business Analysts are responsible for understanding business needs and translating them into technical requirements. They use their knowledge of business analysis principles and methodologies to ensure that business systems meet the needs of users. This course may be useful for Business Analysts by providing them with a solid foundation in the Linux command line, which can be useful for working with business analysis tools and technologies on a Linux system. The course also covers topics such as file management, task automation, and package management, which can all be useful skills for Business Analysts.
Data Analyst
Data Analysts are responsible for collecting, analyzing, and interpreting data. They use their knowledge of data analysis principles and technologies to extract insights from data and build predictive models. This course may be useful for Data Analysts by providing them with a solid foundation in the Linux command line, which can be useful for working with data analysis tools and technologies on a Linux system. The course also covers topics such as file management, task automation, and package management, which can all be useful skills for Data Analysts.
Computer Scientist
Computer Scientists are responsible for developing new computing technologies and applications. They use their knowledge of computer science principles and methodologies to design and implement new algorithms and software. This course may be useful for Computer Scientists by providing them with a solid foundation in the Linux command line, which can be useful for working with computer science tools and technologies on a Linux system. The course also covers topics such as file management, task automation, and package management, which can all be useful skills for Computer Scientists.
Project Manager
Project Managers are responsible for planning, executing, and closing projects. They use their knowledge of project management principles and methodologies to ensure that projects are completed on time, within budget, and to the required quality. This course may be useful for Project Managers by providing them with a solid foundation in the Linux command line, which can be useful for working with project management tools and technologies on a Linux system. The course also covers topics such as file management, task automation, and package management, which can all be useful skills for Project Managers.

Reading list

We've selected ten books that we think will supplement your learning. Use these to develop background knowledge, enrich your coursework, and gain a deeper understanding of the topics covered in Linux Mastery: Master the Linux Command Line in 11.5 Hours.
Comprehensive reference guide to the Linux operating system. It covers a wide range of topics, from basic commands to advanced system administration. It is an essential resource for anyone who wants to learn more about Linux.
Provides a comprehensive guide to advanced Bash scripting techniques, including in-depth explanations of functions, arrays, and regular expressions. It valuable resource for anyone who wants to master Bash scripting and become a more proficient Linux user or system administrator.
Provides a comprehensive guide to deep learning using Python. It valuable resource for anyone who wants to learn more about deep learning.
Provides a comprehensive guide to advanced Bash scripting techniques. It covers topics such as functions, arrays, and regular expressions. It valuable resource for anyone who wants to learn more about Bash scripting.
Provides over 200 tested, ready-to-use shell scripts that cover a wide range of Linux and Unix tasks. It is an invaluable resource for system administrators and anyone else who wants to automate tasks using shell scripts.
Provides a comprehensive guide to the Linux command line, covering everything from basic commands to advanced topics such as shell scripting and system administration. It valuable resource for both beginners and experienced users alike.
Provides a comprehensive overview of the Linux command line, covering everything from basic commands to advanced topics such as shell scripting and system administration. It valuable resource for both beginners and experienced users alike.
Provides a comprehensive and practical introduction to Bash scripting for beginners. It covers everything from the basics of the Bash scripting language to advanced topics such as functions, arrays, and regular expressions. It valuable resource for anyone who wants to learn more about Bash scripting and become a more effective Linux user or system administrator.
Provides a comprehensive guide to automating tasks using Python. It valuable resource for anyone who wants to learn more about automation.
Provides a comprehensive guide to data analysis using Python. It valuable resource for anyone who wants to learn more about data analysis.

Share

Help others find this course page by sharing it with your friends and followers:

Similar courses

Here are nine courses similar to Linux Mastery: Master the Linux Command Line in 11.5 Hours.
Our mission

OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.

Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.

Find this site helpful? Tell a friend about us.

Affiliate disclosure

We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.

Your purchases help us maintain our catalog and keep our servers humming without ads.

Thank you for supporting OpenCourser.

© 2016 - 2024 OpenCourser