Pudd.htm 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Pudd readme</title>
  5. <meta charset="utf-8">
  6. <link href="./manual.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body>
  9. <div id="container">
  10. <h1>Pudd: Puppy universal dd</h1>
  11. <p>
  12. This is the first version of Pudd, and it is expected many enhancements will follow.
  13. </p>
  14. <section>
  15. <h2>Some notes on terminology</h2>
  16. <p>
  17. The words "disk drive" or "hard drive" refer to the entire physical drive, whereas a "partition" is part of the drive that can hold a "filesystem".
  18. </p>
  19. <p>
  20. For example, in the Unix/Linux world, an entire drive may be named like this: /dev/sda, whereas the partitions inside it may be named /dev/sda1, /dev/sda2, etc.
  21. </p>
  22. <p>
  23. The problem with this terminology is that in the Windows/DOS world the word "drive" may refer to a partition, not the entire drive. For example, "drive C:" is really a partition. It is more correct to refer to C: as a "logical drive", which is also a term used in the Windows/DOS world.
  24. </p>
  25. <p>
  26. It is also necessary to distinguish between a partition and a filesystem, which again is blurred in the Windows/DOS world. You can create a partition in a hard drive, then create a filesystem inside it. Examples of filesystems are msdos, vfat, ntfs, ext2, ext3 and reiserfs.
  27. </p>
  28. <p>
  29. A point of confusion here is the DOS "format" program. This actually creates a msdos filesystem in a partition. The DOS "fdisk" program can create and delete partitions. (note that Linux also has a "fdisk" program, and it is in Puppy)
  30. </p>
  31. </section>
  32. <section>
  33. <h2>Copying drives or partitions</h2>
  34. <p>
  35. When I use the word "drive" I am normally referring to the entire drive. I use "partition" when I am referring to a partition.
  36. </p>
  37. <p>
  38. Pudd can copy an entire drive or a partition. There are some restrictions here, that I hope to alleviate in future versions of Pudd:
  39. <ul>
  40. <li>
  41. A drive can only be copied to another identical drive. For example, you can copy a 2GB SD card to another 2GB SD card (I don't know yet if there are any problems copying between different models/makes of SD card, or other types of Flash cards).
  42. </li>
  43. <li>
  44. A partition can be copied to another partition that is the same size or bigger. There are some details to be worked out here: for now, they must be set to have the same filesystem type. The source filesystem will overwrite whatever is in the destination partition. So far, Pudd can only resize ext2, ext3 and ext4 filesystems to fill the destination partition.
  45. </li>
  46. </ul>
  47. </p>
  48. <p>
  49. Pudd allows you to copy a drive/partition to a file, then you could copy the file to a drive/partition. However, you cannot mix the two. That is, you cannot copy a drive to a file then file to partition, as the file will contain the image of the entire drive, not just a single partition.
  50. </p>
  51. </section>
  52. <footer>
  53. Regards,<br>
  54. Barry Kauler
  55. </footer>
  56. </div>
  57. </body>
  58. </html>