Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FstabEntry

import type { FstabEntry } from "https://googleapis.deno.dev/v1/migrationcenter:v1.ts";

Single fstab entry.

interface FstabEntry {
file?: string;
freq?: number;
mntops?: string;
passno?: number;
spec?: string;
vfstype?: string;
}

§Properties

§
file?: string
[src]

The mount point for the filesystem.

§
freq?: number
[src]

Used by dump to determine which filesystems need to be dumped.

§
mntops?: string
[src]

Mount options associated with the filesystem.

§
passno?: number
[src]

Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.

§
spec?: string
[src]

The block special device or remote filesystem to be mounted.

§
vfstype?: string
[src]

The type of the filesystem.