自动安装位于 Ubuntu 上的驱动器并自动为 Window 共享该驱动器

自动安装位于 Ubuntu 上的驱动器并自动为 Window 共享该驱动器

我尝试寻找解决方案很多天了,但还是没找到。所有帖子都是关于自动挂载来自 Windows 的共享文件夹。但我的情况是备份驱动器位于 Ubuntu 12.04 桌面上,我想在启动时挂载我的驱动器 (/dev/sda3),然后自动共享该驱动器以供 Windows 用户访问。你能帮帮我吗!

答案1

我把它分为两个部分:

1). Mount the drive at boot time:
    * sudo vi /etc/fstab
    * then add this line:  /dev/sda3    /media/lnxBackUp  ext4  users,user      0  0
      In my case, sda3 is the drive that I would like to mount and ext4 is the partition of sda3.

2). Install samba server:
    * sudo apt-get install samba
    * sudo vi /etc/samba/smb.conf
      then edit its config file by adding these information at the end of the page:
    [lnxBackUp]
          writable = yes
          path = /media/lnxBackUp
          guest ok = yes
          create mask = 0777
          comment = Backup drive
          directory mask = 0777
    * Create a folder in /media
    * sudo mkdir /medir/lnxBackUp
    * sudo mount -a

现在,您可以从 Windows 访问共享的驱动器(lnxBackUp)。

干杯

相关内容