Text Editors Flashcards

1
Q

What are the types of editors?

A
  1. Line Editor
    a. ed
    b. ex
  2. Terminal Editors
    a. pico , ai)nano
    b. vi
    c. emacs
  3. GUI Editors
    a. KDE –> kate, kwrite
    b. Gnome— >gedit
    c. sublime
    d. atom
    e. brackets
  4. IDE
    a. eclipse
    b. Bluefish
    c. NetBeans
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the expected features of an editor?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What command is used to check the path of pico or nano editors?

A

which pico
which nano

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

how to open a file for editing with nano / pico editor?

A

nano <filename>
pico <filename></filename></filename>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the modes of vi editor?

A
  1. Command mode (Esc)
  2. Insert Mode ( i,I ,o, O ,a, A)
  3. ex mode (:)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How to activate line numbers in vi editor?

A

use command se nu
to turn off use command se nonu

17
Q

What is secure copy ?

A
18
Q

how to unzip a tar file ?

A

tar -xvf code3d.tar

19
Q

What does command dmsg do?

A

dmsg displays all error system messages
we could save this as a file using redirection like

dmsg > dmsg.txt

20
Q
A