Storage - a load-balanced storage manager
Project description
Storage Manager

Simple command line utility written in Python, to manage your storage distributed over multiple hard drives.
Requirements
- Python 3.8+
Installation, Uninstallation and Upgrade
- To install, run
pip3 install storage-manager
- To uninstall, run
pip3 uninstall storage-manager
- To upgrade, run
pip3 install --upgrade storage-manager
Examples
- Add an existing drive mounted at /mount/d to storage as drive-d
storage drive add drive-d /mount/d
- Configure storage to use
balanced
strategy (default israndom
)storage config set strategy balanced
- Insert a file
/home/username/downloads/movie-file.mp4
into the storage at pathmovies
This will copy the file into storage. It will not delete source file.storage insert movies /home/username/downloads/movie-file.mp4
- Check overall storage status
storage stats show-all
Help
Command line is relatively self-explanatory. If required, use --help
for help and --verbose
for verbose output.