Discuss mount points earlier.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Mon, 04 Jan 2021 11:06:51 +0200
changeset 2498 8c90e7713884
parent 2497 8407a34a1b5d
child 2499 54c46fdf99a6
Discuss mount points earlier.
cygwin.rst
--- a/cygwin.rst	Mon Jan 04 10:48:34 2021 +0200
+++ b/cygwin.rst	Mon Jan 04 11:06:51 2021 +0200
@@ -96,6 +96,24 @@
 Altering ``LANG`` for anything other then ``C`` cause only problems, when you get help and error
 messages in non-English. It is mostlry impossible to search for keywords, when text are translated.
 
+Mount points
+============
+
+In Cygwin the 3rd parameter (FS type) has special meaning:
+
+* ``cygdrive`` defines prefix to Windows disk letters like ``c:``.
+* ``usertemp`` defines location of temp directory.
+
+``/etc/fstab``::
+
+  none    /cygdrive none binary,posix=0,user,noacl 0 0
+  c:/opt/   /opt    none binary,noacl,user,posix=0 0 0
+  d:/backup /backup none binary,noacl,user,posix=0 0 0
+  /var     /usr/var none bind
+
+https://cygwin.com/cygwin-ug-net/using.html#mount-table
+  The Cygwin Mount Table. Description of supported keys.
+
 Users
 =====
 
@@ -327,24 +345,6 @@
 https://chromium.googlesource.com/chromium/src/+/master/docs/cygwin_dll_remapping_failure.md
   Handling repeated failures of rebaseall to allow cygwin remaps.
 
-Adding mount points
-===================
-
-In Cygwin the 3rd parameter (FS type) has special meaning:
-
-* ``cygdrive`` defines prefix to Windows disk letters like ``c:``.
-* ``usertemp`` defines location of temp directory.
-
-``/etc/fstab``::
-
-  none /cygdrive    none binary,posix=0,user,noacl 0 0
-  c:/opt/   /opt    none binary,noacl,user,posix=0 0 0
-  d:/backup /backup none binary,noacl,user,posix=0 0 0
-  /var     /usr/var none bind
-
-https://cygwin.com/cygwin-ug-net/using.html#mount-table
-  The Cygwin Mount Table. Description of supported keys.
-
 Running X Window.
 =================
 ::