search for: ntfs3g

Displaying 20 results from an estimated 60 matches for "ntfs3g".

2015 Dec 13
3
unknown/unavailable method for expanding the ntfs filesystem
Hello,everyone I ran virt-resize(v1.30.4) on my CentOS 7.1 to resize win2008r2 and got the warning message (virt-resize: warning: unknown/unavailable method for expanding the ntfs filesystem on /dev/sda2): >/usr/local/libguestfs-1.30.4/run virt-resize --expand /dev/sda2 /images/win2008_src.raw /dev/vg0/win2008_resize_dst [ 0.0] Examining
2012 May 03
5
[PATCH 0/5] Various fixes for virt-make-fs.
The main one is that it now estimates btrfs overhead more accurately, allowing it to construct btrfs images. See: https://bugzilla.redhat.com/show_bug.cgi?id=816098 Rich.
2015 Dec 14
0
Re: unknown/unavailable method for expanding the ntfs filesystem
...> inotify yes > journal yes > ldm no > linuxcaps yes > linuxfsuuid yes > linuxmodules yes > linuxxattrs yes > luks yes > lvm2 yes > mdadm yes > mknod yes > ntfs3g no > ntfsprogs no [...] > It seems guestfish can not find ntfs3g and ntfsprogs. I have tried > installing "ntfs-3g" and "ntfsprogs" packages from epel, but > guestfish still can't find any ntfs support. This won't work. In RHEL you need to have lib...
2015 Jul 30
2
livecd vs nfsroot vs what?
Hi, I'm trying to deploy some non-linux OS via pxe and I was thinking to just launch CentOS in RAM and then run dd or qemu-img or something like this in order to complete the other OS install via template imaging. My first idea was to build a custom CentOS livecd and use that in combination with pxe kernel parameters, but perhaps there's a better way to do this. Ideas? Thanks, Lucian --
2016 Mar 01
1
[PATCH] tests: move ntfs tests in a single directory
...-i command. + +set -e + +if [ -n "$SKIP_TEST_NTFSCAT_SH" ]; then + echo "$0: test skipped because environment variable is set." + exit 77 +fi + +rm -f test-mft.bin + +# Skip if ntfs-3g is not supported by the appliance. +if ! guestfish add /dev/null : run : available "ntfs3g"; then + echo "$0: skipped because ntfs-3g is not supported by the appliance" + exit 77 +fi + +if [ ! -s ../../test-data/phony-guests/windows.img ]; then + echo "$0: skipped because windows.img is zero-sized" + exit 77 +fi + +# download Master File Table ($MFT)....
2012 Feb 27
4
[PATCH 0/4] Add various ntfs* tools and unify label setting.
This miscellaneous patch adds bindings for: - ntfsfix - ntfsclone - ntfslabel and unifies filesystem label setting through a single API 'set-label' which replaces 'set-e2label' and is also able to set labels on NTFS using the ntfslabel program. 'ntfsfix' has been added as a possible way to fix RHBZ#797760. However I have not found a way to fully fix this bug. See
2009 Mar 09
3
Clonezilla SE with CentOS5
Hi all, I'm looking for a cloning solution for our Windows/Linux/*nix computer park and ran into Clonezilla. Apparantely the DRBL and other documentation mentions CentOS as a suitable base for it. Does anybody on this list use this solution and can say something about it in the running-Clonezilla-with-CentOS-context, be it recommendations, gotchas', warnings or whatever? Thanks. -- BW,
2011 May 02
5
Is there a difference ...?
Doh123, how is running a program off an NTFS partition asking for trouble? Ntfsprogs seems to handle it just fine. I know that NTFS doesn't let you mark a file as executable, and that the filesystem is susceptible to fragmentation, but you should just be able to tell it to run rather than display and be good. It shouldn't cause destruction. I think there might even be an NTFS defrag tool
2015 Nov 10
1
[PATCH] OCaml tools: use open_guestfs everywhere
..."alignment\n"; printf "align-first\n"; printf "infile-uri\n"; - let g = new G.guestfs () in + let g = open_guestfs () in g#add_drive "/dev/null"; g#launch (); if g#feature_available [| "ntfsprogs"; "ntfs3g" |] then @@ -329,9 +329,7 @@ read the man page virt-resize(1). (* Add in and out disks to the handle and launch. *) let connect_both_disks () = - let g = new G.guestfs () in - if trace () then g#set_trace true; - if verbose () then g#set_verbose true; + let g = open_guestfs...
2011 May 03
1
Switching to 16 bit colour ...
...to use shake defrag from Linux on a ntfs drive that was that badly fragmented that windows defrag tools would not even attempt. > > But executable bit is not the only file system part Ntfsprogs is missing. There is a serous difference in mmap handling compared to ext2 ext3 or ext4 from the ntfs3g driver. These differences do cause failures in applications when on ntfs with wine that don't happen when on ext2 ext3 or ext4. So for us doing support we want tested on ext filesystems so we know if the issue you are seeing is ntfs3g issue or wine with every file-system. > > ntfsprogs...
2015 Jan 13
3
[PATCH] mkfs: add 'label' optional argument
...; ["mount"; "/dev/sda1"; "/"]; ["write"; "/new"; "new file contents"]; ["cat"; "/new"]], "new file contents"), [] @@ -9761,7 +9765,7 @@ device." }; optional = Some "ntfs3g"; tests = [ InitPartition, Always, TestRun ( - [["mkfs"; "ntfs"; "/dev/sda1"; ""; "NOARG"; ""; ""]; + [["mkfs"; "ntfs"; "/dev/sda1"; ""; "NOARG"; &q...
2018 Aug 21
0
[PATCH 2/2] OCaml tools: add output selection for --machine-readable
...f "alignment\n"; + machine_readable_printf "align-first\n"; + machine_readable_printf "infile-uri\n"; let g = open_guestfs () in g#add_drive "/dev/null"; g#launch (); if g#feature_available [| "ntfsprogs"; "ntfs3g" |] then - printf "ntfs\n"; + machine_readable_printf "ntfs\n"; if g#feature_available [| "btrfs" |] then - printf "btrfs\n"; + machine_readable_printf "btrfs\n"; if g#feature_available [| "xfs&quo...
2018 Apr 12
4
[PATCH 0/2] Support for expanding f2fs partitions
Hi, this small patch series exposes one of the utility in f2fs-tools, and use it to expand f2fs partitions in virt-resize. Thanks, Pino Toscano (2): New API: f2fs_expand resize: expand f2fs partitions daemon/Makefile.am | 1 + daemon/f2fs.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++ generator/actions_core.ml | 9 +++++++++ generator/proc_nr.ml | 1 +
2015 Jul 30
0
livecd vs nfsroot vs what?
...e kernel parameters, but perhaps there's a > better way to do this. I would use the regular kickstart %pre parts if the tools you need are already there or could be imported. If you can pxe, what about trying warewulf diskless boot to achieve what you need ( I have played with c6 + clamav + ntfs3g to clean-up a friend win7 laptop). xcat can also be a choice, although I haven't tried. Cheers Tru -- Tru Huynh http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xBEFA581B -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: applicati...
2008 May 06
1
mounting Windows NTFS drives on CENTOS 5.1
I have been looking through the CENTOS 5.1 and SAMBA doc files trying to figure out if I can mount my already NTFS formatted and nearly full hard drives ( nearly I Terabyte of disks) on a CENTOS 5.1 server running SAMBA and be able to access them with the LINUX operating system and other Windows computers. Any that has information relating to this please send doc references if possible. Thanks
2013 Oct 02
2
installing centos with oos ntfs format drives
greetings. i am going to run a fresh install of centos 6.4 and want to mount 3 partitions of oos that are formatted as ntfs in an oem installed box. if during install, i set up partitions /dev/sda1, /dev/sda2, and /dev/sdb1 as ntfs, will install install ntfs software or will i have to select it later on in installation? also, is it better to mount them under /mnt to keep /media clean? tia.
2010 Oct 18
2
SAMBA 4 ACL support
Hi all, I am experimenting with samba 4. I have existing data on NTFS partition and want to share them via samba. But I have problems with permissions (ACL). There is an option: ntvfs handler that tells how mapping of permissions between unix and windows world shall behave. But there is lack of documentation. So I tried posix, simiple but in either case I wasnot able to write even set permissions
2018 Apr 12
0
[PATCH v2 2/2] resize: expand f2fs partitions
...let xfs_available = ref true in + let f2fs_available = ref true in (* Add a drive to an handle using the elements of the URI, * and few additional parameters. @@ -364,6 +368,7 @@ read the man page virt-resize(1). ntfs_available := g#feature_available [|"ntfsprogs"; "ntfs3g"|]; btrfs_available := g#feature_available [|"btrfs"|]; xfs_available := g#feature_available [|"xfs"|]; + f2fs_available := g#feature_available [|"f2fs"|]; g in @@ -585,6 +590,7 @@ read the man page virt-resize(1). | ContentFS ((&quot...
2007 Feb 07
3
How to use apps and DLLs from XP partition?
I have a Dell Latitude D600 with Windows XPsp2 on the first partition and Ubuntu Feisty (Linux kernel 2.6.20) with Wine 0.9.30 on the second partition, set up to dual-boot. The XP share is NTFS and mounted read-only for Linux. What I want to do is run my Windows apps from the XP partition under Wine, because I really hate using Windows. A lot of the apps seem to ask for DLLs they can't find.
2016 Feb 27
2
Re: [PATCH] added ntfscat_i api
On 27/02/16 01:05, Richard W.M. Jones wrote: > On Sat, Feb 27, 2016 at 12:53:51AM +0200, noxdafox wrote: >> On 26/02/16 10:12, Richard W.M. Jones wrote: >>> On Fri, Feb 26, 2016 at 12:16:22AM +0200, noxdafox wrote: >>>> According to autogen.sh output Perl bindings and virt tools seem to >>>> be missing, could it be related to this? Are the tests relying to