Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sinanislekdemir/poorman-fs
FUSE File System implementation to PoorMan's Catalog Creator
https://github.com/sinanislekdemir/poorman-fs
Last synced: 26 days ago
JSON representation
FUSE File System implementation to PoorMan's Catalog Creator
- Host: GitHub
- URL: https://github.com/sinanislekdemir/poorman-fs
- Owner: sinanislekdemir
- License: gpl-3.0
- Created: 2023-04-20T06:07:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-20T14:09:57.000Z (over 1 year ago)
- Last Synced: 2023-08-14T14:11:25.709Z (about 1 year ago)
- Language: C++
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# poorman-fs
FUSE File System implementation to PoorMan's Catalog Creator[PoorMan](https://github.com/sinanislekdemir/poorman) is a DVD/CD/External Drive
indexing software. It can index your cold-storages so you can search what you need
in your cold storages without physically attaching them to your computer.And PoorManFS is a FUSE implementation to PoorMan database.
You can mount the index as a "virtual" drive and use your favorite search tool
or browse the files easily without really attaching to the disks.poormanfs works on the user-level. So no root access is needed;
[See it in action on youtube](https://www.youtube.com/watch?v=EUga7YicvKs)
## Install
### Install from the Debian Package
Deb package can be found here:
https://github.com/sinanislekdemir/poorman-fs/releases### Install from the source code
How to compile and run?This software depends on `libsqlite3-dev` and `libfuse-dev` so make sure you have them first!
```
git clone https://github.com/sinanislekdemir/poorman-fs.git
cd poorman-fs
make
sudo make install
poormanfs /path/to/mount
```for your convenience.
As an example:
```
mkdir /tmp/testdrive
poormanfs /tmp/testdrive
ls /tmp/testdrive
```