Understand and use essential tools Flashcards

1
Q

how to create a hard linked file

A

ln file /new/file

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

how to create a soft/symbolic link

A

ln -s file /new/symlink-file

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

how to compress a file/folder

A

tar -czvf name-of-archive.tar.gz /path/to/directory-or-file

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

how to extract a file(s)/folder(s)

A

tar -xzvf archive.tar.gz

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