linux1 Flashcards

1
Q

Proprietary

A

Licensed software that has restrictions on what end users can do

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

CLI

A

Command Line interface

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

CLI meaning

A

text -based interface between the user and the OS

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

Shell

A

User interface used to interact with the OS which allows the user to pass commands to the kernel

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

Shell prt2

A

Hardware=Kernel OS shell =Terminal=user

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

Bash

A

Bourne-again-shell

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

Syntax

A

Proper way of structuring a command and any supporting info(EX: verb,subject. object)

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

Bash shell 3 main components main syntax

A

Command
options
Argument

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

Example: create a copy of a text file named Jason

and I wanted to make it called Dion.

A

cp -i Jason.text Dion.text.

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

Copy command

A

cp

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

-i.

A

modifier option of -i.

This tells the Shell to warn me before overriding a file.

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

perform the action on the two arguments,

the input file

and the newly created output file

A

jason.txt Dion.txt

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

what does error “command not found” mean?

A

simply means the shell doesn’t understand. the command you’ve asked it to do. Spell errors

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

What does error “No such file or Directory” mean?

A

Typos in the directory, file, or path name

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

Echo Command

A

Repeats input back to the user on the screen

echo “good morning !”
output: Good morning!

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

Ls or ls

A

The ls command lists the contents of a directory

and can be given options to view their permissions,

hidden files and other information.

17
Q

ls -a

A

lists the directory as well as hidden files

18
Q

pwd

A

present working directory

displays the current working directory