OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
Documentation
/
aoe
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
autoload.sh
343 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
status.sh
694 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
udev-install.sh
852 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: autoload.sh
Close
#!/bin/sh # set aoe to autoload by installing the # aliases in /etc/modprobe.d/ f=/etc/modprobe.d/aoe.conf if test ! -r $f || test ! -w $f; then echo "cannot configure $f for module autoloading" 1>&2 exit 1 fi grep major-152 $f >/dev/null if [ $? = 1 ]; then echo alias block-major-152 aoe >> $f echo alias char-major-152 aoe >> $f fi