知行迭代
导航
首页
最近更改
随机页面
常用
分类目录
Linux命令
Mediawiki常用
电脑技巧
工具
链入页面
相关更改
特殊页面
页面信息
登录
查看“Mount”的源代码
←
Mount
页面
讨论
阅读
查看源代码
查看历史
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:[
[1]
]
您可以查看和复制此页面的源代码。
mount是一个UNIX/[[Linux]]系统上的命令,用于挂载[[文件系统]]。Linux系统中所有可访问文件都根目录(<code>/</code>)及其子孙目录,但这些文件可以位于不同的设备上。 ==简介== ===时间轴=== ==用法== ==参数== ==永久挂载== 永久挂载是在系统重启后不会失效。安装系统时进行的分区挂载是永久挂载,如把第一块磁盘的第二个分区(<code>/dev/sda2</code>)永久挂载到<code>/home</code>目录,则<code>/home</code>目录下所有文件都位于该分区。可以使用命令<code>cat /etc/fstab</code>查看该配置文件。 要设置永久挂载,编辑配置文件<code>/etc/fstab</code>即可。文件中的每行都定义文件系统的挂载点,分6个字段,使用空格分开。 如下为一个<code>/etc/fstab</code>文件。 <syntaxhighlight lang="bash"> </syntaxhighlight> {| class="wikitable" style="width: 100%; ! 序号 ! 名称 ! 描述 ! 示例 |- | 1 | 块设备<br \>file system | UUID或/dev/路径。<br \><br \>UUID是存储设备在系统中唯一标识字符串,建议使用这种方式,不会因为加载顺序而改变。查看所有硬盘的uuid:<code>ls -l /dev/disk/by-uuid</code> <br \> <br \>/dev/路径 | <code>UUID=e9320e9c-1b60-4082-b341-bca05d00d4df</code> <br \><br \><code>/dev/sdc2</code> |- | 2 | 挂载点<br \>mount point | | |- | 3 | 文件系统类型<br \>type | Linux支持多种文件系统:ext4, xfs, btrfs, f2fs, vfat, ntfs, hfsplus, tmpfs, sysfs, proc, iso9660, udf, squashfs, nfs, cifs等。 | <code>ext4</code><br \><code>ntfs</code> |- | 4 | 选项<br \>options | | |- | 5 | dump | | |- | 6 | pass | | |} {{了解更多 |[https://man7.org/linux/man-pages/man5/fstab.5.html man7.org:fstab(5)] |[https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/8/html/managing_file_systems/assembly_persistently-mounting-file-systems_managing-file-systems Red Hat 文档:Red Hat Enterprise Linux 8 - 第 16 章 永久挂载文件系统] }} ==资源== ===官网=== ===相关网站=== *[https://man7.org/linux/man-pages/man8/mount.8.html man7.org:mount(8) ] *[https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/8/html/managing_file_systems/assembly_mounting-file-systems_managing-file-systems Red Hat 文档:Red Hat Enterprise Linux 8 - 第 14 章 挂载文件系统] ===相关文章=== *[https://zh.wikipedia.org/wiki/Mount_(Unix) 维基百科:mount (Unix)] [[分类:命令行程序]]
本页使用的模板:
模板:了解更多
(
查看源代码
)
返回至“
Mount
”。