September 7, 20205 yr I can create a symlink to a file, but when I attempt to create a hard link, I get `Function not implemented`. What do I need to install to be able to create a hard link? root@NAS:/mnt/user/Data/linktest# ls -la total 0 drwxrwxrwx 1 root root 0 Sep 7 11:00 ./ drwxrwxrwx 1 nobody users 32 Sep 7 11:00 ../ root@NAS:/mnt/user/Data/linktest# touch ActuaFile.txt root@NAS:/mnt/user/Data/linktest# ls -la total 0 drwxrwxrwx 1 root root 26 Sep 7 11:00 ./ drwxrwxrwx 1 nobody users 32 Sep 7 11:00 ../ -rw-rw-rw- 1 root root 0 Sep 7 11:00 ActuaFile.txt root@NAS:/mnt/user/Data/linktest# ln ActuaFile.txt HardLink.txt ln: failed to create hard link 'HardLink.txt' => 'ActuaFile.txt': Function not implemented root@NAS:/mnt/user/Data/linktest# ln -s ActuaFile.txt SoftLink.txt root@NAS:/mnt/user/Data/linktest# ls -la total 4 drwxrwxrwx 1 root root 50 Sep 7 11:03 ./ drwxrwxrwx 1 nobody users 32 Sep 7 11:00 ../ -rw-rw-rw- 1 root root 0 Sep 7 11:00 ActuaFile.txt lrwxrwxrwx 1 root root 13 Sep 7 11:03 SoftLink.txt -> ActuaFile.txt root@NAS:/mnt/user/Data/linktest# Edited September 7, 20205 yr by FreeMan
September 7, 20205 yr What is your Settings -> Global Share Settings -> Tunable (support hard links) set to? Edited September 7, 20205 yr by remotevisitor
September 7, 20205 yr Author 8 minutes ago, remotevisitor said: Tunable (support hard links) set to? It was set to "No". After stopping the array, changing it to "Yes" and starting the array, creating a hard link works like a charm. Thanks! I would have never thought to look there.
Archived
This topic is now archived and is closed to further replies.