5 lines
152 B
Bash
5 lines
152 B
Bash
#!/bin/sh
|
|
# start klogd
|
|
# -c 3 = display level 'error' or higher messages on console
|
|
# -x = turn off broken EIP translation
|
|
exec klogd -n -c 3 -x 2>&1
|