- Information
- AI Chat
Was this document helpful?
Preliminary exams open source tech
Course: Science Technology and Society (STS)
80 Documents
Students shared 80 documents in this course
University: ICCT Colleges Foundation
Was this document helpful?
PRELIMINARY EXAMINATION REFERENCE
(OPEN SOURCE TECHNOLOGIES)
Prepared by: NELFREDO V. SEVILLA
SHELL
is a program that takes keyboard commands and passes them to the
operating system to carry out
BASH
is an acronym for Bourne Again SHell. It is an enhanced replacement for sh,
the original Unix shell program written by STEVE BOURNE
TERMINAL EMULATOR
is another program needed to interact with the shell when using Graphical
User Interface
SHELL PROMPT
is appeared whenever the shell is ready to accept input
PARTS OF THE SHELL PROMPT
username@machinename ~$
COMMAND HISTORY
is a previous command that reappears once you press up arrow
500 COMMANDS
are commands that most Linux distributions can handle on its history
date
is a command used to display current date and time
cal
is a command used to display a calendar of the current month
df
is a command used to see the current amount of free space on your disk
drives
free
is a command used to display the amount of the free memory
exit
is a command used to end a terminal session
HIERARCHICAL DIRECTORY
STRUCTURE
is a tree-like pattern of directories which may contains files and other
directories
ROOT DIRECTORY
is the first directory in the file system
pwd
is a command used to display the current working directory
ls
is a command used to list the files and directories in the current working
directory
cd
is a command used to change a current working directory
PATHNAME
is the route that take along the branches of the tree to get to the directory
wanted
TWO TYPES OF PATHNAMES
relative or absolute
RELATIVE PATHNAME
is a pathname that starts from working directory and leads to its destination
. or (DOT)
is a special symbol that represents working directory
.. or (DOT DOT)
is a special symbol that represents working directory’s parent directory
ABSOUTE PATHNAME
is a pathname that starts from the root directory and follows the tree branch
by branch until the path to the desired directory or file is completed
cd
is a command used to change the working directory to your home directory
cd -
is a command used to change the working directory to the previous working
directory
~
is a symbol that represents home directory
OPTIONS
is a keyword used to change a command’s behaviour