diff --git a/subjects/devops/deep-in-system/README.md b/subjects/devops/deep-in-system/README.md index 69d7338509..71a08b3713 100644 --- a/subjects/devops/deep-in-system/README.md +++ b/subjects/devops/deep-in-system/README.md @@ -163,10 +163,12 @@ 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:~$ ``` diff --git a/subjects/devops/deep-in-system/audit/README.md b/subjects/devops/deep-in-system/audit/README.md index 45af6188cc..6926de9c6c 100644 --- a/subjects/devops/deep-in-system/audit/README.md +++ b/subjects/devops/deep-in-system/audit/README.md @@ -11,8 +11,10 @@ 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:~$ @@ -64,17 +66,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: