Tiny Core Linux
Tiny Core Extensions => TCE Q&A Forum => Topic started by: xor on January 07, 2022, 10:42:13 AM
-
Does this kernel have the ability to write in ntfs format!?
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/fs/ntfs?h=v5.15.13
-
HI xor
According to the kernel config file, yes it can:
CONFIG_NTFS3_FS=m
found here:
http://tinycorelinux.net/13.x/x86/release/src/kernel/config-5.15.10-tinycore
If specifying the filesystem type, you must use ntfs3 , not ntfs. For example:
mount -t ntfs3 /dev/sdxY /mnt/sdxY
-
Does the kernel need to be recompiled for this?
or can this result be achieved with an application to be added from the repository!?
HI xor
According to the kernel config file, yes it can:
CONFIG_NTFS3_FS=m
found here:
http://tinycorelinux.net/13.x/x86/release/src/kernel/config-5.15.10-tinycore
If specifying the filesystem type, you must use ntfs3 , not ntfs. For example:
mount -t ntfs3 /dev/sdxY /mnt/sdxY
-
HI xor
Make sure the driver is loaded:
sudo modprobe ntfs3
You should then be able to mount and work with NTFS file systems.
-
As far as I understand, ntfs is still not included in the kernel, so it is not like the kernel that sees FAT32,
now the question is
I'm asking for TCL11 then
http://tinycorelinux.net/11.x/x86_64/tcz/ntfs-3g.tcz
after downloading this plugin as "tce-load -wi ntfs-3g"
what is the exact command to mount the drive that is ntfs with which command!?
-
HI xor
This thread is about TC13.
NTFS is supported in the TC13 kernel.
This thread is not the place tor TC11 questions.
If you have a question about a TC11 extension, start a separate thread.
-
HI xor
To mount devices using the ntfs-3g.tcz extension:
ntfs-3g /dev/sdxY /mnt/sdxY
If the directory in /mnt does not exist, create it.
If you get permission denied type of errors, try using sudo.
In the future, please do not hijack threads.
-
Thx