• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/50

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

50 Cards in this Set

  • Front
  • Back
To print output to the screen what command is used?
Echo
Which command makes commands immune to hangups and quits?
nohup
UNIX/LINUX systems come with which two types of user accounts?
Regular and Superuser
Which command executes commands at a later time?
at, batch
Which command converts a file while copying it?
dd
Which command allows you to become another user without logging off?
su (switch user)
Which commands displays the present working directory?
pwd
Which command reads one line at a time?
line
Which command runs a command at low priority?
nice
What command is used to change the working directory?
cd
What command removes a directory?
rmdir
What allows processes to communicate with each other?
A pipe ( | )
What command with its many options displays a list of the processes currently running in a number of formats?
PS
Which command creates a directory?
mkdir
What is a special program used as an interface between the user and the heart of the UNIX/Linux operating system, a program called the kernel?
The shell
Which command compares two files for differences?
diff
What is descriptive material preceded by a # sign? They are not executable statements.
Comments
What command changes the owner and group on files and directories?
chown
The superuser account in UNIX/Linux is more commonly known as what?
Root
Which command compares two files?
cmp
What are the three prominent and supported shells on most UNIX systems?
Bourne Shell (AT&T Shell), the C Shell (Berkeley Shell), and the Korn (superset of the Bourne Shell).
Which command displays information about local and remote users?
Finger
Which command displays top CPU processes?
top
What is the first process the kernel creates which is the parent of all processes, with a PID of 1?
init
Which command browses or pages through a text file?
more
What command displays all processes as a tree with its roost being the first process that runs?
pstree
Which command displays who is logged on the system?
who
Which command sends output to a printer?
lp
What is a request for kernel services and is the only way a process can access the system’s hardware?
System call
Which command lists contents of a directory?
ls
Which command displays files one page at a time?
pg
What command changes permissions on files and directories?
chmod
Which command stores and retrieves files from an archive file, normally a tape device?
tar
Which command copies filename to another target, which is either a file or directory?
cp
What is a process that runs in the background and performs one or more tasks on a user’s behalf?
Daemon
Which command changes the login password and password attributes?
passwd
Which command compresses or expands files?
gzip, gunzip, cat
How is a process created in UNIX?
with the fork system call
What is a program in execution and can be identified by its unique PID number?
Process
What is a list of words separated by whitespace?
An array
Which command moves or renames files?
mv
Which command encrypts and decrypts the contents of a file?
crypt
The shell can define what two types of variables?
Local and Environment
Which command prints group membership of user?
groups
A process can be terminated by using keystroke-generated signals like Ctrl-C or Ctrl-\, or by using what?
kill command
A new program can terminate at any time by executing what?
exit call
A total number of how many bits constitute the permissions on a program?
nine
What is ultimately responsible for making sure that any commands typed at the prompt get executed properly?
The shell
There are some characters that are evaluated by the shell in a special way. They are known as?
wildcards
Which command removes files from directories?
rm