Difference between revisions of "Warming up with Unix commands"

From Wiki Max
Jump to navigation Jump to search
Line 24: Line 24:
 
As seen above, the command $pwd (present working directory) shows the directory you are presently working on.
 
As seen above, the command $pwd (present working directory) shows the directory you are presently working on.
 
By typing the command $ls it is possible to list the content of the present directory.
 
By typing the command $ls it is possible to list the content of the present directory.
 +
In order to move to a directory contained in the present directory, we use the command $cd (change directory).
 +
For instance:
 +
$cd LabQSM
 +
now you can inspect its content again typing $ls

Revision as of 13:34, 20 November 2020

EHJdV6vWwAgcT-b.jpg

Getting Stearted

Operating system.png

In this lesson, you will learn some basic commands of the Unix operative system. The operating system (OS) is the system software that manages computer hardware, software resources, and provides common services for computer programs, i.e. allow the communication between hardware and software. In order to use a computer, you need an OS. At this moment you are using a Virtual Machine containing the Ubuntu OS, a Linux distribution, a Unix-like OS. The command used in Linux and Unix they are essentially the same.

If you open a terminal window a prompt will appear where you can type your command. A snapshot of the prompt is shown here below:

Example of prompt of bash shell

You can inspect your environment by typing the following commands:

  • $ whoami # (my username)
  • $ hostname [-A] # (machine name)
  • $ pwd # (current directory)
  • $ ls [-ltr] # list files and dirs
  • $ ps # running processes
  • $ top # more on running procs
  • $ date # show date and time

Filesystem

As seen above, the command $pwd (present working directory) shows the directory you are presently working on. By typing the command $ls it is possible to list the content of the present directory. In order to move to a directory contained in the present directory, we use the command $cd (change directory). For instance: $cd LabQSM now you can inspect its content again typing $ls