Posts

Showing posts with the label BASIC LINUX COMMANDS

BASIC LINUX COMMANDS

Image
  Display information about the Operating  System hostnamectl   Display information about the CPU architecture lscpu   Listing files and directories   ls   Detailed listing   ls -l   Lots of details about the contents of your directory   The * wildcard   ls d*   This will list all files in the current directory starting with d   Making Directories   mkdir tom   Changing to a different directory   cd tom   Change to the parent directory   cd ..   will take you one directory up the hierarchy. Command Meaning ls List files and directories ls -a List all files and directories mkdir Make directory cd directory Change directory cd Change to the home directory cd ~ Change to the home directory...