Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | todo: Add ntfsck. | Richard W.M. Jones | 2011-03-19 | 1 | -0/+2 | |
| | ||||||
* | todo: Live CD inspection works, but not for Windows 7. | Richard W.M. Jones | 2011-01-15 | 1 | -48/+2 | |
| | ||||||
* | todo: /proc/self/mountinfo | Richard W.M. Jones | 2011-01-09 | 1 | -0/+15 | |
| | ||||||
* | todo: Add notes on inspecting ISO images. | Richard W.M. Jones | 2011-01-08 | 1 | -1/+46 | |
| | ||||||
* | Update TODO file. | Richard W.M. Jones | 2011-01-02 | 1 | -0/+8 | |
| | ||||||
* | Update TODO file. | Richard W.M. Jones | 2010-12-19 | 1 | -7/+31 | |
| | ||||||
* | todo: Refresh documentation. | Richard W.M. Jones | 2010-12-02 | 1 | -11/+6 | |
| | ||||||
* | generator: trace mode prints return values. | Richard W.M. Jones | 2010-11-17 | 1 | -6/+0 | |
| | ||||||
* | todo: Suggest that trace should include return values. | Richard W.M. Jones | 2010-11-17 | 1 | -0/+6 | |
| | ||||||
* | todo: live CD inspection | Richard W.M. Jones | 2010-11-15 | 1 | -0/+7 | |
| | ||||||
* | todo: Notes on parsing. | Richard W.M. Jones | 2010-11-12 | 1 | -0/+28 | |
| | ||||||
* | New API: add-domain | Richard Jones | 2010-11-11 | 1 | -8/+0 | |
| | | | | | | | | | | | | | | | | | | | This new API allows you to add the disks from a libvirt domain. In guestfish you can use the 'domain' command to access the API, eg: ><fs> domain Fedora14 libvirturi:qemu:///system 1 The returned number is the number of disks that were added. Also here is a proposed (but commented out) low-level API which would allow you to add a domain from a virDomainPtr. However there are several problems with this API -- see discussion on the list: https://www.redhat.com/archives/libguestfs/2010-November/thread.html#00028 | |||||
* | todo: Remove obsolete items from TODO file. | Richard W.M. Jones | 2010-10-27 | 1 | -51/+2 | |
| | ||||||
* | Enable autosync by default. | Richard W.M. Jones | 2010-10-27 | 1 | -1/+0 | |
| | ||||||
* | todo: Add wishlist items to to-do list. | Richard W.M. Jones | 2010-10-18 | 1 | -0/+15 | |
| | ||||||
* | todo: Add note about using blktrace. | Richard W.M. Jones | 2010-10-06 | 1 | -0/+8 | |
| | ||||||
* | todo: Suggest removing repo name from appliance name. | Richard W.M. Jones | 2010-09-20 | 1 | -0/+6 | |
| | ||||||
* | fish: If -m option fails, suggest a mountpoint. | Richard Jones | 2010-09-15 | 1 | -4/+1 | |
| | ||||||
* | todo: Remove section since we now have list-filesystems API. | Richard Jones | 2010-09-15 | 1 | -4/+0 | |
| | ||||||
* | todo: More use of libblkid. | Richard Jones | 2010-09-15 | 1 | -0/+12 | |
| | ||||||
* | todo: More ideas. | Richard Jones | 2010-09-14 | 1 | -0/+9 | |
| | ||||||
* | todo: Remove discussion of copy-in/copy-out. | Richard Jones | 2010-09-09 | 1 | -33/+0 | |
| | ||||||
* | todo: Notes on virt copy command. | Richard Jones | 2010-09-09 | 1 | -0/+13 | |
| | ||||||
* | Bring TODO file up to date. | Richard Jones | 2010-09-08 | 1 | -28/+9 | |
| | ||||||
* | TODO: Implement inspector code in C. | Richard Jones | 2010-07-27 | 1 | -0/+11 | |
| | ||||||
* | TODO: Implement recursive upload/download in guestfish. | Richard Jones | 2010-07-27 | 1 | -0/+20 | |
| | ||||||
* | TODO: Add link to discussion of progress bars. | Richard Jones | 2010-07-27 | 1 | -0/+3 | |
| | ||||||
* | New APIs: Support for creating LUKS and managing keys. | Richard Jones | 2010-07-22 | 1 | -2/+0 | |
| | | | | | | | | | | | | | | | | | | | This commit adds four APIs for creating new LUKS devices and key management. These are: luks_format Format a LUKS device with the default cipher. luks_format_cipher Format with a chosen cipher. luks_add_key Add another key to an existing device. luks_kill_slot Delete a key from an existing device. This enables all the significant functionality of the cryptsetup luks* commands. Note that you can obtain the UUID of a LUKS device already by using vfs-uuid. This also includes a regression test covering all the LUKS functions. | |||||
* | New APIs: Support for opening LUKS-encrypted disks. | Richard Jones | 2010-07-21 | 1 | -0/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds support for opening LUKS-encrypted disks, via three new APIs: luks_open: Create a mapping for an encrypted disk. luks_open_ro: Same, but read-only mapping. luks_close: Close a mapping. A typical guestfish session using this functionality looks like this: $ guestfish --ro -a encrypted.img ><fs> run ><fs> list-devices /dev/vda ><fs> list-partitions /dev/vda1 /dev/vda2 ><fs> vfs-type /dev/vda2 crypto_LUKS ><fs> luks-open /dev/vda2 luksdev Enter key or passphrase ("key"): ><fs> vgscan ><fs> vg-activate-all true ><fs> pvs /dev/dm-0 ><fs> vgs vg_f13x64encrypted ><fs> lvs /dev/vg_f13x64encrypted/lv_root /dev/vg_f13x64encrypted/lv_swap ><fs> mount /dev/vg_f13x64encrypted/lv_root / ><fs> ll / total 132 dr-xr-xr-x. 24 root root 4096 Jul 21 12:01 . dr-xr-xr-x 20 root root 0 Jul 21 20:06 .. drwx------. 3 root root 4096 Jul 21 11:59 .dbus drwx------. 2 root root 4096 Jul 21 12:00 .pulse -rw-------. 1 root root 256 Jul 21 12:00 .pulse-cookie dr-xr-xr-x. 2 root root 4096 May 13 03:03 bin NOT included in this patch: - An easier way to use this from guestfish. - Ability to create LUKS devices. - Ability to change LUKS keys on existing devices. - Direct access to the /dev/mapper device (eg. if it contains anything apart from VGs). | |||||
* | todo: Add comment about progress of long-running operations. | Richard Jones | 2010-07-02 | 1 | -0/+7 | |
| | ||||||
* | TODO: Add a note about impl of list-filesystems. | Richard Jones | 2010-06-16 | 1 | -0/+9 | |
| | ||||||
* | todo: More ideas for TODO list. | Richard Jones | 2010-06-15 | 1 | -0/+40 | |
| | ||||||
* | TODO: Freeze/thaw filesystems. | Richard Jones | 2010-06-08 | 1 | -1/+7 | |
| | ||||||
* | TODO: Need to add regression test for virt-inspector. | Richard Jones | 2010-06-08 | 1 | -0/+7 | |
| | ||||||
* | TODO: 'file' command should be fixed. | Richard Jones | 2010-06-08 | 1 | -0/+6 | |
| | ||||||
* | todo: Should generate -N option. | Richard Jones | 2010-05-28 | 1 | -0/+6 | |
| | ||||||
* | todo: Remove implemented resize functions from TODO file. | Richard Jones | 2010-05-28 | 1 | -17/+0 | |
| | ||||||
* | TODO: Suggest including undelete utility. | Richard Jones | 2010-05-21 | 1 | -0/+1 | |
| | ||||||
* | generator: Implement BufferIn parameter type (RHBZ#501889). | Richard Jones | 2010-05-20 | 1 | -9/+0 | |
| | | | | | | | | | | | | The BufferIn argument turns into various things: in C const char *, size_t parameter pair in XDR an opaque<> type (instead of string) which allows \0 chars in other bindings mostly just a string, since most languages except for C permit strings to contain any 8 bit data | |||||
* | todo docs: Discuss shrinking filesystems and specifying sizes in guestfish. | Richard Jones | 2010-04-23 | 1 | -0/+17 | |
| | ||||||
* | todo docs: Integrate with host intrusion detection systems. | Richard Jones | 2010-04-23 | 1 | -0/+12 | |
| | ||||||
* | todo docs: Mapping filesystems to and from disk blocks. | Richard Jones | 2010-04-23 | 1 | -0/+10 | |
| | ||||||
* | fish: Add -N option for making prepared disk images. | Richard Jones | 2010-04-22 | 1 | -10/+0 | |
| | | | | | | | | | | | | | | | | | Previously you might have typed: $ guestfish ><fs> alloc test1.img 100M ><fs> run ><fs> part-disk /dev/sda mbr ><fs> mkfs ext4 /dev/sda1 now you can do the same with: $ guestfish -N fs:ext4 Some tests have also been updated to use this new functionality. | |||||
* | New APIs: base64-in and base64-out for uploading/downloading base64 content. | Richard Jones | 2010-04-19 | 1 | -23/+0 | |
| | ||||||
* | todo docs: Feature for base64 uploads and scripts. | Richard Jones | 2010-04-19 | 1 | -1/+24 | |
| | ||||||
* | todo documentation: Idea: List, mount filesystems by UUID and label. | Richard Jones | 2010-04-17 | 1 | -1/+13 | |
| | ||||||
* | todo documentation: remove 'virt-grow/shrink', see virt-resize | Richard Jones | 2010-04-17 | 1 | -7/+0 | |
| | ||||||
* | todo documentation: virt-rescue now uses $TERM from library, remove from ↵ | Richard Jones | 2010-04-17 | 1 | -6/+0 | |
| | | | | todo list | |||||
* | todo documentation: Remove old section on PPC bugs. | Richard Jones | 2010-04-17 | 1 | -17/+0 | |
| | | | | | No one cares for PPC, and if they do they should file these as bugs in the bug tracker. | |||||
* | todo documentation: Remove old ideas for Python bindings. | Richard Jones | 2010-04-17 | 1 | -6/+0 | |
| |