• 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/42

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;

42 Cards in this Set

  • Front
  • Back
What is the command to copy an input file and convert the file's content to another format?
Syntax: dd

-if=
-of=
-bs=
-ibs=
-obs=
-conv=
What is the command line to display information about how space is allocated in a file system, such as used and free space.
syntax: df

-h
-l
-m
-t
What is the command line to summarizes disk usage, with the default of presenting information by directory?
syntax: du

-a
-b
-c
-h
-S
What is the command line to remove garbage files?
find. " (" -name a.out -o name core ")" -exec rm {} \;
What is the command line to monitor CPU-intensive tasks?
Syntax: top

n-
What is the command line to display how long the system has been up since the last boot?
Syntax: uptime

no option
What is the command line to display statistics about free and used memory?
Syntax: free

-b
-m
-g
-t
What is the command line to forward the output of the top and free command to a computer suport person?
Syntax :
top n 3 > topdata
free n 3> freedata
How to forward top and free output to a printer or email to a support person?
Syntax: mail supportperson name or email (might be wrong)

lpr- topdata
What is the command line to provides a listing of the currently running processes?
Syntax: ps

-A
--user - show user by process
What is the command line to stop a process?
Syntax: kill [-PID]
What is the command line to check the spelling of words in one or more plain-text files and suggest changes?
Syntax: ispell [-option] filenames

-b creats a backup (.bak) of the original file.
-C ignore concatenate words
-S orders the suggested substitutions from most likely to least likely
What is the command line to compares two files and indicates if they are different?
Syntax: cmp [-option] file1 file2
What is the command line to format text?
Syntax : groff [-Tdev] no space in between Tdev

TdevH
TdevT
What is the command line to back up files and directories?
Syntax: dump [-option] devicename and partition or file names

i.e = dump -0u -f /de/st0 /dev/hd2
What is the command line to restore entire file system, specific files and directories?
Syntax: restore [-option] device partition or filenames

i.e= restore -r -f /dev/st0

Retores the tape

restore -i -f /dev/tape
What is the command line to send and receive mail through your computer or server?
Syntax: mail
What is the command line to configures a network connection and is used to view information about the connection, such as the IP address?
Syntax: ifconfig [network interface]

eth0
-a show all network interfaces including those that are not currently working.
What is the command line to poll a computer on the same or a different network to determine if your computer is working, the network is working, or the remote comuter is connected and working?
Syntax: ping [-option] hostname

-a sound a beep
-c returns the number of polls
-q display summarize results
What is the command line to track the route that a network communication takes from point A on a network to point B?
Syntax: traceroute [-option] host
What is the command line to monitor network traffic into and out of the host computer?
Syntax: netstat [-option] host
What is the command line to runs a script that starts a service in UNIX/Linux, such as a serice to enable remote procedure calls or a service to enable printing?
Syntax: servicename
Unix and linux utilities are classified into how many functional areas?
8
What utilities check and reports free disk space?
df
What utilities command to check for disk usage?
du
what command to use when you want to remove waste space or barbage files?
find and rm
What are the two command to provide detailed views of "internals" of the system to determine CPU and memory use?
top and free
What command is used to show how long a system has been up since booting?
uptime
If you want to run a program in the background by appending what operator at the end of the command line?
&
What command is used to display currently running processes?
ps
What command is used to terminate a currently running processes?
kill
what utilities command is used to check spelling of a file?
ispell
How to archive and back up file system, directories, and files? How to restore a file system?
dump command
restore command
What does the Network File System (NFS ) does?
It enables useres to share directories and files over a network
What utilties is used that enables UNIX/Linux computers to access folders and files shared on networked WINDOW computers?
Samba
A type of barbage file created when an executing program attempt to do something illegal, such as accessing another user's memory?
core file
A temporary file, such as core files, that loses its usefulness after serveral days.
garbage file
A network protocol or communication language that handles addressing and routing of information over a network so that it reaches the correct destinations?
Internet Protocols
A communications standard that supports sending and receving binary files in mail messages?
Multipurpose Internet Mail Extentions (MIME)
Enables files transfer and other shared services that involve computer running UNIX/Linux
Network Files System
An identification number that the operating system assigns to a process for managing and tracking that process?
Process ID (PID)
Enable services and software on one computer to use services and software on a different computer
Remote procedure call (RPCs)