cicpoffs/README.md

29 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2020-05-19 02:13:51 +00:00
# Case-Insensitive Case-Preserving Overlay FUSE File System
2023-11-03 22:56:54 +00:00
2020-05-19 02:13:51 +00:00
#### cicpoffs
This is a case-insensitive overlay FUSE file system, like [CIOPFS](https://www.brain-dump.org/projects/ciopfs/).
The difference is that:
2023-11-03 22:56:54 +00:00
2020-05-19 02:13:51 +00:00
- This one preserves the original case.
- This one doesnt have the limitation that “All filenames in the data directory which arent all lower case are ignored.”
- This one has been very poorly ported to work with modern (3.0+) versions of FUSE.
2020-05-19 02:13:51 +00:00
2023-11-03 22:56:54 +00:00
## Motivations
2020-05-19 02:13:51 +00:00
2023-11-03 22:56:54 +00:00
- Run Stardew Valley (linux) with some mods (that are cross-platform in theory, but relies on Windows' case-insensitive file system).
- Run TESV:Skyrim (linux) with some mods (that are cross-platform in theory, but may have issues deriving from Windows' case-insensitive file system and there's no enforceable convention in modding).
2020-05-19 02:13:51 +00:00
2023-11-04 01:46:31 +00:00
## Pre-built packages
Check the [releases](https://github.com/adlerosn/cicpoffs/releases/latest) tab.
## Preserve inode number
Add `-o use_ino` argument to the commandline otherwise each case combination that points to the same file will get different inodes.
2020-05-19 02:13:51 +00:00
## License
2023-11-03 22:56:54 +00:00
GPLv2