hardlink / symlink com unidades mapeadas no Server 2003

0

Estou tentando criar um link físico em um sistema Windows Server 2003 usando fsutil hardlink create M:\docs L:\docs , mas estou recebendo uma mensagem dizendo "O utilitário FSUTIL requer um volume NTFS local. Imagino que isso ocorra porque minhas unidades de origem e de destino estão mapeadas unidades de rede.

Existe alguma maneira de contornar isso?

    
por Reece 29.01.2018 / 01:22

1 resposta

0

Infelizmente, os hardlinks só funcionam em um único sistema de arquivos. Fazer hardlinks entre sistemas de arquivos separados (local ou remoto) não é suportado.

Esta informação da Microsoft explica bem o que pode e o que não pode ser feito com links físicos:

For example, in a system where C: and D: are local drives and Z: is a network drive mapped to \fred\share, the following references are permitted as a hard link:

C:\dira\ethel.txt linked to C:\dirb\dirc\lucy.txt

D:\dir1\tinker.txt to D:\dir2\dirx\bell.txt

C:\diry\bob.bak linked to C:\dir2\mina.txt

     

Os seguintes não são:

     

C:\dira linked to C:\dirb

C:\dira\ethel.txt linked to D:\dirb\lucy.txt

C:\dira\ethel.txt linked to Z:\dirb\lucy.txt

Fonte: link

    
por 29.01.2018 / 05:00