May 15, 20242 yr Something strange in zfs dataset I just cannot create a file with this filename. But this can be done by deleting one character. Although it is less than the max allowed filename length. Case 1: touch '申胜勋 - 미소속에 비친 그대 + 나보다 조금 더 높은 곳에 니가 있을 뿐 + 보이지 않는 사랑 + 그12' output: touch: cannot touch '申胜勋 - 미소속에 비친 그대 + 나보다 조금 더 높은 곳에 니가 있을 뿐 + 보이지 않는 사랑 + 그12': Operation not supported Case 2: touch '申胜勋 - 미소속에 비친 그대 + 나보다 조금 더 높은 곳에 니가 있을 뿐 + 보이지 않는 사랑 + 그1' success! echo '申胜勋 - 미소속에 비친 그대 + 나보다 조금 더 높은 곳에 니가 있을 뿐 + 보이지 않는 사랑 + 그12' | wc -c output: 128 Case 3: touch '0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345' output: touch: cannot touch '0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345': File name too long word count: echo '0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345' | wc -c output: 257 Different error message: "Operation not supported" vs "File name too long" Different filename length: 127(max) vs 256(max) Edited May 15, 20242 yr by neoherozzz
May 15, 20242 yr Community Expert Solution v6.13 already contains a fix for that, but note that it will require re-formatting the filesystem.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.