WorksheetsModul 5 & 6
Total questions: 19
Worksheet time: 4mins
Which text editor that will you use everyday?
vi
vim
nano
emacs
Select text editor that unusual for you
nano
vim
vi
emacs
Which not the type of vim modes?
Insert
Command
Edit
Visual
How to go to insert mode at the left of cursor?
i
A
a
e
How to quit vim without any changes inside the file?
:q
:w
:quit
:q!
How to force quit from vim editor without changes anything?
:qa
:q!
:wq
ctrl+ww
How to go to first line on vim?
H
h
L
l
How to jump to end of the word without punctuation on vim?
E
e
j
w
How to copy the character on vim
y
yy
x
d
Command to save the file only if changes were made, then quit the Vim editor?
:w
:wq
ZZ
esc
How to quit from nano text editor
Ctrl+x
Ctrl+w
Ctrl+s
Ctrl+c
How to find and replace text in nano
ctrl+w & ctrl+r
ctrl+w & ctrl+t
ctrl+y
ctrl+v
What is simillar command than "which" command?
whereis
find
locate
cat
How to create an empty file
touch
cat
rm
rmdir
How the command to print output and send or write it to file?
cat > file
command | > file
command | tee file
echo 'abc' > file
What is command to link file with have different permission on source or destination?
ln -s
ln
cp
mv
Is it true or false, Linux kernel is the core of linux operating system?
True
False
Which command to check the only version that kernel running currently?
uname -a
uname -o
uname -i
uname -r
What command is used to print any messages that have been sent to the kernel's message buffer during and after system boot?
modprobe
dmesg
lsmod
uname
