search for: ext2_saved

Displaying 8 results from an estimated 8 matches for "ext2_saved".

2013 Feb 20
2
btrfs doesn't report proper error when removing subvolume
Hi. petrb@bots-bnr1:/mnt$ btrfs subvolume delete ext2_saved/ Delete subvolume ''/mnt/ext2_saved'' ERROR: cannot delete ''/mnt/ext2_saved'' this is not really very descriptive. It would be really cool if it told me why it can''t delete it. For example: Permission denied. Cannot delete ... Disk write error. Cannot d...
2015 Jun 04
3
[PATCH RFC][Resend] New API: btrfs_convert
...sda"; "true"]]), [] + ]; + shortdesc = "convert from ext2/3/4 filesystem to btrfs or rollback"; + longdesc = "\ +This is used to convert existed ext2/3/4 to btrfs filesystem, and the original +filesystem image is accessible as from separate subvolume named ext2_saved as file image. + +If you want to rollback to ext2/3/4, set rollback to true." }; + ] (* Non-API meta-commands available only in guestfish. -- 2.1.0
2015 Jun 05
2
Re: [PATCH RFC][Resend] New API: btrfs_convert
...tive. > >> + shortdesc = "convert from ext2/3/4 filesystem to btrfs or rollback"; >> + longdesc = "\ >> +This is used to convert existed ext2/3/4 to btrfs filesystem, and the original >> +filesystem image is accessible as from separate subvolume named ext2_saved as file image. > > While I understand you copied this description from the btrfs-convert(1) > man page, please at least make sure it is proper grammar: > > This is used to convert an existing ext2/3/4 filesystem to btrfs; > a copy of the original filesystem image is still av...
2015 Jun 04
0
Re: [PATCH RFC][Resend] New API: btrfs_convert
...a white spaces at the end > + shortdesc = "convert from ext2/3/4 filesystem to btrfs or rollback"; > + longdesc = "\ > +This is used to convert existed ext2/3/4 to btrfs filesystem, and the original > +filesystem image is accessible as from separate subvolume named ext2_saved as file image. While I understand you copied this description from the btrfs-convert(1) man page, please at least make sure it is proper grammar: This is used to convert an existing ext2/3/4 filesystem to btrfs; a copy of the original filesystem image is still available in a separate subvol...
2012 Feb 20
11
btrfs-convert processing time
Hi, I''m trying to convert two ext4 FS to btrfs, but I''m surprised by the time needed to do that conversion. The first FS is on a 500GiB block device, and btrfs-convert is running since more than 48h : root 1978 25.6 47.7 748308 732556 ? D Feb18 944:44 btrfs-convert /dev/vg-backup/backup The second is on a 340GiB block device, and the processing time is similar
2015 May 27
0
[PATCH RFC] New API: btrfs_convert
...sda"; "true"]]), [] + ]; + shortdesc = "convert from ext2/3/4 filesystem to btrfs or rollback"; + longdesc = "\ +This is used to convert existed ext2/3/4 to btrfs filesystem, and the original +filesystem image is accessible as from separate subvolume named ext2_saved as file image. + +If you want to rollback to ext2/3/4, set rollback to true." }; + ] (* Non-API meta-commands available only in guestfish. -- 2.1.0
2014 Nov 12
0
btrfs balance fails with no space errors (despite having plenty)
Hi all, Yesterday I converted my ext4 root and home partitions on my home machine to btrfs using btrfs-convert. After confirming that everything went well, I followed the wiki instructions to nuke the 'ext2_saved" subvolume, then defraggad and rebalanced. Everything went according to plan on my root partition, but my home partition claimed to have run out of space when rebalancing. I did some digging and tried the following to resolve the problem, but to no avail. So far I have: - Made sure I deleted...
2008 Jan 07
1
[PATCH]Add rollback support for the converter
...descriptor\n"); + goto fail; + } root->fs_info->priv_data = ext2_fs; root->fs_info->extent_ops = &extent_ops; ret = init_btrfs(root); if (ret) { - fprintf(stderr, "failed to setup the root tree\n"); - goto fail; - } - snap_root = create_subvol(root, "ext2_saved", 10); - if (!snap_root) { - fprintf(stderr, "failed to create subvol\n"); + fprintf(stderr, "unable to setup the root tree\n"); + goto fail; + } + ext2_root = create_subvol(root, "ext2_saved"); + if (!ext2_root) { + fprintf(stderr, "unable to create subv...