例如,要开放对 的访问/sys/bus/usb/devices/1-1/
,需要执行以下操作:
chmod a+x /sys/bus/
chmod a+x /sys/bus/usb/
chmod a+x /sys/bus/usb/devices/
# files in "devices" are symlinks
chmod a+x /sys/devices
chmod a+x /sys/devices/pci0000:00/
chmod a+x /sys/devices/pci0000:00/0000:00:1a.0
chmod a+x /sys/devices/pci0000:00/0000:00:1a.0/usb1
chmod a+x /sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1
我怎样才能一步完成呢?我想做类似的事情
chgrp_alt usb -R /sys/bus/usb/devices/*
chmod_alt g+rX -R /sys/bus/usb/devices/*
相关(更简单)问题:设置文件夹及其所有父目录的读写权限