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

Linux Debian Terminal Tutorial for Beginners

November 15, 2017 | By the+gnu+linux+evangelist.

Administering

  1. 8. Getting Admin Power

    Last How to Get the Admin Super-Powers.

    To Login as SuperUser:

    su -

    Or:

    sudo su

    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:

    su -c 'myCommand'

    Or:

    sudo myCommand

    So for instance to List the Protected root Directory try to run:

    sudo ls /root
  2. 9. Installing Software

    See Further Howto Getting Started Installing Debian Packages

    Debian Package Install Getting Started

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