Windows on Btrfs
231–240 of 286 posts
Re: Windows on Btrfs
#232Re: Windows on Btrfs
#233Re: Windows on Btrfs
#234Re: Windows on Btrfs
#235Re: Windows on Btrfs
#236I'm intending to write up some docs and announce it in the next few days, but since this thread is here, I might as well mention it now: On the topic of alternative btrfs implementations, I've been working on https://git.lukeshu.com/btrfs-progs-ng/ which is written entirely in Go. Its `btrfs-rec inspect mount --pv=/dev/whatever` is a read-only FUSE implementation of btrfs that is more fault-tolerant (of corrupt files…
Re: Windows on Btrfs
#237Re: Windows on Btrfs
#238Re: Windows on Btrfs
#239Earlier quoted context omitted.
> On the topic of alternative btrfs implementations, I've been working on https://git.lukeshu.com/btrfs-progs-ng/ which is written entirely in Go. Is this actually a blessed "next-generation" implementation? If not, could you please rename it so it doesn't confuse people?
If it's better, it should just be named btrfs-progs so folks get confused into installing superior tools.
Plus, for the most part, it's not a replacement for what's in btrfs-progs, it's additional tools:
Replace:
- `btrfs-rec inspect dump-trees` is a clone of `btrfs inspect-internal dump-tree`, but it isn't meant to replace it, I only implemented it so that I could diff the output to validate that my implementation agrees with the btrfs-progs implementation.
- `btrfs-rec inspect mount` is conceptually a replacement for `btrfs restore`.
- `btrfs-rec inspect rebuild-mappings` is a replacement for `btrfs rescue chunk-recover`
Additional:
- I don't believe that `btrfs-rec inspect rebuild-trees` has an equivalent.
- `btrfs-rec inspect list-nodes`, `btrfs-rec inspect ls-files`, and `btrfs-rec inspect ls-trees` have no equivalent in btrfs-progs.
- (for completeness) `btrfs-rec inspect spew-items` has no equivalent, but it's for debugging btrfs-rec itself.
Missing:
- `btrfs-rec` doesn't try to do anything with mounted filesystems, such as `btrfs balance`, `btrfs filesystem`, `btrfs scrub`, `btrfs send`/`btrfs receive`, ...
- `btrfs-rec` doesn't try to do anything with filesystem initialization, such as `btrfstune` or `mkfs.btrfs`.
- `btrfs-rec` doesn't try to do things with recovering the superblock, I've found `btrfs rescue super-recover` and `btrfs-select-super` to be adequate.
- In general, I didn't try to re-implement commands that already work well.
Re: Windows on Btrfs
#240I'm intending to write up some docs and announce it in the next few days, but since this thread is here, I might as well mention it now: On the topic of alternative btrfs implementations, I've been working on https://git.lukeshu.com/btrfs-progs-ng/ which is written entirely in Go. Its `btrfs-rec inspect mount --pv=/dev/whatever` is a read-only FUSE implementation of btrfs that is more fault-tolerant (of corrupt files…
That is really neat have you considered contributing this to btrfs as a recovery option or putting out an ISO with this as a recovery tool?