Find the UUID for a Linux-based resource to assist with remediation when malware is detected by Agentless Vulnerability & Threat Detection.
Universally unique identifiers (UUIDs) are used to help identify partitions related
to malware detection by Agentless Vulnerability & Threat Detection. You may use the
UUID to search for more information, such as the location of the malware, about the
detection in XDR Data Explorer. To find the UUID for a Linux-based partition:
Procedure
- Use the
blkidcommand.- Type
sudo blkidto return a list of all available disk partitions on your Linux system and the associated attributes, including UUIDs when available.
Note
Thesudo blkidcommand also returns information on loop devices. - Type
sudo blkid | grep UUID=to return information only on disk partitions on your Linux system that have available UUIDs.
- Type
- Use the
lsblkcommand.- Type
sudo lsblk -fto return a structured view of all available disk partitions on your Linux system and the associated attributes, including UUIDs when available.
Note
Thesudo lsblk -fcommand also returns information on loop devices. You must use the-foption withlsblkto return file system information. - Type
sudo lsblk -f | grep -v loopto return a structured view of only disk partitions on your Linux system that have available UUIDs.
- Type
