Ubuntu Linux 8.04自动挂载磁盘方法介绍
2008-05-06 11:06:23 来源:WEB开发网在Ubuntu8.04中默认开机是不会自动挂载磁盘的,例如我的机器,有个80G硬盘,使用了10G安装ubuntu,剩余部分作为挂载磁盘,一般做备份东西,下载文件的集散地。
经过对/etc/fstab部分的再次学习,终于可以让系统开机时自动挂载磁盘了。
具体方法:
查询磁盘uuid
ls -al /dev/disk/by-uuid
总用量
0drwxr-xr-x 2 root root 120 2008-05-03 08:02 .
drwxr-xr-x 5 root root 100 2008-05-03 08:02 ..
rwxrwxrwx 1 root root 10 2008-05-03 08:02 084C-084D -> ../../sda4
lrwxrwxrwx 1 root root 10 2008-05-03 08:02 93b32f8a-9284-455c-9e68-319d38f7970f -> ../../sda3
lrwxrwxrwx 1 root root 10 2008-05-03 08:02 ea5e6210-b4c9-45e5-b6c4-f904156d3954 -> ../../sda1
lrwxrwxrwx 1 root root 10 2008-05-03 08:02 ffe6dd79-73c0-4d9f-8b8c-7ec1036ee270 -> ../../sda2
挂载基本原理:
使用mount挂载/dev下的某设备到/media下
类似于ln -s命令
例如,我/dev下的磁盘有4块,分别是
sda1 swap
sda2 /home
sda3 /
sda4 fat32
那么我就需要
mount /dev/sda4 /media/disk
这样就挂载上了
但是如果要把这个命令写到/etc/fstab里,让系统自己识别并挂载呢?
可以加入一行
/dev/sda4 /media/disk vfat user,auto,umask=002,gid=1000,utf8 0 0
其中,vfat是指fat32格式 ,utf8是编码格式,umask是指定访问权限,gid是我的用户id 。
使用uuid格式写成
UUID=084C-084D /media/disk vfat user,auto,umask=002,gid=1000,utf8 0 0
如果是ntfs格式挂载的磁盘应该写成(参考)
UUID=084C-084D /media/disk ntfs user,nls=utf8,umask=0222,gid=1000,auto 0 0
- ››linux下两台服务器文件实时同步方案设计和实现
- ››Linux文件描述符中的close on exec标志位
- ››Linux下管道使用的一些限制
- ››ubuntu下hadoop全分布安装
- ››Linux 误删/usr/bin 解决方法
- ››linux 添加新用户并赋予sudo执行权限
- ››linux常用软件安装方法
- ››ubuntu 12.04 LTS 中创建FTP服务器
- ››Linux的分区已经被你从Windows中删除,系统启动后...
- ››Ubuntu12.04使用root用户登录
- ››linux enable命令大全
- ››Linux实现基于Loopback的NVI(NAT Virtual Interfa...
更多精彩
赞助商链接