You are not logged in.
Pages: 1
Right, so I accidentally altered /dev/null using dd (mixed up if and of).
Is there any way of fixing it?
Offline
man 4 null
This says to create /dev/null do :
mknod -m 666 /dev/null c 1 3
chown root:root /dev/null
If you still have /dev/null but it's just messed up, you may have t delete it first ?
Offline
man 4 null
This says to create /dev/null do :
mknod -m 666 /dev/null c 1 3 chown root:root /dev/null
If you still have /dev/null but it's just messed up, you may have t delete it first ?
I did that and it worked great, thanks.
Offline
Pages: 1