Other Help Topics :: /dev/zero and null



Hi!
How can I make /dev/zero and /dev/null to be rw for
users, groups and others NOT after the boot with user interaction but during the boot. I am trying to remaster,
making zero and null with rw permission on hd disk doesn't work.
Thx.
D.

Log as root or $sudo su
Code Sample
# chmod 777 /dev/null (that will be rwxrwxrwx)
# chmod 666 /dev/null (that will be rw-rw-rw-)


original here.