If every time you login to your VPS linux account you get the following error:
-bash: /dev/null: Permission denied
This can be fixed by recreating /dev/null . Follow these steps:
- rm /dev/null
- mknod -m 0666 /dev/null c 1 3
Both steps need to be executed using user root.