Is there a way to check on which drive the demisto application is installed on

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements

Is there a way to check on which drive the demisto application is installed on

L1 Bithead

Is there a way to check on which drive the demisto application is installed on 

1 REPLY 1

L3 Networker

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

  • 874 Views
  • 1 replies
  • 0 Likes
Like what you see?

Show your appreciation!

Click Like if a post is helpful to you or if you just want to show your support.

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!