mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
9 lines
180 B
Bash
9 lines
180 B
Bash
#!/bin/sh
|
|
|
|
/sbin/modprobe kqemu
|
|
|
|
# Create the kqemu device. No special priviledge is needed to use kqemu.
|
|
device="/dev/kqemu"
|
|
rm -f $device
|
|
mknod $device c 250 0
|
|
chmod 666 $device
|