Shared Flashcard Set

Details

LinuxComptia101&102
Chapter 3
63
Computer Networking
Graduate
01/11/2016

Additional Computer Networking Flashcards

 


 

Cards

Term
~ metacharacter
Definition
A metacharacter used to represent a user's home directory.
Term
absolute pathname
Definition
The full pathname to a certain file or directory starting from the root directory.
Term
binary data file
Definition
A file that contains machine language (binary 1s and 0s) and stores information (such as common functions and graphics) used by binary compiled programs.
Term
cat command
Definition
A Linux command used to display (or concatenate) the entire contents of a text file to the screen.
Term
cd (change directory) command
Definition
A Linux command used to change the current directory in the directory tree.
Term
command mode
Definition
One of the two modes in vi; it allows a user to perform any available text-editing task that is not related to inserting text into the document.
Term
concatenation
Definition
The joining of text together to make one larger whole. In Linux, words and strings of text are joined together to form a displayed file.
Term
directory
Definition
A special file on the filesystem used to organize other files into a logical tree structure.
Term
egrep command
Definition
A variant of the grep command used to search files for patterns, using extended regular expressions.
Term
Emacs (Editor MACroS) editor
Definition
A popular and widespread text editor more conducive to word processing than vi. It was originally developed by Richard Stallman.
Term
executable program
Definition
A file that can be executed by the Linux operating system to run in memory as a process and perform a useful function.
Term
fgrep command
Definition
A variant of the grep command that does not allow the use of regular expressions.
Term
file command
Definition
A Linux command that displays the file type of a specified filename.
Term
filename
Definition
The user-friendly identifier given to a file.
Term
filename extension
Definition
A series of identifiers following a dot ( . ) at the end of a filename, used to denote the type of the file; the filename extention .txt denotes a text file.
Term
gedit editor
Definition
A common text editor used within GUI environments.
Term
grep command
Definition
A Linux command that searches files for patterns of characters using regular expression metacharacters. The command name is short for “global regular expression print.”
Term
head command
Definition
A Linux command that displays the first set of lines of a text file; by default, the head command displays the first 10 lines.
Term
home directory
Definition
A directory on the filesystem set aside for users to store personal files and information.
Term
insert mode
Definition
One of the two modes in vi; it allows the user to insert text into the document but does not allow any other functionality.
Term
less command
Definition
A Linux command used to display a text file page-by-page on the terminal screen; users can then use the cursor keys to navigate the file.
Term
linked file
Definition
The files that represent the same data as other files.
Term
ll command
Definition
An alias for the ls -l command; it gives a long file listing.
Term
ls command
Definition
Linux command used to list the files in a given directory.
Term
more command
Definition
A Linux command used to display a text file page by page and line by line on the terminal screen.
Term
named pipe file
Definition
A temporary connection that sends information from one command or process in memory to another; it can also be represented by a file on the filesystem.
Term
nano editor
Definition
A Linux command used to display the contents of a file in octal format.
Term
parent directory
Definition
The directory that is one level closer to the root directory in the directory tree relative to your current directory.
Term
pwd (print working directory) command
Definition
A Linux command used to display the current directory in the directory tree.
Term
regexp
Definition
See regular expressions.

-The special metacharacters used to match patterns of text within text files; they are commonly used by text tool commands, including grep.
Term
regular expressions
Definition
The special metacharacters used to match patterns of text within text files; they are commonly used by text tool commands, including grep.
Term
relative pathname
Definition
The pathname of a target directory relative to your current directory in the tree.
Term
socket file
Definition
A named pipe connecting processes on two different computers; it can also be represented by a file on the filesystem.
Term
special device file
Definition
A file used to identify hardware devices such as hard disks and serial ports.
Term
strings command
Definition
A Linux command used to search for and display text characters in a binary file.
Term
subdirectory
Definition
A directory that resides within another directory in the directory tree.
Term
Tab-completion feature
Definition
A feature of the BASH shell that fills in the remaining characters of a unique filename or directory name when the user presses the Tab key.
Term
tac command
Definition
A Linux command that displays a file on the screen, beginning with the last line of the file and ending with the first line of the file.
Term
tail command
Definition
A Linux command used to display lines of text at the end of a file; by default, the tail command displays the last 10 lines of the file.
Term
text file
Definition
A file that stores information in a readable text format.
Term
text tools
Definition
The programs that allow for the creation, modification, and searching of text files.
Term
vi editor
Definition
A powerful command-line text editor available on most UNIX and Linux systems.
Term
wildcard metacharacters
Definition
The metacharacters used to match certain characters in a file or directory name; they are often used to specify multiple files.
Term
A directory is a type of file. True or False?
Definition
True
Term
Which command would a user type on the command line to find out which directory in the directory tree he is currently located in?

a. pd

b. cd

c. where

d. pwd
Definition
pwd
Term
Which of the following is an absolute pathname? (Choose all that apply.)

a. Home/resume

b. C:\myfolder\resume

c. resume

d. /home/resume

e. C:home/resume
Definition
C:\myfolder\resume
Term
A special device file is used to ____________.

a. enable proprietary custom-built devices to work with Linux

b. represent hardware devices such as hard disk drives and ports

c. keep a list of device settings specific to each individual user

d. do nothing in Linux
Definition
b. represent hardware devices such as hard disk drives and ports
Term
If a user's current directory is /home/mary/project1, which command could she use to move to the etc directory directly under the root?

a. cd ..

b. cd /home/mary/etc

c. cd etc

d. cd /etc

e. cd \etc
Definition
cd /etc
Term
After typing the ls -a command, you notice that there is a file whose filename begins with a dot ( . ). What does this mean?

a. It is a binary file.

b. It is a system file.

c. It is a file in the current directory.

d. It is a hidden file.
Definition
It is a hidden file.
Term
After typing the ls -F command, you notice a filename that ends with an * (asterisk) character. What does this mean?

a. It is a hidden file.

b. It is a linked file.

c. It is a special device file.

d. It is an executable file.
Definition
It is an executable file.
Term
The vi editor can function in which two of the following modes? (Choose both that apply.)

a. text

b. command

c. input

d. interactive

e. insert
Definition
command
insert
Term
The less command offers less functionality than the more command. True or False?
Definition
False
Term
. Which command searches for and displays any text contents of a binary file?

a. text

b. strings

c. od

d. less
Definition
strings
Term
How can a user switch from insert mode to command mode when using the vi editor?

a. Press the Ctrl+Alt+Del keys simultaneously.

b. Press the Del key.

c. Type in a : character.

d. Press the Esc key.
Definition
Press the Esc key
Term
If “resume” is the name of a file in the home directory off the root of the filesystem and your present working directory is home, what is the relative name for the file named resume?

a. /home/resume

b. /resume

c. resume

d. \home\resume
Definition
resume
Term
What will the following wildcard regular expression return: file [a-c]?

a. filea-c

b. filea, filec

c. filea, fileb, filec

d. fileabc
Definition
filea, fileb, filec
Term
What will typing q! at the : prompt in command mode do when using the vi editor?

a. quit because no changes were made

b. quit after saving any changes

c. nothing because the ! is a metacharacter

d. quit without saving any changes
Definition
quit without saving any changes
Term
A user types in the command head /poems/mary. What will be displayed on the terminal screen?

a. the first line of the file mary

b. the header for the file mary

c. the first 20 lines of the file mary

d. the last 10 lines of the file mary

e. the first 10 lines of the file mary
Definition
the first 10 lines of the file mary
Term
The tac command ____________.

a. is not a valid Linux command

b. displays the contents of hidden files

c. displays the contents of a file in reverse order, last word on the line first and first word on the line last

d. displays the contents of a file in reverse order, last line first and first line last
Definition
displays the contents of a file in reverse order, last line first and first line last
Term
How can you specify a text pattern that must be at the beginning of a line of text using a regular expression?

a. Precede the string with a /.

b. Follow the string with a \.

c. Precede the string with a $.

d. Precede the string with a ^.
Definition
Precede the string with a ^.
Term
Linux has only one root directory per directory tree. True or False?
Definition
True
Term
Using wildcard metacharacters, how can you indicate a character that is NOT a or b or c or d?

a. [^abcd]

b. not [a-d]

c. [!a-d]

d. !a-d
Definition
[!a-d]
Term
A user typed in the command pwd and saw the output: /home/jim/sales/pending. How could that user navigate to the /home/jim directory?

a. cd ..

b. cd /jim

c. cd ../..

d. cd ./.
Definition
cd ../..
Supporting users have an ad free experience!