Hoofdstuk 3 Flashcards

1
Q

Met wat start een absolute path?

A

/

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

Wat is het verschil tussen een absolute and a relative path?

A

een absolute path start in de root en een relative path start in de huidige directory

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

(opdracht) toon alle files ook de verborgen

A

ls -a

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

(opdracht) toon alle files en hun correspondending subfolders

A

ls -aR

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

(opdracht) - Use a command to find out from all folders and files (including subfolders and subfiles) whether it is a folder or a text file?

A

ls -lR

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

(opdracht) bekijk de inode numbers of files

A

ls -i

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

(opdracht)maak een hardlink van week2 genaamd hardlink1

A

ln week2 hardlink1

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

Hoe kan je zien of er hardlinken zijn?

A

als je ls -l is gebruikt kan je het aantal links zijn. als dit nummer 2 is dan is er een hardlink

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

Wat gebeurd er als je een document met daaraanvast een hardlink verwijdert?

A

het nummer van de linken gaat naar beneden maar de file van de hardlink veranderd niet.

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

(opdracht) maak een symbolic link van week2 genaamd link1

A

ln -s week2 link1

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

Hoe zie je dat er een symbolic link is?

A

bij ls -l is het cijfer van de linken niet gestegen maar er staat wel een verwijzing.

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

wat gebeurd er als je een file verwijdert met daaraan een symbolic link?

A

de file van de symbolic link is ineens leeg.

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

met welk commando verwijder je een directorie met inhoud?

A

rm -r (name)

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

(opdracht) verander de eigenaar van yellow in user 1

A

sudo chown user1 yellow

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

(opdracht) In the home directory of user3, look for all files and directories that have an “l” in their filename as a second letter.

A

Find . -name “?l*” -print

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

(opdracht) In the home directory of user3, look only for FOLDERS that have an “l” in their filename as a second letter.

A

Find . -name “?l*” -type d -print

17
Q

(opdracht) In the user3’s home directory, look only for FOLDERS created two days ago.

A

Find . -type d -atim -2 -print

18
Q

(opdracht) In the home directory of user3 look only for FILES owned by user “user1”.

A

Find . -user user1 -a -type f -print

19
Q

(opdracht) In the folder colour, look for all files and folders that do NOT end in the letter “d”.

A

Find Colour -! -name “*d” -print

20
Q

(opdracht) In the folder colour, look for all files and folders ending in the letter “d” OR owned by user “user1”.

A

Find Colour ( -name “*d” -o -user user1 ) -print

21
Q

(opdracht) In the home directory of user3, look only for FILES that have an “o” as the second letter in their filename and display the contents of these files on the screen.
Get your result with using the option “-exec”.

A

Find . ( -type f -a -name “?o*” ) -exec cat {} \;

22
Q

(opdracht) LOCATE

Look for files that have “blue” in their name.

A

Locate “blue

23
Q

wat is het verschil tussen find en locate

A

locate zoekt in de laatste update terwijl find in de huidige situatie zoekt.

24
Q

(opdracht) Show the contents of the file in which information about the passwords of the users is saved, screen by screen with a screen size of 7 lines.

A

More -7 /etc/passwd