Close Menu
TechCentralTechCentral

    Subscribe to the newsletter

    Get the best South African technology news and analysis delivered to your e-mail inbox every morning.

    Facebook X (Twitter) YouTube LinkedIn
    WhatsApp Facebook X (Twitter) LinkedIn YouTube
    TechCentralTechCentral
    • News

      Public money, private plans: MPs demand Post Office transparency

      13 June 2025

      Coal to cash: South Africa gets major boost for energy shift

      13 June 2025

      China is behind in AI chips – but for how much longer?

      13 June 2025

      Singapore soared – why can’t we? Lessons South Africa refuses to learn

      13 June 2025

      10 red flags for Apple investors

      13 June 2025
    • World

      Yahoo tries to make its mail service relevant again

      13 June 2025

      Qualcomm shows off new chip for AI smart glasses

      11 June 2025

      Trump tariffs to dim 2025 smartphone shipments

      4 June 2025

      Shrimp Jesus and the AI ad invasion

      4 June 2025

      Apple slams EU rules as ‘flawed and costly’ in major legal pushback

      2 June 2025
    • In-depth

      Grok promised bias-free chat. Then came the edits

      2 June 2025

      Digital fortress: We go inside JB5, Teraco’s giant new AI-ready data centre

      30 May 2025

      Sam Altman and Jony Ive’s big bet to out-Apple Apple

      22 May 2025

      South Africa unveils big state digital reform programme

      12 May 2025

      Is this the end of Google Search as we know it?

      12 May 2025
    • TCS

      TechCentral Nexus S0E1: Starlink, BEE and a new leader at Vodacom

      8 June 2025

      TCS+ | The future of mobile money, with MTN’s Kagiso Mothibi

      6 June 2025

      TCS+ | AI is more than hype: Workday execs unpack real human impact

      4 June 2025

      TCS | Sentiv, and the story behind the buyout of Altron Nexus

      3 June 2025

      TCS | Signal restored: Unpacking the Blue Label and Cell C turnaround

      28 May 2025
    • Opinion

      Beyond the box: why IT distribution depends on real partnerships

      2 June 2025

      South Africa’s next crisis? Being offline in an AI-driven world

      2 June 2025

      Digital giants boost South African news media – and get blamed for it

      29 May 2025

      Solar panic? The truth about SSEG, fines and municipal rules

      14 April 2025

      Data protection must be crypto industry’s top priority

      9 April 2025
    • Company Hubs
      • Africa Data Centres
      • AfriGIS
      • Altron Digital Business
      • Altron Document Solutions
      • Altron Group
      • Arctic Wolf
      • AvertITD
      • Braintree
      • CallMiner
      • CYBER1 Solutions
      • Digicloud Africa
      • Digimune
      • Domains.co.za
      • ESET
      • Euphoria Telecom
      • Incredible Business
      • iONLINE
      • Iris Network Systems
      • LSD Open
      • NEC XON
      • Network Platforms
      • Next DLP
      • Ovations
      • Paracon
      • Paratus
      • Q-KON
      • SkyWire
      • Solid8 Technologies
      • Telit Cinterion
      • Tenable
      • Vertiv
      • Videri Digital
      • Wipro
      • Workday
    • Sections
      • AI and machine learning
      • Banking
      • Broadcasting and Media
      • Cloud services
      • Contact centres and CX
      • Cryptocurrencies
      • Education and skills
      • Electronics and hardware
      • Energy and sustainability
      • Enterprise software
      • Fintech
      • Information security
      • Internet and connectivity
      • Internet of Things
      • Investment
      • IT services
      • Lifestyle
      • Motoring
      • Public sector
      • Retail and e-commerce
      • Science
      • SMEs and start-ups
      • Social media
      • Talent and leadership
      • Telecoms
    • Events
    • Advertise
    TechCentralTechCentral
    Home » Enterprise software » 10 steps to become a Linux samurai

    10 steps to become a Linux samurai

    By Nuno Martins6 August 2021
    Twitter LinkedIn Facebook WhatsApp Email Telegram Copy Link
    News Alerts
    WhatsApp
    The author, Red Hat’s Nuno Martins, says the world of Linux is a ‘deep rabbit hole’ – there is always something new to learn and discover

    The beauty of Linux is that it is made by programmers, for programmers. It can run on almost any hardware and there is an endless variety of distributions for almost every use case. It is preferred by programmers for its versatility, scalability, container portability, security, and many other features. Most importantly, it’s free and open source, which means that it’s built and supported by a community of developers who are always at the forefront of innovation and are willing to help each other out.

    Knowing a few useful command-line tricks can save you a lot of time and frustration. Some you may already know, and others may prove to be a hidden gem you weren’t aware of before. Either way, here are some of the essential command-line tips and tricks that could save you a couple of keystrokes.

    1. Back to basics

    Before we dive into the deep end with these command-line tips, let’s assume not all of us are experts, and make sure we’ve got the basics covered. When using the Linux command line, or “shell”, it’s important to keep in mind that all commands, files and directory names are case sensitive, and file extensions (such as .exe) are determined automatically by reading the file header.

    Another command that some people forget, while others use every minute, is “cd -” to return to your previous directory. This proves particularly useful when you end up down a long directory path, move to a completely different path and realise you need to go back. It’s also good to know that if you enter only “cd”, you’ll go straight to the home directory.

    Additionally, the “rm” command is widely used to delete files, but it does not delete them completely. After deletion, files can still be recovered using special software, so if you really value your personal data, you should use the shred command as follows: “shred ‐‐filename” and “shred ‐‐help” to see the available command options.

    2. The !!

    How many times have you run a long command only to find out that it requires root privileges, but you forgot to add “sudo” at the beginning? If you enter “sudo !!”, the command line will replace the “!!” with the last command you tried to run, and you’ll never have to type it all out again. The “sudo” command stands for “super user do” and it’s one of the most important commands in a Linux administrator’s arsenal.

    3. Run until success

    When you need to run a command until it succeeds, like pinging a server until it becomes available, you don’t have to type in “!!” every time. You can simply use a “while !” (while not) loop to achieve that. There are many ways to do it, but here’s a simple example: If you want to display the contents of “filename” until it becomes available, you can do it as follows:

    $ while ! cat filename
    do
    echo filename is not ready
    sleep 5
    done

    4. The reverse search

    Forgetting an exact command line after using it a few minutes or hours ago happens all the time, and finding it by scrolling through your history is less than optimal. The reverse search function is the answer. Press “Ctrl+R”, type a part of the command, and the reverse search will find the closest match in your recent history.

    5. The “no hang up” command

    Ending a terminal session will end any program you’re running on it. To prevent this and keep the program running in the background, you can use the “nohup” command. This command is also often used in combination with the “nice” command to run processes on a lower priority.

    6. Help is only a keystroke away

    Almost all Linux commands and command-line tools come with a help page that tells you how to use them. Most of you probably already know this, but it can be accessed simply by adding “shred ‐‐help” to the end of the command. What some of you may not know is that if you’re ever feeling lonely on a late-night coding session, you can also type in “echo “You can do it!” | cowsay” to spawn a Linux cow to motivate you!

    7. The editor to rule them all

    Apart from running commands in Linux, one of the most critical skills is to be able to edit configuration files and build scripts. The most important tool you will use for this is the ever-faithful text editor. Now, Linux has many choices but the one editor to rule them all is Vim. Learn it, it will make your life easier and allow you to be efficient when you are working in and around the configuration files and scripts that make up your systems.

    8. Get a basic understanding of security

    One thing we all do when we are learning is to try and find an easier way. You can look at the most popular distributions of Linux and they tend to be the ones which are easier to get started with. One serious component people forget about is basic security. We have all been there: Something doesn’t work and we change the permissions to allow all access, or we disable things like Selinux (Security Enhanced Linux). These components are just as critical to understand than learning the CLI tools. I’m not saying you need to be a security expert, but you should learn the basics about permissions, user accounts and best practices. This way you aren’t exposing yourself or your systems while you learn.

    9. Automation is the way forward

    Once you start to get comfortable with Linux and all its components, it’s important to start looking at things like Ansible. Ansible is an automation tool used in almost every component of modem IT infrastructure. Official certifications like Red Hat’s Certified Engineer actually require you to be able to automate a lot of the daily tasks you would do as a Linux professional. Ansible is simple, powerful and agentless, and it would definitely be a recommended skill to work on for any Linux ninja soon to be samurai.

    10. Official training

    Lastly, if there is one thing that you could do that would immediately give you more knowledge and grow your skills and understanding of Linux it would be to find some official courses. Now, I know many of you are saying, why get training when you can just Google? Training gives you the right way to do things, and it gives you the skills and recognition that future employers or clients will understand. Official certifications are a great way to test yourself and prove your Linux kung fu is strong enough.

    The platform of the future

    I hope that some of you have found these basic tips and tricks useful. The world of Linux is a deep rabbit hole and there is always something new to learn and discover — and using the right Linux platform can make everything much easier. Red Hat’s Enterprise Linux is the world’s leading enterprise Linux platform and provides more than just software and support. It gives programmers access to the resources, tools and technologies they need to write or reuse reliable software. If you haven’t joined the open-source movement yet, why not try it out for free?

    • Nuno Martins is senior solutions architect for sub-Saharan Africa at Red Hat
    • This promoted content was paid for by the party concerned


    Nuno Martins Red Hat Red Hat Enterprise Linux RHEL
    Subscribe to TechCentral Subscribe to TechCentral
    Share. Facebook Twitter LinkedIn WhatsApp Telegram Email Copy Link
    Previous ArticleChina Merchants Bank wins a top award for Huawei ADN solution
    Next Article The hybrid workplace: What does it mean for cybersecurity?

    Related Posts

    IT automation is critical – how Red Hat and Obsidian make it happen

    10 April 2025

    Red Hat, LSD Open announce significant new partnership

    26 April 2024

    Accelerate innovation with platform engineering

    30 November 2023
    Company News

    Huawei Watch Fit 4 Series: smarter sensors, sharper design, stronger performance

    13 June 2025

    Change Logic and BankservAfrica set new benchmark with PayShap roll-out

    13 June 2025

    SAPHILA 2025 – transcending with purpose, connection and AI-powered vision

    13 June 2025
    Opinion

    Beyond the box: why IT distribution depends on real partnerships

    2 June 2025

    South Africa’s next crisis? Being offline in an AI-driven world

    2 June 2025

    Digital giants boost South African news media – and get blamed for it

    29 May 2025

    Subscribe to Updates

    Get the best South African technology news and analysis delivered to your e-mail inbox every morning.

    © 2009 - 2025 NewsCentral Media

    Type above and press Enter to search. Press Esc to cancel.