Displaying 20 results from an estimated 3000 matches similar to: "clone a disk"
2015 Jul 17
0
clone a disk
Hi TG,
You can keep an up-to-date copy of the files/folders/pipes/etc. in the
100GB space using rsync, but not a true clone of the partition.
To get a true clone of the boot partition, you'd need to boot from a
rescue CD, mount the other machine's 100GB space and dd the boot
partition device to a file on the 100GB space.
You'd also probably want to get the Master Boot Record by
2015 Jul 17
1
clone a disk
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I would add --numeric-ids and --itemize-changes. Up to you if you
need --xattrs or --acls.
Also, I prefer to do backups by filesystem so I would add
- --one-file-system and run one rsync per filesystem. This means you
don't have to exclude things like /proc and /dev and any random thing
that isn't normally connected but sometimes is but it
2015 Jul 17
0
clone a disk
Thierry Granier <th.granier at free.fr> wrote:
> i have a machine A with 2 disks 1 et 2 running Debian Jessie
> on 1 is the system and the boot and the swap
> on 2 different partitions like /home /opt ETC.....
>
> i have a machine B with 1 disk running kali-linux and 100G free
>
> Can i clone the disk 1 of machine A on the 100G free on machine B with rsync?
>
>
2004 Jul 18
7
Resize ocfs....?
I've tried several times to resize one of my ocfs volumes[see emcpowere1 below]
I'm on the latest [prod] version of ocfs/ocfs-tools as of 3pm EST on 18JUL04.
Per instructions...
Take down db, unmount all ocfs drives, use ' tuneocfs -F -S 100G /dev/emcpowere1 '
Supposedly this should work, but I get get....
The size specified, 100G, is larger than the device size, 59G.
Aborting.
2011 Sep 12
2
Ignoring /boot
Hi,
I have the following script that I'm writing to backup my gentoo linux
system.
----- start of script -----
#!/bin/sh
#
#
RSYNC_OPTS="--archive --one-file-system --perms --executability --progress
--stats --delete-after --hard-links --keep-dirlinks --verbose --inplace"
RSYNC_USER="bs"
RSYNC_SERVER="192.168.6.6"
RSYNC_MODULE="ben-desktop"
2020 Aug 05
3
Re: Installing Kali Linux using KVM virt-install tool
On Wed, Aug 5, 2020 at 1:32 PM Pavel Hrdina <phrdina@redhat.com> wrote:
> On Wed, Aug 05, 2020 at 06:57:11AM +0530, Kaushal Shriyan wrote:
> > Hi,
> >
> > I am trying to install kali-linux-2020.2-installer-amd64.iso (
> > https://www.kali.org/downloads/) using KVM virt-install tool
> >
> > #virt-install --name=kalilinux
2020 Aug 07
2
Re: Installing Kali Linux using KVM virt-install tool
On Fri, Aug 7, 2020 at 1:10 PM Erik Skultety <eskultet@redhat.com> wrote:
> On Wed, Aug 05, 2020 at 10:13:57PM +0530, Kaushal Shriyan wrote:
> > On Wed, Aug 5, 2020 at 1:32 PM Pavel Hrdina <phrdina@redhat.com> wrote:
> >
> > > On Wed, Aug 05, 2020 at 06:57:11AM +0530, Kaushal Shriyan wrote:
> > > > Hi,
> > > >
> > > > I am
2020 Aug 05
2
Installing Kali Linux using KVM virt-install tool
Hi,
I am trying to install kali-linux-2020.2-installer-amd64.iso (
https://www.kali.org/downloads/) using KVM virt-install tool
#virt-install --name=kalilinux --file=/linuxkvmaddgbdisk/kalilinux.img
--file-size=50 --nonsparse --vcpu=2 --ram=4096 --network=bridge:br0
--os-type=linux --os-variant=debian9 --graphics none
--location=/linuxkvmaddgbdisk/kali-linux-2020.2-installer-amd64.iso
2007 Apr 18
1
[PATCH 4/10] I386 pgd clone under lock fix.patch
Copying of the pgd range must happen under the pgd_lock. This got broken by
the paravirt changes in the -mm tree. Badness can result if you copy the pgd
before being added to the list when splitting or rejoining large pages.
Signed-off-by: Zachary Amsden <zach@vmware.com>
diff -r 2247ff2c3fdb arch/i386/mm/pgtable.c
--- a/arch/i386/mm/pgtable.c Thu Apr 05 17:29:15 2007 -0700
+++
2007 Apr 18
1
[PATCH 4/10] I386 pgd clone under lock fix.patch
Copying of the pgd range must happen under the pgd_lock. This got broken by
the paravirt changes in the -mm tree. Badness can result if you copy the pgd
before being added to the list when splitting or rejoining large pages.
Signed-off-by: Zachary Amsden <zach@vmware.com>
diff -r 2247ff2c3fdb arch/i386/mm/pgtable.c
--- a/arch/i386/mm/pgtable.c Thu Apr 05 17:29:15 2007 -0700
+++
2015 Apr 22
3
distribucion de IRWIN HALL
.... Un código más optimizado para la aproximación Monte Carlo de la distribución de IH
N=10000 # tamaño simulación Monte Carlo
n=5 # numero de uniformes
cdf.IH <-function(x,n,N) {
z=replicate(N,sum(runif(n)))
apply(outer(x,z,">="),1,mean)
}
x=seq(0,5,.1)
y=cdf.IH(x,n=n,N=N)
plot(x,y,type="l")
Un saludo. Olivier
----- Mensaje original -----
De:
2015 Apr 21
3
distribucion de IRWIN HALL
estimados
estoy considerando programar la funcion de distribucion de Irwin hall.
lamentablemente no he tenido exito, pido que alguien me pueda colaborar con
aquello, les quedo agradecido de antemano.
--
atte. Lic. Genaro Llusco Silvestre
gellusco en gmail.com
Telf: 74028671
blog personal es:
http://www.cientificest.blogspot.com
[[alternative HTML version deleted]]
2008 Feb 07
2
Catching non-Merb::ControllerExceptions Exceptions
Is there an agreed upon method for handling exceptions thrown by
something outside of Merb? For example, DataMapper now throws a
DataMapper::ObjectNotFoundError when a record isn''t found in the db.
I''d like to catch these exceptions and raise a C:E:NotFound exception
instead, but without having to wrap a lot of code in begin/rescue/end
blocks.
Thanks,
Mike Irwin
2020 Aug 07
1
Re: Installing Kali Linux using KVM virt-install tool
Hi Pavel,
I am running virt-install version 1.5.0 on CentOS Linux release 7.6.1810
(Core) server.
#virt-install --name=kalilinux --file=/linuxkvmaddgbdisk/kalilinux.img
--file-size=50 --nonsparse --vcpu=2 --ram=4096 --network=bridge:br0
--os-type=linux --os-variant=debian9 --graphics none --location
2018 Feb 12
2
[PATCH] inspect: recognize the Kali Linux distribution (RHBZ#1544227)
Read the information from os-release, and make it behave like a
Debian distribution (i.e. using dpkg, and apt).
---
daemon/inspect_fs.ml | 2 ++
daemon/inspect_fs_unix.ml | 1 +
daemon/inspect_types.ml | 2 ++
daemon/inspect_types.mli | 1 +
generator/actions_inspection.ml | 4 ++++
5 files changed, 10 insertions(+)
diff --git a/daemon/inspect_fs.ml
2020 Oct 05
2
Debugging libguestfs
Here is my output I am getting on my kali machine. I believe that the error is:
guestfsd: error while loading shared libraries: libtsk.so.19: cannot open shared object file: No such file or directory
I tried to change the LD_LIBRARY_PATH to numerous locations and libtsk.so.19 is inside /usr/lib/x86_64-linux-gnu
2010 Sep 09
1
R2WinBugs problem
I'm having difficulty running R2WinBugs on a setup that previously
worked for me (Dell Laptop, Windows XP service pack 3, R 2.11.1, WinBugs
1.43) . When I issue the following command
smds.sim <- bugs (data, inits, parameters, "SMDSbrandLoc2.bug",
debug = T,
n.thin = n.thin,
n.chains = n.chains,
n.burnin = n.burnin,
n.iter = n.iter)
I get the following error in R
2024 Jul 04
1
anonymous ldap search, how disable it?
On 4/07/24 17:38, Joachim Lindenberg via samba wrote:
> Afaik or understand, enum4linux uses samba-tool (https://www.kali.org/tools/enum4linux/) and not ldap. Did you try enum4linux on a member (probably after some authentication) or some other non-member linux?
I don't think that is quite the right distinction, because samba-tool
would probably use ldap for this.
Also, I see ldapsearch
2013 Jan 09
4
Announce: PuppetDB 1.1.0-rc4 now available
PuppetDB 1.1.0-rc4 is now available for download! This is a feature and
bug-fix release candidate of PuppetDB.
Note: Release candidates 1-3 were never pushed to repositories due issues
in packaging that were discovered prior to release. RC-4 is the first
packaged release candidate for PuppetDB 1.1.0.
# Downloads
==============
Available in native package format in the pre-release repositories
2013 Jan 11
13
Profiles, Hiera, and create_resources('class','...')
Hi all,
We''ve recently started exploring the role / profile / component module
described by Craig Dunn in his blog here:
http://www.craigdunn.org/2012/05/239/ and discussed on the list the other
day. As I was implementing this for
a profile using the apache module, I realized that I could make another
refinement to our approach by using