It's a type of Planche
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. [Unit]
  2. Description=Mount a Filesystem Mount Point
  3. [Mount]
  4. # Takes an absolute path of a device node,
  5. # file or other resource to mount. See mount(8)
  6. # for details. If this refers to a device node,
  7. # a dependency on the respective device unit
  8. # is automatically created. (See
  9. # systemd.device(5) for more information.)
  10. # This option is mandatory. Note that the usual
  11. # specifier expansion is applied to this setting,
  12. # literal percent characters should hence be
  13. # written as "%%".
  14. What=/dev/sdx
  15. # Takes an absolute path of a directory for the
  16. # mount point; in particular, the destination
  17. # cannot be a symbolic link. If the mount point
  18. # does not exist at the time of mounting, it is
  19. # created. This string must be reflected in the
  20. # unit filename.
  21. Where=/mount
  22. # Takes a string for the file system type.
  23. # Type=btrfs
  24. # Mount options to use when mounting. This takes
  25. # a comma-separated list of options. This setting
  26. # is optional. Note that the usual specifier
  27. # expansion is applied to this setting, literal
  28. # percent characters should hence be written as "%%".
  29. #Options=
  30. # If true, parsing of the options specified in
  31. # Options= is relaxed, and unknown mount
  32. # options are tolerated.
  33. #SloppyOptions=false
  34. # If true, detach the filesystem from the
  35. # filesystem hierarchy at time of the unmount
  36. # operation, and clean up all references to the
  37. # filesystem as soon as they are not busy anymore.
  38. # This corresponds with umount(8)'s -l switch.
  39. #LazyUnmount=false
  40. # If true, force an unmount (in case of an
  41. # unreachable NFS system). This corresponds with
  42. # umount(8)'s -f switch.
  43. #ForceUnmount=false
  44. # Directories of mount points (and any parent
  45. # directories) are automatically created if needed.
  46. # This option specifies the file system access mode
  47. # used when creating these directories. Takes an
  48. # access mode in octal notation.
  49. #DirectoryMode=0755
  50. # Configures the time to wait for the mount command
  51. # to finish. If a command does not exit within the
  52. # configured time, the mount will be considered failed
  53. # and be shut down again. All commands still running
  54. # will be terminated forcibly via SIGTERM, and after
  55. # another delay of this time with SIGKILL. (See
  56. # KillMode= in systemd.kill(5).) Takes a unit-less
  57. # value in seconds, or a time span value such as
  58. # "5min 20s". Pass 0 to disable the timeout logic.
  59. #TimeoutSec=20s
  60. [Install]
  61. WantedBy=multi-user.target