Skip to content

Commit

Permalink
CON-3314 docs(deep-in-system): improve the audit questions for mac os…
Browse files Browse the repository at this point in the history
… users
  • Loading branch information
zamazzal committed Dec 17, 2024
1 parent 19a872d commit ba94d70
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
5 changes: 3 additions & 2 deletions subjects/devops/deep-in-system/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,11 @@ You must export your VM to a safe place, you will need it in the audit.
You will use your exported VM to run a new VM for each audit.
Push the shasum of your exported VM, you can get it this way:

Example:
```console
user:~$ sha1sum deep-in-system.ova > deep-in-system.sha1
user:~$ sha1sum {exported deep-in-system} > deep-in-system.sha1
user:~$ cat deep-in-system.sha1 | cat -e
<...>255bfef9560<...> deep-in-system.ova$
<...>255bfef9560<...> {exported deep-in-system}$
user:~$
```

Expand Down
19 changes: 11 additions & 8 deletions subjects/devops/deep-in-system/audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ Files that must be inside the repository:

##### Verify that the virtual machine that will be audited is the one that is submitted:

Example:
```console
user:~$ sha1sum deep-in-system.ova > deep-in-system-toaudit.sha1
user:~$ sha1sum {exported deep-in-system} > deep-in-system-toaudit.sha1
user:~$ diff deep-in-system.sha1 deep-in-system-toaudit.sha1 ; echo $?
0
user:~$
Expand Down Expand Up @@ -64,17 +65,19 @@ You can check the versions of the ubuntu server from here: [Get Ubuntu Server](h
Check the VM disk and partitions with this command:

```console
user:~$ lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT /dev/sda
user:~$ lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT /dev/{device_name}
NAME FSTYPE SIZE MOUNTPOINT
sda 30G
β”œβ”€sda<...> 1M
β”œβ”€sda<...> swap 4G [SWAP]
β”œβ”€sda<...> ext4 15G /
β”œβ”€sda<...> ext4 5G /home
└─sda<...> ext4 6G /backup
{device_name} 30G
β”œβ”€{device_name}<...> 1M
β”œβ”€{device_name}<...> swap 4G [SWAP]
β”œβ”€{device_name}<...> ext4 15G /
β”œβ”€{device_name}<...> ext4 5G /home
└─{device_name}<...> ext4 6G /backup
user:~$
```

> It's fine if the output format is different, but the values should be the same.
- The VM disk size must be 30GB.

- VM disk must be divided into these partitions:
Expand Down

0 comments on commit ba94d70

Please sign in to comment.