Added some ideas in TODO file.
[libguestfs.git] / TODO
1 We badly need to actually implement the FTP server mentioned in the
2 documentation.
3
4 ----------------------------------------------------------------------
5
6 Use a real scanner in guestfish.  Suggest:
7
8     "..."       strings
9     '...'
10     [...]       matching [ and ]
11
12 ----------------------------------------------------------------------
13
14 (From Ján ONDREJ (SAL))
15
16 We should provide a way to stream partitions in and out.
17
18 Thus:
19
20 dd-out /dev/sda1 > [some file]
21
22 dd-in /dev/sda1 < [some file]
23
24 Along with this, we need to be able to call the resize2fs program to
25 resize the filesystem in case it is larger or smaller than the target
26 partition.
27
28 Another useful feature would be to allow rsync to/from a stream for
29 whole filesystems and subdirectories.
30
31 The current protocol is message-oriented and doesn't support
32 streaming.  But it's simple enough that we could add this.