Skip to content

Commit 37a56ee

Browse files
committed
code block indent
1 parent f8b4564 commit 37a56ee

1 file changed

Lines changed: 14 additions & 23 deletions

File tree

Answers.md

Lines changed: 14 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,30 @@ layout: default
33
title: Answers
44
---
55

6-
```
7-
Output
8-
. . .
9-
10-
-- Reboot --
11-
12-
. . .
13-
```
14-
156
# Chapter 1. Answers
167
1. **Answer**:
17-
```
18-
Hard link:
19-
A hard link is an additional name for an existing file that points directly to the inode (data structure) on disk. It is indistinguishable from the original file. Deleting the original file does not affect the hard link.
8+
```
9+
Hard link:
10+
A hard link is an additional name for an existing file that points directly to the inode (data structure) on disk. It is indistinguishable from the original file. Deleting the original file does not affect the hard link.
2011
21-
Symbolic (soft) link:
22-
A symlink is a special file that contains a path to another file or directory. If the target is deleted, the symlink becomes broken (dangling).
12+
Symbolic (soft) link:
13+
A symlink is a special file that contains a path to another file or directory. If the target is deleted, the symlink becomes broken (dangling).
2314
24-
Forensically, symlinks can hide access paths or redirect programs; hard links can be used to obscure the presence or deletion of files.
25-
```
15+
Forensically, symlinks can hide access paths or redirect programs; hard links can be used to obscure the presence or deletion of files.
16+
```
2617
2718
2. **Answer**:
28-
```
29-
Historically:
19+
```
20+
Historically:
3021
31-
/bin and /sbin contain essential system binaries required for early boot and maintenance.
22+
/bin and /sbin contain essential system binaries required for early boot and maintenance.
3223
33-
/usr/bin and /usr/sbin contain user applications and non-essential system binaries.
24+
/usr/bin and /usr/sbin contain user applications and non-essential system binaries.
3425
35-
Modern systems (especially on systemd-based distros) often symlink /bin to /usr/bin and /sbin to /usr/sbin as part of the merged /usr initiative.
26+
Modern systems (especially on systemd-based distros) often symlink /bin to /usr/bin and /sbin to /usr/sbin as part of the merged /usr initiative.
3627
37-
Forensically, it’s important because tampered binaries or privilege escalation tools may hide in any of these paths.
38-
```
28+
Forensically, it’s important because tampered binaries or privilege escalation tools may hide in any of these paths.
29+
```
3930
4031
3. **Answer**:
4132
```

0 commit comments

Comments
 (0)