Linux Basics Flashcards

1
Q

What does pwd do?

A

Tells you where you are in the directory

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

What does cat file1.txt file2.txt do?

A

Prints both files out

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

What does “head -n 10 file.txt”

A

Prints first 10 lines of the file

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

What does “tail -n 10 file.txt” do?

A

Prints bottom 10 lines of the file

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

What does less file.txt do?

A

Lets you view the file, one line at a time

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

How to quit once you have entered?

A

Press q

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

What does touch do and what is the side effect?

A

Updates the access and modification timestamp
- side effect it makes a new file

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

mkdir new

A

Creates a new directory

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

mv some_file.txt destination

A

moves some file to a new destination

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

rm some_file.txt

A

Removes the file

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

rm -r some_directory

A

deletes some_directory and all its files

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

cp course_file.txt destination

A

copies the file to the destination

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

cp -R my_direct new_direct

A

copies the directory to the new directory

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

grep “hello” words.txt

A

Searches for each instance of the word

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

grep -r “hello”

A

Searches for each instance of the word in the current directory

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

-find some_dreictory -name hello.txt

A

Find files and directories by name

17
Q

Sudo

A

stands for superuser

18
Q

Permissions, how many characters?

19
Q

Show me the 10 characters of permissions

A

drwxrwxrwx

20
Q

What does d, r, w, and x mean?

A

D stands for directory
r for read
w for write
x for execute

21
Q

What does each set of rwx rwx rwx mean?

A

First one is owner
second is group
three is everyone else

22
Q

How to change permissions?

A

chmod -R u=rwx,g=,o= DIRECTORY
-R means do it for all in the directory

23
Q

How do you look at the directory writes permission for each file in the directory?

24
Q

How do you revoke the right to execute a file?

A

chmod -x FILENAME

25
Q

How do you allow to execute a file?

A

chmod +x FILENAME

26
Q

How to pipe?

A

echo command | command2

27
Q

How to interrupt?

28
Q

How to kill?

29
Q

How do you see the current path of where you are?

30
Q

How to create a new file?

A

touch new_file.txt

31
Q

How do you create a new directory?

A

mkdir new_direct

32
Q

how to rename a file?

A

mv some_file.txt new_name.txt

33
Q

How do you remove a file?

A

rm some_file.txt

34
Q

How do you remove all files in a directory?

A

rm -r some_directory.txt