On Fri, 15 May 2020 at 18:41, Patrick O'Callaghan <pocallaghan@xxxxxxxxx> wrote:
On Fri, 2020-05-15 at 22:35 +0100, Patrick O'Callaghan wrote:
> > echo check > /sys/block/md127/md/sync_action
That's giving "permission denied" even with sudo, and with setenforce
set to 'off'.
This can happend if you run :
$ sudo echo check > /sys/block/md127/md/sync_action
which fails because redirection is done by the shell before the
sudo command runs. Use:
$ sudo bash -c "echo check > /sys/block/md127/md/sync_action"
--
George N. White III
_______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx