search for: mountdir

Displaying 16 results from an estimated 16 matches for "mountdir".

2011 Jan 17
1
[PATCH] RHEV: Ensure DESTROY won't be called for uninitialized object
...ess($self, $class); - + # Must do this before bless, or DESTROY will be called die(user_message(__"You must be root to output to RHEV")) unless ($> == 0); @@ -456,6 +454,9 @@ sub new "36:36", mountdir => $mountdir))); + my $self = {}; + bless($self, $class); + $self->{mountdir} = $mountdir; $self->{domain_path} = $domain_path; -- 1.7.3.4
2005 Jul 29
4
Reinstall Windows but preserve CentOS
I have a computer that dual boots between Windows and CentOS. Each has it's own hard drive. I suddenly have a problem with Windows, and may need to reinstall. I need it for applications like After Effects, Premiere, and other things that I am currently in the middle of a project with. It seems the system has become usnstable, it's preventing me from continuing to work, and I
2009 Mar 24
3
DO NOT REPLY [Bug 6209] New: rsync exiting suddenly
https://bugzilla.samba.org/show_bug.cgi?id=6209 Summary: rsync exiting suddenly Product: rsync Version: 3.0.5 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: mathieu.coavoux@aktor.fr QAContact:
2010 Jun 08
3
[PATCH 1/3] Fix RHEV cleanup on unclean shutdown
Cleanup was not happening properly if a migration to RHEV was killed prematurely with a Ctrl-C. Firstly, the SIGINT and SIGQUIT handlers were not being registered early enough in virt-v2v.pl. Secondly, if Ctrl-C killed the guestfs qemu process first it would deliver a SIGPIPE to v2v, which caused an unclean shutdown without cleanup. Fixes RHBZ#596015 --- v2v/virt-v2v.pl | 17 ++++++++++++++---
2010 Sep 13
3
[PATCH 1/4] Check that we're not overwriting an existing Libvirt domain
Exit with an error if we would overwrite an existing libvirt domain. Fixes RHBZ#617110 --- lib/Sys/VirtV2V/Connection/LibVirt.pm | 4 ++++ lib/Sys/VirtV2V/Target/LibVirt.pm | 31 ++++++++++++++++++++++++++++++- lib/Sys/VirtV2V/Target/RHEV.pm | 11 +++++++++++ 3 files changed, 45 insertions(+), 1 deletions(-) diff --git a/lib/Sys/VirtV2V/Connection/LibVirt.pm
2010 Mar 30
3
[PATCH 1/2] Refactor guest and volume creation into Sys::VirtV2V::Target::LibVirt
Move all target-specific functionality into its own module in preparation for output to RHEV. --- MANIFEST | 1 + lib/Sys/VirtV2V/Connection.pm | 46 ++--- lib/Sys/VirtV2V/Converter.pm | 138 +------------ lib/Sys/VirtV2V/Target/LibVirt.pm | 419 +++++++++++++++++++++++++++++++++++++ lib/Sys/VirtV2V/Transfer/ESX.pm | 91 +++------ po/POTFILES.in
2010 Jun 01
1
[PATCH] RHEV: OVF must have the same name as the OS UUID
...n ovf:id="$vmuuid" ovf:required="false" xsi:type="ovf:OperatingSystemSection_Type"> <Info>Guest Operating System</Info> <Description>Unassigned</Description> </Section> @@ -644,8 +644,6 @@ EOF my $mountdir = $self->{mountdir}; my $domainuuid = $self->{domainuuid}; - my $vmuuid = Sys::VirtV2V::Target::RHEV::UUIDHelper::get_uuid(); - my $dir = $mountdir.'/'.$domainuuid.'/master/vms/'.$vmuuid; mkdir($dir) or die(user_message(__x(&quo...
2004 Aug 06
2
ices...mount points (and a LAME question)
...the name of the stream. Put it in > <ices:Server> > <ices:Mountpoint><ices:Mountpoint> > </ices:Server> This doesn't work for me. Ices report right what i specified in <ices:Mountpoint><ices:Mountpoint> but Icecast still report icy_0 and icy_1 as mountdir I'm using Icecast from debian woody distribution. Do you have any sugestions? Thank, Madr -- Martin Dressler e-mail: dr@musicabona.cz http://www.musicabona.com/ --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscr...
2010 Apr 26
2
[PATCH] Fix virt-v2v exit codes
...waitpid($self->{pid}, WNOHANG); + $retval ||= $?; } + + $? = $retval; } package Sys::VirtV2V::Target::RHEV::Vol; @@ -441,6 +446,8 @@ sub DESTROY { my $self = shift; + my $retval = $?; + my $eh = Sys::VirtV2V::ExecHelper->run('umount', $self->{mountdir}); if ($eh->status() != 0) { print STDERR user_message(__x("Failed to unmount {path}. Command ". @@ -449,6 +456,7 @@ sub DESTROY path => $self->{domain_path}, status => $eh->status()...
2002 Nov 08
2
mounting smbfs
I am having trouble mounting a smbfs mount in redhat 7.3. I have read the man pages for mount,smbmount,smbmnt, but haven't had much luck. I am thinking I am just getting the syntax wrong. If I wanted to mount a system on my network with the ip address of 192.168.0.1, What would the syntax be for this? Any info would be of much help to me, Thank-You
2010 Jun 01
1
[PATCH] RHEV: Pad disk sizes up to a multiple of 1024 bytes
...insertions(+), 4 deletions(-) diff --git a/lib/Sys/VirtV2V/Target/RHEV.pm b/lib/Sys/VirtV2V/Target/RHEV.pm index 9dd9013..6841afc 100644 --- a/lib/Sys/VirtV2V/Target/RHEV.pm +++ b/lib/Sys/VirtV2V/Target/RHEV.pm @@ -171,12 +171,16 @@ our %vols_by_path; sub _new { my $class = shift; - my ($mountdir, $domainuuid, $size) = @_; + my ($mountdir, $domainuuid, $insize) = @_; my $self = {}; bless($self, $class); - $self->{size} = $size; + $self->{insize} = $insize; + # RHEV needs disks to be a multiple of 512 in size. Additionally, SIZE in + # the disk meta file ha...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...arget::WriteStream; -use Sys::VirtV2V::Util qw(user_message); +use File::Spec::Functions qw(splitpath); +use Sys::VirtV2V::Util qw(user_message); use Locale::TextDomain 'virt-v2v'; -our %vols_by_path; -our @vols; -our $tmpdir; - -sub _new +sub new { my $class = shift; - my ($mountdir, $domainuuid, $insize) = @_; + my ($volume) = @_; my $self = {}; bless($self, $class); - $self->{insize} = $insize; - # RHEV needs disks to be a multiple of 512 in size. Additionally, SIZE in - # the disk meta file has units of kilobytes. To ensure everything matches up...
2009 Sep 22
1
[PATCH] edit-livecd in python
...t(LoopbackDisk(base_on, 0), self._mkdtemp()) + self._LiveImageCreatorBase__isodir = self._ImageCreator__builddir + "/iso" + + try: + isoloop.mount() + # legacy LiveOS filesystem layout support, remove for F9 or F10 + if os.path.exists(isoloop.mountdir + "/squashfs.img"): + squashimg = isoloop.mountdir + "/squashfs.img" + else: + squashimg = isoloop.mountdir + "/LiveOS/squashfs.img" + + #copy over everything but squashimg + shutil.copytree...
2004 Aug 06
1
multistreams
On Tue 26. June 2001 19:01, you wrote: > > Ices report right what i specified in <ices:Mountpoint><ices:Mountpoint> > > but Icecast still report icy_0 and icy_1 as mountdir > > I'm using Icecast from debian woody distribution. > > Do you have any sugestions? > > Yes. Don't run in icy mode. > > icy mode doesn't have mountpoints, so your mountpoint would be ignored. > > jack. > Thank for prompt answer. It help me. But I hav...
2004 Aug 06
3
ices...mount points (and a LAME question)
hi don't know if i'm missing something, but how do i name mount points using ices? i assumed this was specified in the <ices:Stream> <ices:Name></ices:Name> </ices:Stream> chunk but whatever i put in there, icecast tells me that my stream is going to /ices (according to the output from configure/make, xml is being properly compiled it) --- ...ALSO, a
2011 Mar 11
2
[PATCH 1/2] Allow reading more data than the reported size of a volume
If a volume is not an exact multiple of 512 bytes, qemu-img will report its size rounded down to a 512 byte boundary. However, when copying, the file is still read until EOF, which will return more data than was expected. This change prevents that causing a failure in itself. The situation is still not resolved, however, as there are still situations where this will cause a failure. For example,