nbd.txt 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. Network Block Device (TCP version)
  2. ==================================
  3. 1) Overview
  4. -----------
  5. What is it: With this compiled in the kernel (or as a module), Linux
  6. can use a remote server as one of its block devices. So every time
  7. the client computer wants to read, e.g., /dev/nb0, it sends a
  8. request over TCP to the server, which will reply with the data read.
  9. This can be used for stations with low disk space (or even diskless)
  10. to borrow disk space from another computer.
  11. Unlike NFS, it is possible to put any filesystem on it, etc.
  12. For more information, or to download the nbd-client and nbd-server
  13. tools, go to http://nbd.sf.net/.
  14. The nbd kernel module need only be installed on the client
  15. system, as the nbd-server is completely in userspace. In fact,
  16. the nbd-server has been successfully ported to other operating
  17. systems, including Windows.
  18. A) NBD parameters
  19. -----------------
  20. max_part
  21. Number of partitions per device (default: 0).
  22. nbds_max
  23. Number of block devices that should be initialized (default: 16).