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

      DStv makes RWC final stream available for R19.95

      27 October 2023

      Dimension Data to be renamed NTT Data

      27 October 2023

      Karpowership gets green light for Richards Bay plant

      27 October 2023

      Why people wave on Zoom

      27 October 2023

      Microsoft gaining ground in cloud race with AWS, Google

      27 October 2023
    • World

      Huawei sees growth in cloud, digital power segments

      27 October 2023

      Intel beats expectations; manufacturing momentum builds

      27 October 2023

      Google CEO to testify on Monday in antitrust trial

      27 October 2023

      China rushes to swap Western tech for domestic options

      26 October 2023

      Alphabet, Meta deliver solid financial performances

      26 October 2023
    • In-depth

      Quantum computers in 2023: what they do and where they’re heading

      22 October 2023

      How did Stephen van Coller really do as EOH CEO?

      19 October 2023

      Risc-V emerges as new front in US-China tech war

      6 October 2023

      Get ready for a tidal wave of software M&A

      26 September 2023

      Watch | A tour of Vumatel’s Alexandra fibre roll-out

      19 September 2023
    • TCS

      TCS | Mesh.trade’s Connie Bloem on the future of finance

      26 October 2023

      TCS | Rahul Jain on Peach Payments’ big funding round

      23 October 2023

      TCS+ | How MiWay uses conversation analytics

      16 October 2023

      TCS+ | The story behind MTN SuperFlex

      13 October 2023

      TCS | The Information Regulator bares its teeth – an interview with Pansy Tlakula

      6 October 2023
    • Opinion

      Big banks, take note: PayShap should be free

      20 October 2023

      Eskom rolling out virtual wheeling – here’s how it works

      4 October 2023

      How blockchain can help defeat the scourge of counterfeit goods

      29 September 2023

      There’s more to the skills crisis than emigration

      29 September 2023

      The role of banks in Africa’s digital future

      22 August 2023
    • Company Hubs
      • 4IRI
      • Africa Data Centres
      • Altron Document Solutions
      • Altron Systems Integration
      • Arctic Wolf
      • AvertITD
      • CoCre8
      • CYBER1 Solutions
      • Digicloud Africa
      • Digimune
      • E4
      • Entelect
      • ESET
      • Euphoria Telecom
      • iKhokha
      • Incredible Business
      • iONLINE
      • LSD Open
      • Maxtec
      • MiRO
      • NEC XON
      • Next DLP
      • Ricoh
      • Skybox Security
      • SkyWire
      • Velocity Group
      • Videri Digital
    • Sections
      • AI and machine learning
      • Banking
      • Broadcasting and Media
      • Cloud computing
      • Consumer electronics
      • Cryptocurrencies
      • E-commerce
      • Education and skills
      • Energy
      • Fintech
      • Information security
      • Internet and connectivity
      • Internet of Things
      • Investment
      • IT services
      • Metaverse and gaming
      • Motoring and transport
      • Open-source software
      • Public sector
      • Science
      • Social media
      • Talent and leadership
      • Telecoms
    • Events
    • Advertise
    TechCentralTechCentral
    Home » Sections » Open-source software » 10 steps to become a Linux samurai

    10 steps to become a Linux samurai

    By Nuno Martins6 August 2021
    Facebook Twitter LinkedIn WhatsApp Telegram Email
    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
    Share. Facebook Twitter LinkedIn WhatsApp Telegram Email
    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

    DStv makes RWC final stream available for R19.95

    27 October 2023

    Acsa aims for carbon neutrality by 2050

    27 October 2023

    Huawei sees growth in cloud, digital power segments

    27 October 2023
    Promoted

    Acsa aims for carbon neutrality by 2050

    27 October 2023

    Flutter vs React Native: a comprehensive comparison

    27 October 2023

    iKhokha, Shopstar pave the way for simpler e-commerce

    27 October 2023
    Opinion

    Big banks, take note: PayShap should be free

    20 October 2023

    Eskom rolling out virtual wheeling – here’s how it works

    4 October 2023

    How blockchain can help defeat the scourge of counterfeit goods

    29 September 2023

    Subscribe to Updates

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

    © 2009 - 2023 NewsCentral Media

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