How to Create /dev/null in Linux

deviceslinux

I deleted my /dev/null. How can I restore it?

Best Answer

mknod /dev/null c 1 3
chmod 666 /dev/null

Use these command to create /dev/null or use null(4) manpage for further help.

Related Question