- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
08-29-2023 12:45 PM
Is there a way to check on which drive the demisto application is installed on
08-29-2023 10:11 PM
Linux doesn't really have the same concept of "drives" has Windows does. Linux has a single file structure starting at / and all disks are attached at "mount points", which are directories somewhere under /.
You can view all currently mounted disks with this command:
sudo mount -l
The XSOAR application stores data in /var/lib/demisto and /usr/lib/demisto by default. Looking at all the mount points listed in the mount -l output you should be able to tell which physical disk (or similar - partition, logical volume, network mount, etc) will contain them.
Alternately, if you have the findmnt command installed you can just check directly:
findmnt -n -o SOURCE --target /var/lib/demisto
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!