MichaIng
MichaIng
It has not been enabled in Debian kernel yet: ```console # modinfo ntfs3 modinfo: ERROR: Module ntfs3 not found. ``` Also see above linked discussion in Debian bug report. Dedicated...
It has still not been enabled for Debian kernel builds yet, but people keep asking: https://bugs.debian.org/998627 But the RPi kernel has it: ```console root@micha:~# modinfo ntfs3 filename: /lib/modules/6.1.21-v7+/kernel/fs/ntfs3/ntfs3.ko.xz alias: fs-ntfs3...
Coincidentally I just found the `ntfs3` Linux driver for native NTFS support pretty functional as well: ```sh modinfo ntfs3 modprobe ntfs3 mount -t ntfs3 /dev/sda1 /mnt/test ``` The module must...
Might be fine, but just to widen the view: Remember GitHub is not the only/main target for this README, but it is included in Dropbear sources downloads from the official...
> There is no such thing as "standard" markdown I meant this as of OP sentence: > The current README file is not formatted for GitHub. GitHub might be not...
> The idea to "separate" one big file to two smaller halves without intersection means that the overall maintenance burden should be the same. Ah, but since GitHub only shows...
But those hyperlinked documents (unless images and such) cannot be expanded, is it? I know there are Markdown extensions which allow loading of external files, but I'm not aware of...
Not sure if it makes sense to bundle those, since Dropbear and the OpenSSH SFTP server are two entirely dedicated standalone projects which can be plug&play combined trivially by end...
As said, it works here OOTB with any SFTP server binary located at `/usr/lib/sftp-server` or `/usr/lib/openssh/sftp-server`, or anywhere else if the SFTP client allows to define the path. Assure that...
Dropbear does not include an SFTP server or the `scp` command-line utility, so this would always need to be installed separately. Did you install/setup either an SFTP server or `scp`?...