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

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;

39 Cards in this Set

  • Front
  • Back
What command in vi writes changes to a file?
:w
What is the most rapidly changing part of a Linux distribution?
the kernel
In vi command mode, what key acts as a left cursor?
b
In vi command mode, what key acts as an up cursor?
j
In vi command mode, what does 'i' do?
inserts text after the cursor
In vi command mode, what does 'O' do?
Opens the line above and inserts text
In vi command mode, what does 'P' do?
puts yanked text before the cursor
What vi command will delete a word?
dw
What three commands can be used to configure a kernel?
make config; make menuconfig; make xconfig
In vi command mode, what key acts as a down cursor?
k
What does the minor number of a kernel version indicate?
Whether the version is stable or in development
In vi command mode, what does 's' do?
deletes the current character and inserts unlimited text
What vi command will quit?
:q
What vi command invokes a search and replace for the current line?
:s
In vi command mode, what does 'o' do?
opens the next line and inserts text
In vi command mode, what character moves to the end of the line?
$
In vi command mode, what key moves to the end of the file?
G
In vi command mode, what does 'A' do?
appends text to the end of the line
In vi command mode, what command can move the cursor down 10 lines?
10j
What vi command invokes a search and replace for the entire document?
:%s
Where is the standard location for kernel source tar files?
/usr/src/linux
In vi command mode, what does 'u' do?
undoes the last change
Of the three commands to configure a kernel, which is the most reliable?
make config
In vi command mode, what key will move to the beginning of the next word?
w
In vi command mode, what does 'C' do?
changes to the end of the line
In vi command mode, what does 'x' do?
deletes the selected character
In vi command mode, what does 'D' do?
deletes to the end of the line
How is a kernel version number written?
major.minor.patch
What vi command changes a word?
cw
In vi command mode, what does 'dd' do?
deletes the entire line
In vi command mode, what character moves to the beginning of the line?
0 (zero)
What mode does vi start in?
command mode
In vi command mode, what does 'U' do?
Undoes all changes to the current line
In vi command mode, what does 'a' do?
appends text after the cursor
In vi command mode, what key acts as a right cursor?
l
In vi command mode, what does 'p' do?
puts yanked text after the cursor
What vi command invokes a search?
/
How is a stable kernel version denoted?
by an even minor number
In vi command mode, what does 'r' do?
replaces the selected character with the next character typed