Не удается смонтировать exFAT, даже если установлен предохранитель exfat -, утилиты exfat -в kali linux

Согласноman bash:

Parameter Expansion
The `$' character introduces parameter expansion, command substitution, or arithmetic expansion. The parameter name or symbol to be expanded may be enclosed in braces, which are optional but serve to protect the variable to be expanded from characters immediately following it which could be interpreted as part of the name.

${parameter#word}
${parameter##word}
Remove matching prefix pattern.
The word is expanded to produce a pattern just as in pathname expansion. If the pattern matches the beginning of the value of parameter, then the result of the expansion is the expanded value of parameter with the shortest matching pattern (the ``#'' case) or the longest matching pattern (the ``##'' case) deleted. If parameter is @ or *, the pattern removal operation is applied to each positional parameter in turn, and the expansion is the resultant list. If parameter is an array variable subscripted with @ or *, the pattern removal operation is applied to each member of the array in turn, and the expansion is the resultant list.

3
05.09.2020, 06:46
1 ответ

У меня та же проблема с работающей версией Kali, установлены утилиты exfat -и предохранитель exfat -. Я тоже пытался перезагрузиться. Не удалось смонтировать ни в дельфине, ни в CLI.

С форумов OpenSUSE:https://forums.opensuse.org/showthread.php/513961-exfat-installed-but-quot-unknown-filesystem-quot-at-mount-time

попробовал это:

mount -t fuse -o subtype=exfat /dev/sdb1 /mnt/   

и получил

permission denied

Наконец-то я обнаружил, что команда "mount" не знает, как монтировать exfat, даже если он установлен. Но exfat -utils приносит:

mount.exfat-fuse /dev/sdb1 /media/exfat

а потом это сработало как волшебство! Надеюсь, поможет !

4
18.03.2021, 23:07

Теги

Похожие вопросы