Differences

This shows you the differences between two versions of the page.

Link to this comparison view

vps:dev-root-missing [2013-05-20 18:03:49]
shaun.reitan created
vps:dev-root-missing [2014-05-06 21:33:41] (current)
shaun.reitan
Line 1: Line 1:
 ====== /dev/root is missing on my VPS ====== ====== /dev/root is missing on my VPS ======
  
-Chances are your missing the udev rules needed to create the /dev/root symlink.  Create /etc/udev/rules.d/99-dev-root.rules and add the following into it.+Chances are your missing the udev rules needed to create the /dev/root symlink.  Create /etc/udev/rules.d/99-dev-root.rules and add the following into it.  Once that's done your server will create the /dev/root symlink on boot.
  
 <code console> <code console>
Line 7: Line 7:
 </code> </code>
  
-This should correct this problem+If you do not want to reboot after doing the above you can also do the following which will create the symlink by hand.  You still must do the above or the symlink will disappear on reboots 
 + 
 +<code console> 
 +ln -s /dev/xvda /dev/root 
 +</code>