README 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. aoetools for Debian
  2. -------------------
  3. With aoetools it is shipped an init script that will mount any AoE volume
  4. properly configured in your /etc/fstab, that is, without option 'noauto'
  5. AND with an option '_netdev', if you want to avoid any error messages in
  6. the boot process. In the following examples I am supposing that the rest
  7. of the mount options are simply 'defaults', but you can replace it with
  8. other parameters.
  9. Example of a correct line:
  10. /dev/etherd/e0.0p5 /mnt/aoe xfs defaults,_netdev 2 0
  11. Wrong examples:
  12. This line will generate boot errors, as the early mount process will try to mount this
  13. volume, because it is not marked as network-dependant:
  14. /dev/etherd/e0.0p5 /mnt/aoe xfs defaults 2 0
  15. This line will provoke that the /mnt/aoe volume won't simply get mounted while booting
  16. or running "/etc/init.d/aoetools start":
  17. /dev/etherd/e0.0p5 /mnt/aoe xfs defaults,noauto 2 0
  18. Important note: Please note that if your network is not properly configured or your
  19. AoE server is down, you can incur in big delays in the booting process. If you fear so,
  20. mount volumes manually after you are sure that your AoE shelf is reachable.