Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I check what filesystem my SVN repository is using?

I've already created my repository and have been using it for a while. I wanted to check what filesystem data store it is using: Berkeley DB or FSFS. I'm not sure how to check this. I've looked at svnadmin, svnlook, etc. Any hints on how to do this?

like image 714
Avery Avatar asked Feb 27 '23 21:02

Avery


1 Answers

Check the db/fs-type file in your repository:

$ cat db/fs-type
fsfs
like image 162
ZoogieZork Avatar answered Mar 16 '23 02:03

ZoogieZork