Skip to main content
SolarWinds MSP
  • Login
  • Support
  • Partnerships
    • Partnerships Overview
    • Solution Provider Program
    • Technology Alliance Program
    • Distributor Program
SolarWinds MSP
  • Products
    • SolarWinds N-central Automate what you need. Tackle complex networks. Try this remote monitoring and management solution built to help maximize efficiency and scale.
    • SolarWinds RMM Start fast. Grow at your own pace. Try this powerful but simple remote monitoring and management solution.
    • SolarWinds EDR Defend against ransomware, zero-day attacks, and evolving online threats with Endpoint Detection and Response
    • SolarWinds Backup Manage data protection for servers, workstations applications, documents and Microsoft 365 from one SaaS dashboard.
    • Mail Protection & Archiving Protect users from email threats and downtime.
    • Password Management Easily adopt and demonstrate best practice password and documentation management workflows.
      • Passportal Demo
    • PSA & Ticketing Manage ticketing, reporting, and billing to increase helpdesk efficiency.
    • Remote Support Help support customers and their devices with remote support tools designed to be fast and powerful.
  • Solutions

    I'm looking for...

    • Security Solutions
    • Monitoring Solutions
    • Efficiency Solutions
  • Resources
    • Blog
    • Webcasts & Events
    • Ask the N-central Experts
    • Daily Live Demos
    • RMM Foundations Training
    • Upcoming Events
    • Upcoming Webcasts
    • Resource Center
    • COVID-19 Resources
    • Resource Library
      • Case Studies
      • Product Information
      • eBooks
      • White Papers
      • Infographics
    • SolarWinds MSP Free Tools
    • GDPR Resource Center
    • Security Resource Center
    • MSP Institute Webinar Series
    • MSP Advice Project
  • About
    • Contact
    • Customer Success
    • Worldwide sales and support
    • Careers
    • Awards and Recognition
    • Get A Quote
    • Newsroom
      • Press Releases
      • In The News
      • Media Contacts
      • COVID-19 Response
    • Leadership Team
    • Legal
      • Cookie Policy
      • Privacy Notice
      • Software Services Agreement
      • Terms of Use
      • Backup Fair Use Policy
    • Security
      • SolarWinds Security Statement
      • Vendor Data Protection Requirements
    • Support
  • IT Departments
  • Contact Sales
    • Get A Quote
    • General Inquiry
  • TRY NOW
    • SolarWinds RMM
    • SolarWinds Backup
    • MSP Manager
    • SolarWinds Passportal
    • SolarWinds N-central
    • SolarWinds Mail Assure
    • SolarWinds Risk Intelligence
    • SolarWinds Take Control
  • Request a Quote
  • Try Now
    • SolarWinds RMM
    • SolarWinds N-central
    • SolarWinds Backup
    • MSP Manager
    • SolarWinds Mail Assure
    • SolarWinds Passportal
    • SolarWinds Risk Intelligence
    • SolarWinds Take Control
Request quote
Filter Blogs
  • Filter by:
  • MSP Business
    • Automation
    • Backup & Disaster Recovery
    • Security-series
    • Best Practices
    • Business
    • Business Growth
    • Business Risk
    • Cloud Computing
    • Customer Service
    • Cybersecurity
    • Cybersecurity Awareness Month
    • Data
    • GDPR
    • Internet of Things
    • IT Support
    • ITSM
    • LOGICcards
    • Machine Learning
    • Mail
    • Managed Services
    • Marketing
    • Mobile
    • Networking
    • Operations
    • Podcast
    • Product
    • PSA
    • Remote Management
    • Research & Trends
    • Risk Intelligence
    • Security
    • Security Vlog
    • Service Desk
    • Services & Support
    • The Head Nerds
    • Tips & Advice
    • Training
Home Blog MSP Business What you need to know to get into Linux administration
MSP Business

What you need to know to get into Linux administration

By Dan Toth
24 February, 2017

The skills required to remain current in the sphere of IT are always changing and in this regard, the role of the Linux administrator is the rule and not the exception. Over the past few years, there has been an increase in the skills required to be a Linux administrator. To illustrate that growth, let’s think of the Linux skill set as a building where the current floors are being remodeled and new, more impressive floors are being added to the top. The current move to web applications and web services, cloud-based environments, and big data have become the top floor penthouses. They are the skills that the best employers are looking for, and they will put you in high demand. Let’s take a look at the whole thing from the ground up.

The foundation and basement – Linux system administration

This is an area all Linux/Unix old-timers will recognize. Even though there are now graphical interfaces to accomplish many of these tasks, if you’re serious you’ll learn to use the command line interface in a default shell like Bash. You’ll need to be able to perform tasks such as creating storage (fdisk, mkfs, mkdir, mount), managing files and directories (cd, ls, pwd, rm, rmdir), managing users and permissions (useradd, userdel, psswd, newgrp, chgrp, chmod, chown), managing processes (top, ps, pgrep, kill), managing the boot (GRUB, LILO, run levels), and creating backups and restoring (tar, rsync, dd). Furthermore, let’s not leave out the ever useful vi editor. 

The commands for doing the above and more can be found in a PDF called The Linux System Administrator's Guide, located at The Linux Documentation Project (TLDP). TLDP maintains a very useful website that is chock-full of free information. 

The main floors – Linux network administration

Once you can manage a stand-alone system, you need to be able to connect that system to other systems with networking concepts such as addressing, routing, and DNS. Again, although there are graphical tools, you should be able to configure the network using just command line tools like ifconfig, route, ip, and iptables. You’ll also need to know how to troubleshoot using tools such as tcpdump.

Once more, this well-known territory has been covered many times by many people, and information is obtainable by going to TLDP.org and downloading the free Linux Network Administrators Guide.

The top floors – current Linux technologies

Once you’re ready to move into the top floors, you’ll learn about better tools for doing familiar tasks—such as, but not limited to, infrastructure automation and configuration management (Chef, Puppet, Ansible, SaltStack), version control (Git and Perforce), monitoring and reporting (Nagios and Ganglia), log management (ELK), and metrics management (Graphite, Cacti, Splunk).

At the very top of the building sit the prize technologies—web applications and web services, web performance and monitoring, cloud-based environments, and big data: 

  • Cloud architectures like Amazon Web Services and OpenStack 
  • New types of web servers like NGINX
  • Big data with Apache Hadoop
  • Load balancing with Keepalived and HAProxy 
  • Databases like MySQL, MongoDB, and Cassandra 
  • Caching with Memcached and Redis 
  • Virtualization using KVM and containers like Docker

The Docker containers are an especially hot topic now. Using containers for virtualization is often a more efficient solution than using whole virtual machines, as long as you don’t mind all your containers running the same OS version. In fact, containers can be four to six times more efficient with resources than virtual machines, since they abstract just the operating system kernel and not the whole machine. This means companies can save big money by getting more computing power out of their current hardware. Along with these technologies comes the challenge for the Linux administrator to update their security knowledge to operate in this new virtual environment. 

Summary

The skills necessary to be a Linux administrator five years ago are no longer adequate today. They are still necessary, but additional knowledge is required—specifically, web applications and web services, cloud-based environments, and big data. Still, don’t be intimidated by the seemingly esoteric nature of the knowledge required by Linux. The information and software is freely and publicly available. There are also plenty of graphical tools, included with most distributions, to get you going before you have to learn the command line. Why not get started by downloading a free copy of a Linux distribution such as Ubuntu? That can be found at https://www.ubuntu.com/download.

You might also like...
MSP Business

3 key benefits to proactively monitoring your IT networks

MSP Business

How to keep your IT skills up to date

MSP Business

How to secure your remote control access

MSP Business

The 5 biggest challenges for today's IT admins

MSP Business

Mac Terms to Know When Providing Mac Support

IT Support

4 Steps to Managing Local Admin Rights

Want to stay up to date?

Get the latest MSP tips, tricks, and ideas sent to your inbox each week.

Loading form....

If the form does not load in a few seconds, it is probably because your browser is using Tracking Protection. This is either an Ad Blocker plug-in or your browser is in private mode. Please allow tracking on this page to request a subscription.

Note: Firefox users may see a shield icon to the left of the URL in the address bar. Click on this to disable tracking protection for this session/site

Recent Posts
  • January 2021 Patch Tuesday: One Actively Exploited Vulnerability and a Few Likely to Be
  • TAP Blog Series: Maximizing Your Service Delivery Opportunity
  • Why Do MSPs Choose SolarWinds Backup? IT Central Station Finds Out
  • Seven Features Remote Assistance Software Should Have
  • TAP Blog Series: Creating Your Automation Strategy—Three Key Components You Must Have in Place
Categories:
  • Security (229)
  • Tips & Advice (122)
  • Best Practices (94)
  • Managed Services (86)
  • Backup & Disaster Recovery (82)
  • Business Growth (75)
  • The Head Nerds (74)
  • IT Support (41)
  • Business (39)
  • Cybersecurity (37)
  • Automation (36)
  • Mail (33)
  • Operations (33)
  • Remote Management (27)
  • ITSM (25)
  • Data (21)
  • Cloud Computing (21)
  • Networking (21)
  • Marketing (14)
  • Product (11)
  • PSA (10)
  • Services & Support (4)
  • Mobile (4)
  • Risk Intelligence (4)
  • Service Desk (4)
  • Internet of Things (3)
  • Customer Service (3)
  • GDPR (2)
  • Research & Trends (2)
  • Training (2)
  • Business Risk (1)
  • LOGICcards (1)
Show moreless
SolarWinds MSP

Products
  • SolarWinds RMM
  • SolarWinds N-central
  • SolarWinds Backup
  • SolarWinds EDR
  • SolarWinds MSP Manager
  • SolarWinds Mail Assure
  • SolarWinds Risk Intelligence
  • SolarWinds Take Control
  • SolarWinds Passportal
  • All Products Use Cases
Solutions
  • Security Solutions
  • Monitoring Solutions
  • Efficiency Solutions
  • Identify which RMM solution is right for me
  • Drive Efficiency with Automation
  • Manage my MSP Business More Efficiently
  • Manage my IT Department More Efficiently
  • Layered Security
  • Cross-Platform Support
  • Data-Driven Insights
About
  • About Us
  • Careers
  • Newsroom
  • Leadership Team
  • Upcoming Events
  • Subscription Preferences
  • SolarWinds
  • SolarWinds Trust Center
  • COVID-19 Response
Support
  • SolarWinds RMM
  • Solarwinds N-central
  • SolarWinds Backup
  • SolarWinds Mail Assure
  • SolarWinds Take Control
  • SolarWinds MSP Manager
  • Solarwinds Risk Intelligence
  • Solarwinds Threat Monitor
  • SolarWinds Passportal
  • SolarWinds Take Control Downloads
  • Backup & Recovery Downloads
  • Service Status

Footer 2

  • Legal Documents
  • Privacy
  • California Privacy Rights
  • Security Information
  • Sitemap

© SolarWinds MSP Canada ULC and SolarWinds MSP UK Ltd.
All Rights Reserved.