Changeset 084c251
- Timestamp:
- 11/17/2021 03:39:45 AM (3 years ago)
- Branches:
- 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 6fa16a5
- Parents:
- 7fa5ff6
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
r7fa5ff6 r084c251 46 46 <itemizedlist> 47 47 <listitem> 48 <para>[xry111] - Add back ntfs-3g because the utilities in it 49 is still useful. Mention the new in-kernel NTFS implementation 50 in the page.</para> 51 </listitem> 52 <listitem> 48 53 <para>[bdubbs] - Update to git-2.34.0. Fixes 49 54 <ulink url="&blfs-ticket-root;15754">#15754</ulink>.</para> -
postlfs/filesystems/filesystems.xml
r7fa5ff6 r084c251 30 30 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="aboutraid.xml"/> 31 31 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mdadm.xml"/> 32 <!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ntfs-3g.xml"/> -->32 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ntfs-3g.xml"/> 33 33 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gptfdisk.xml"/> 34 34 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="parted.xml"/> -
postlfs/filesystems/ntfs-3g.xml
r7fa5ff6 r084c251 29 29 <sect2 role="package"> 30 30 <title>Introduction to Ntfs-3g</title> 31 32 <note> 33 <para id='ntfs3-kernel'> 34 A new read-write support for NTFS, called NTFS3, has been added 35 into Linux kernel since the 5.14 release. The performance of NTFS3 36 is much better than ntfs-3g. To enable NTFS3, enable the following 37 options in the kernel configuration and recompile the kernel if 38 necessary: 39 </para> 40 41 <screen><literal>File systems ---> 42 <*/M> NTFS Read-Write file system support [CONFIG_NTFS3_FS]</literal></screen> 43 44 <indexterm zone="ntfs-3g ntfs3-kernel"> 45 <primary sortas="d-ntfs3">NTFS read-write support in kernel</primary> 46 </indexterm> 47 48 <para> 49 To ensure the <command>mount</command> command to use NTFS3 for 50 ntfs partitions, create a wrapper script: 51 </para> 52 53 <screen role="nodump"><userinput>cat >> /usr/sbin/mount.ntfs <<"EOF" && 54 <literal>#!/bin/sh 55 exec mount -t ntfs3 "$@"</literal> 56 EOF 57 chmod -v 755 /usr/sbin/mount.ntfs</userinput></screen> 58 59 <para> 60 With the kernel support available, ntfs-3g is only needed if you 61 need the utilities from it (for example, to create NTFS 62 filesystems). 63 </para> 64 </note> 31 65 32 66 <para> … … 136 170 </para> 137 171 138 <screen role="root"><userinput>make install && 139 ln -sv ../bin/ntfs-3g /usr/sbin/mount.ntfs && 172 <screen role="root"><userinput>make install &&</userinput></screen> 173 174 <para> 175 It's recommended to use the in-kernel NTFS3 driver for mounting 176 NTFS filesystems, instead of ntfs-3g (see the note at the start of 177 this page). However, if you want to use ntfs-3g to mount the NTFS 178 filesystems anyway, create a symlink for <command>mount</command> 179 command: 180 </para> 181 182 <screen role="nodump"><userinput>ln -sv ../bin/ntfs-3g /usr/sbin/mount.ntfs && 140 183 ln -sv ntfs-3g.8 /usr/share/man/man8/mount.ntfs.8</userinput></screen> 141 142 <para>143 If you want ordinary users to be able to mount NTFS partitions you'll need144 to set mount.ntfs with the root user ID. Note: it is probably unsafe to do145 this on a computer that needs to be secure (like a server). As the146 <systemitem class="username">root</systemitem> user:147 </para>148 149 <screen role="root"><userinput>chmod -v 4755 /usr/bin/ntfs-3g</userinput></screen>150 184 151 185 </sect2> … … 174 208 <option>--disable-ntfsprogs</option>: Disables installation of various 175 209 utilities used to manipulate NTFS partitions. 176 </para>177 178 <para>179 <command>ln -sv ../bin/ntfs-3g /usr/sbin/mount.ntfs</command>: Creating180 /sbin/mount.ntfs makes <command>mount</command> default to using Ntfs-3g181 to mount NTFS partitions.182 210 </para> 183 211
Note:
See TracChangeset
for help on using the changeset viewer.