Tag Archives: learn

Learn Linux Now!

Just try and stop watching this show!

So I made the “mistake” late last night of starting the Linux+ show at ITPro.TV ! Oh my goodness! I could not stop watching. And here I thought I knew Linux. This show is truly binge-worthy, and I would challenge anyone to find me superior online, self-paced Linux training. (I have tried them all, including videos from the Linux Academy!)

What makes this training so special is a long list:

  • The “two trainers are better than one” modality
  • Don Pezet’s deep knowledge and enthusiasm for everything Linux
  • The depth of the coverage – I even loved the intro episodes covering the origins of Linux and details I NEVER knew
  • Don’s ability to make Linux so simple and fun to learn
  • The Hands-On Labs to practice what I just learned
  • The pace of the episodes
  • The episode lengths which always seemed “just right”
  • The remarkable quality of the production; everyone is trying to do video now – and most are failing miserably – ITProTV is the gold standard for true video training
Don in action!!!

Again – I challenge you – find me superior Linux training on the InterWeb. 🙂 This show I was watching was the official Linux+ training covering the very latest version of the CompTIA exam. NOTE: There were many other Linux shows that I could have picked from!

If you are interested in obtaining your Linux+ certification, then this show is definitely for you. ITProTV took great care to map the episodes very closely to the specific exam objectives. Sections include:

  • Performing Basic Linux Tasks
  • Managing Users and Groups
  • Managing Permissions and Ownership
  • Managing Storage
  • Managing Files and Directories
  • Managing Kernel Modules
  • Managing the Linux Boot Process
  • Managing System Components
  • Managing Devices
  • Managing Networking
  • Managing Packages and Software
  • Securing Linux Systems
  • Working with Bash Scripts
  • Automating Tasks
  • Installing Linux

Get started today learning for FREE! https://www.itpro.tv/plans/personal/

Learning Python – Lesson 4: More on Variables

Python Variables

Here we will dig deeper into the important concept of variables in Python. In this lesson, I will test my code and provide the output using Python in what is called interactive mode. Here I am not building a script (script mode), but I am typing my commands into my terminal and getting results back immediately. To enter interactive mode, I just launch Python and I do not specify a script to execute:

C:\Users\terry\OneDrive\Blog\Python>python
Python 2.7.16 (v2.7.16:413a49145e, Mar 4 2019, 01:37:19) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

How Variables Work in Python

Here are some important things to consider:

Continue reading Learning Python – Lesson 4: More on Variables