如何配置/etc/fstab或autofs让系统去自动挂载Samba共

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何配置/etc/fstab或autofs让系统去自动挂载Samba共相关的知识,希望对你有一定的参考价值。

参考技术A   如何配置/etc/fstab或autofs让系统去自动挂载Samba共享?

  解决方法:为了使机器在启动的时候自动挂载Samba共享,修改/etc/fstab添加一行:

  //server/share /mount/point smbfs username=[username],password=[password] 0 0
  server是Samba服务器的名称或者IP地址。 share是Samba的共享目录。 /mount/point是本机挂载的目录。 username和passow是访问Samba服务器的用户名和密码。

  编辑文件/etc/fstab:

  LABEL=/ / ext3 defaults 1 1
  LABEL=/boot /boot ext3 defaults 1 2
  none /dev/pts devpts gid=5,mode=620 0 0
  none /proc proc defaults 0 0
  none /dev/shm tmpfs defaults 0 0
  /dev/hda3 swap swap defaults 0 0
  /dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0
  /dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0
  //server/share /mount/point smbfs username=[username],password=[password] 0 0
  用您的有效用户名和密码替换[username] and [password].

  如果您想通过autofs服务来自动挂载Samba共享,可参考下面的信息.

  编辑文件/etc/auto.master

  # $Id: 3420.php,v 1.3 2006/10/24 07:50:27 hli Exp $
  # Sample auto.master file
  # Format of this file:
  # mountpoint map options
  # For details of the format look at autofs(8).
  /misc /etc/auto.misc --timeout=60

  编辑文件/etc/auto.misc

  
  # $Id: 3420.php,v 1.3 2006/10/24 07:50:27 hli Exp $
  # This is an automounter map and it has the following format
  # key [ -mount-options-separated-by-comma ] location
  # Details may be found in the autofs(5) manpage
  
  cd -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom
  
  samba -fstype=smbfs,username=[username],password=[password] ://server/share
  
  # the following entries are samples to pique your imagination
  #linux -ro,soft,intr ftp.example.org:/pub/linux
  #boot -fstype=ext2 :/dev/hda1
  #floppy -fstype=auto :/dev/fd0
  #floppy -fstype=ext2 :/dev/fd0
  #e2floppy -fstype=ext2 :/dev/fd0
  #jaz -fstype=ext2 :/dev/sdc1
  #removable -fstype=ext2 :/dev/hdd
  编辑完成以后,需要重新启动autofs服务才可以生效,运行命令service autofs restart 或 /etc/init.d/autofs restart.

  浏览/misc/samba目录可以看见您的Samba共享目录.
  

fstab

用途

开机自动挂载

配置文件

/etc/fstab

如何配置

文件路径  挂载点  文件系统  挂载选项  是否能被dump调用  开机是否检查

/dev/sda  /mnt/  ext4    defaults   0          0

nfs呢?

文件系统: nfs

以上是关于如何配置/etc/fstab或autofs让系统去自动挂载Samba共的主要内容,如果未能解决你的问题,请参考以下文章

刚刚在rhel7中配置/etc/fstab这个文件的时候,不知道按到哪里了,然后导致无法开机了

linux 多路径软件在/dev/mapper/下生成的硬盘 可以通过修改/etc/fstab 挂载么 ?

不小心修改了/etc/fstab文件,无法启动如何处理

Linux初学者求助,更改/etc/fstab后仍无法自动挂载

Linux中在/etc/fstab文件中,noauto参数的作用是?

请教如何修改Linux的/etc/fstab使U盘自己挂载?