{"entries":[{"name":"study","startTime":"2024-09-04T14:17:53.193Z","endTime":"2024-09-04T15:04:31.416Z"},{"name":"test","startTime":"2024-09-04T15:04:37.469Z","endTime":"2024-09-04T15:04:39.434Z"}]}

Subnetting part 1

subnet mask rekentrucje

aantal hosts voor een /24: = = 256

SubnetHostsNetworkBroadcast
192.168.1.0/24255.255.255.0254192.168.1.0192.168.1.255
192.168.1.0/28255.255.255.24014192.168.1.0192.168.1.15
192.168.1.16/28255.255.255.24014192.168.1.16192.168.1.31
192.168.0.0/23255.255.254.0510192.168.0.0192.168.1.255
192.168.2.0/23255.255.254.0510192.168.2.0192.168.3.255
ZELF DOEN
192.168.0.0/22255.255.252.01022192.168.0.0192.168.3.255
192.168.1.0/26255.255.255.19262192.168.1.0192.168.1.63
192.168.1.0/27255.255.255.22430192.168.1.0192.168.1.31

Navigating the file system

locate:

    • Explanation: Searches for files and directories in a prebuilt database.
      • Example: Running locate myfile.txt would search for the file named “myfile.txt” in the prebuilt database and display its path if found.

updatedb:

    • Explanation: Updates the database used by the locate command to reflect recent changes in the file system.
      • Example: Running updatedb would update the database, allowing the locate command to provide up-to-date search results.