$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Robolinux Terminal Tutorial for Beginners – Step by step

August 12, 2021 | By the+gnu+linux+evangelist.

Administering

  1. 8. Getting Admin Power

    Last How to Get the Admin Super-Powers.

    To Login as SuperUser:

    sudo su

    Especially relevant: take care because with the Admin Login you can Delete Anything and so your System may be in a Harm!

    If Got “User is Not in Sudoers file” then see: How to Enable sudo
    Then to Logout:

    exit

    To Protect your System from the potential Damage of an Hazardous Crazy Command Execution the Logout should be executed every Time your Setup is Achieved!
    Finally, to Execute a Single Command as SuperUser:

    sudo su -c '[myCommand]'

    Or:

    sudo [myCommand]

    For Example to Edit the Repository Source file with nano CLI Editor:

    sudo nano /etc/apt/sources.list

    Ctrl+x to Save Changes and/or Quit from nano Editor.

  2. 9. Installing Software

    See Further Howto Getting Started Installing Robolinux Packages

    Package Installation Robolinux Quick Start

Congratulations, you are now fully Initiated to the awesome Robolinux Command Line Shell. ;)