summaryrefslogtreecommitdiffstats
path: root/cat/virt-filesystems.c
Commit message (Collapse)AuthorAgeFilesLines
* New API: guestfs_canonical_device_name.Richard W.M. Jones2012-06-131-31/+25
| | | | This API makes device names canonical, eg. /dev/vda1 -> /dev/sda1.
* filesystems: Implement parents of MD and VG devices (RHBZ#805070).Richard W.M. Jones2012-03-211-16/+223
|
* filesystems: Allow the parents column to contain multiple parents.Richard W.M. Jones2012-03-201-16/+61
| | | | | | A list of parents is passed for this column. This column is rendered as an (internally) comma-separated list.
* Tempus fugit.Richard W.M. Jones2012-01-181-1/+1
| | | | Update all copyright dates to 2012.
* filesystems: Fix memory leak found by valgrind.Richard W.M. Jones2011-11-241-1/+3
|
* Update FSF address.Matthew Booth2011-11-081-1/+1
|
* virt-filesystems: Add MBR partition type byte to the output.Richard W.M. Jones2011-10-251-12/+56
| | | | | | | | | | | | | This adds an extra column containing this information, looking like this: Name Type VFS Label MBR Size Parent /dev/sda1 filesystem ntfs - - 6.0G - /dev/sda1 partition - - 07 6.0G /dev/sda /dev/sda device - - - 6.0G - In particular you can use this to tell if a partition is an extended partition, because the field will contain '05' or '0f'.
* Add more missing include directives.Jim Meyering2011-04-131-1/+3
| | | | | | * cat/virt-cat.c: Include string.h and libintl.h. * cat/virt-filesystems.c: Likewise. * cat/virt-ls.c: Likewise.
* Include <locale.h> in compilation units that use setlocale function.Richard W.M. Jones2011-03-071-0/+1
| | | | Fix required by gcc 4.6.0.
* fish: Add guestfish --live, guestmount --live options.Richard W.M. Jones2011-02-031-0/+2
| | | | | | The other programs have the variable, but the flag is not enabled either because it doesn't make sense or because the implications are not well understood.
* virt-filesystems: Ignore errors when getting label and UUID (RHBZ#668112).Richard W.M. Jones2011-01-081-6/+29
| | | | | | | | | | | If virt-filesystems was pointed to an image that contained bogus or blank filesystems, then calls to vfs-label and/or vfs-uuid could fail, resulting in errors like this: libguestfs: error: vfs_label: /dev/vda1: These errors can be ignored and shouldn't stop virt-filesystems from working.
* filesystems: Fix command synopsis in usage message.Richard W.M. Jones2010-11-231-2/+2
| | | | This updates commit fbc2555903be8c88ad9430d871cf0d27c8fded1e.
* New tool: virt-filesystemsRichard W.M. Jones2010-11-231-0/+870
This tool replaces virt-list-filesystems and virt-list-partitions with a new tool written in C with a more uniform command line structure and output. This existing Perl tools are deprecated but remain indefinitely.