class Sys::Filesystem::Mount
Mount
objects are returned by the Sys::Filesystem.mounts
method.
Attributes
The mount point/directory.
The dump frequency in days. May be nil.
The dump frequency in days. May be nil.
Always nil on MS Windows. Provided for interface compatibility only.
The name of the mounted resource.
The mount point/directory.
The time the filesystem was mounted. May be nil.
The type of filesystem mount, e.g. ufs, nfs, etc.
The name of the mounted resource.
A list of comma separated options for the mount, e.g. nosuid, etc.
A list of comma separated options for the mount, e.g. nosuid, etc.
The pass number of the filessytem check. May be nil.
The pass number of the filessytem check. May be nil.
Public Class Methods
Source
# File lib/sys/unix/sys/filesystem.rb, line 189 def initialize @name = nil @mount_point = nil @mount_type = nil @options = nil @mount_time = nil @dump_frequency = nil @pass_number = nil end
Creates a Sys::Filesystem::Mount
object. This is meant for internal use only. Do no instantiate directly.