From 31edde560afa7759709d377119ea228943bef863 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 15 May 2024 11:55:11 +0200 Subject: [PATCH] fix #5465: restore daemon: mount ntfs with utf8 charset since the change in our restore image to ntfs3, non iso8859-1 filenames were broken. Fix that by adding the 'iocharset' option to ntfs3. Leave the ntfs option in place, so that if the image gets booted with an older kernel for some reason, this still works. Signed-off-by: Dominik Csapak --- proxmox-restore-daemon/src/proxmox_restore_daemon/disk.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/proxmox-restore-daemon/src/proxmox_restore_daemon/disk.rs b/proxmox-restore-daemon/src/proxmox_restore_daemon/disk.rs index bde459dd..db96ced0 100644 --- a/proxmox-restore-daemon/src/proxmox_restore_daemon/disk.rs +++ b/proxmox-restore-daemon/src/proxmox_restore_daemon/disk.rs @@ -37,6 +37,7 @@ lazy_static! { m.insert("ufs", "ufstype=ufs2"); m.insert("ntfs", "utf8"); + m.insert("ntfs3", "iocharset=utf8"); m };