Montar windows share de dominio AD en linux

El Blog de Dragonfly
Resolution
  • Windows share can be mounted on RHEL system using 
    cifs
     option of 
    mount
     command as :
<code>[root@host ~]# mount -t cifs -o username=<share user>,password=<share password> //WIN_PC_IP/<share name> /mnt </code>
  • In case your user is in windows domain then you can define the domain as follows:
<code>[root@host ~]# mount -t cifs -o username=<share user>,password=<share password>,domain=example.com //WIN_PC_IP/<share name> /mnt </code>
  • By default windows share mounted with the full...

Leer más