Displaying 20 results from an estimated 45 matches for "backup2".
Did you mean:
backup
2001 Sep 23
2
destination dir doubles in size
I am using Rsync to mirror my primary drive to a mounted second drive. I am
using a crontab to control it:
30 3 * * * /usr/bin/rsync -rpogl /* /mnt/backup2/systemBackup/
The first run seems fine. But the subsequent running seems to double the
original directory size. I notice this by running df -k. The destination
size increases two fold, as if each time Rsync runs, it repeats itself,
rather than skipping over unmodified files. Do i need to change...
2003 Jan 09
2
Help With Restoring
...en using rsync to backup to a central server with a 7 day
incremental script on 2 Redhat boxen.
#!/bin/sh
PATH=/usr/local/bin:/usr/bin:/bin
DAY=`date +%A`
export PATH DAY
[ -d /root/emptydir ] || mkdir /root/emptydir
rsync --rsh=/usr/bin/ssh --delete -a /root/emptydir/
CENTRAL_SERVER_IP:/backup2/BACKED_UP_SERVER_FQDN/$DAY
rmdir /root/emptydir
rsync --delete --stats --compress --recursive --times --perms --links
--rsh=/usr/bin/ssh --exclude "tmp/" --exclude "dev/" --exclude "proc/"
--exclude "backups/ " --delete-excluded --backup
--backup-dir=/b...
2015 Nov 09
2
CentOS6: missing kernel module?
...tipc for cluster development, and running into an immediate snag.
tipcutils was found in EPEL but despite having a "compatible" kernel, it
doesn't seem to actually work.
It's a completely updated system, Intel i5 with 16 GB of RAM, nothing
remarkable.
Any ideas?
[root at backup2 ~]# tipc-config -netid=1234 -a=1.1.1 -be=eth:eth0
TIPC module not installed
[root at backup2 ~]# modprobe -l | grep -i ipc
kernel/sound/pci/snd-cmipci.ko
kernel/net/ipv4/ipcomp.ko
kernel/net/xfrm/xfrm_ipcomp.ko
kernel/net/ipv6/ipcomp6.ko
[root at backup2 ~]# uname -a
Linux backup2.schoolpathways...
2007 Jul 06
1
Connection problem with 3.0.25a [solved]
I found a solution for this, but I don't understand why this made a
difference.
First, here's output from testparm:
----------------------------------------------------
testparm
Load smb config files from /usr/local/etc/smb.conf
Processing section "[backup2$]"
Processing section "[backup$]"
Loaded services file OK.
Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions
[global]
workgroup = MYNET
server string = Backup Server
security = SHARE
log file = /var/log/samba/log.%m...
2018 Sep 11
1
Ensuring that rsync doesn't try to write to an unmounted drive
...ecause you are already checking for that. If it is the root of
> the filesystem then it will exist either as an empty directory or a
> mount point and you need to check for those possibilities.
I hope I'm answering your question. The mount info on the drive is
/dev/sdb1 on /media/chris/backup2 type ext4
(rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
However, in the script it's actually checking for the folder the backup
is written to 'snapshot'
BACKUP_DIR="/media/chris/backup2/snapshot/"
if [ ! -d ${BACKUP_DIR} ];then
echo "Backup destination dir...
2013 Mar 28
1
[Bug 9749] New: hardlinkes files are copies instat of make a link
...he other link is and if it
should be in a dir, which ist backuped.
so rsync copy the file without need instat of make a link and before rsync can
read the other link, my backup-drive is full und backup break!
my command line:
rsync -l -H -r -t -D -p -v -P --force --timeout=3600 -H
--link-dest=/hd/backup2/amd-k8-daten2/mpeg//03
--link-dest=/hd/backup2/amd-k8-daten2/mpeg//02
--link-dest=/hd/backup2/amd-k8-daten2/mpeg//01
--link-dest=/hd/backup2/amd-k8-daten2/mpeg//03/ /hd/daten2/mpeg/
/hd/backup2/amd-k8-daten2/mpeg//04/
i try to find a option to read all fileinformation before backup is started,
bat...
2008 Sep 09
2
Failed to retrieve password from secrets.tdb with anonymous bind
...1 try!
.........................
Part of smb.conf:
ldap ssl = no
ldap suffix = ou=People,dc=unizz,dc=it
encrypt passwords = yes
security = user
passdb backend = ldapsam:ldap://ldap.unizz.it
ldap user suffix = ou=People
pam password change = no
I tried to add password in secrets.tdb, but:
[root@backup2 samba]# smbpasswd -w ""
ERROR: 'ldap admin dn' not defined! Please check your smb.conf
I then added in smb.conf a fake:
ldap admin dn = ou=People,dc=unizz,dc=it
[root@backup2 samba]# tdbdump /etc/samba/secrets.tdb
{
key(19) = "SECRETS/SID/BACKUP2"
data(68) = "\01\...
2008 Apr 24
2
[LLVMdev] Status of use-diet so far (NO API CHANGES)
...hen swapping
occurs) the use-diet approach is probably producing
even better results.
So here are my values when doing a
cd ~/test-suite/MultiSource/Applications/kimwitu++
time make --always
in the regular trunk and with my changes merged in:
grep "^real" < kimwituRegular.scatter.backup2 | sort
real 1m34.002s
real 1m34.084s
real 1m34.092s
real 1m34.398s
real 1m34.468s
real 1m34.508s
real 1m34.733s
real 1m34.849s
real 1m35.057s
real 1m35.109s
real 1m35.160s
real 1m35.236s
real 1m36.005s
real 1m36.667s
real 1m38.071s
real 1m38.202s
real...
2018 Sep 11
2
Ensuring that rsync doesn't try to write to an unmounted drive
I have a script that runs nightly as a cronjob to backup my drive to a
USB drive https://pastebin.com/yivqrGUC On the command line I use the
--timeout option. Is this sufficient to ensure that if the external
drive somehow becomes unmounted that rsync will gracefully fail without
trying to write to the hard drive instead of the USB drive?
rsync -vaWSHpl --timeout=15 --delete-excluded --filter
2016 Mar 01
1
[PATCH] tests: move ntfs tests in a single directory
...et, Fifth Floor, Boston, MA 02110-1301 USA.
+
+# Test the ntfsclone-in/-out commands.
+
+set -e
+
+if [ -n "$SKIP_TEST_NTFSCLONE_SH" ]; then
+ echo "$0: test skipped because environment variable is set."
+ exit 77
+fi
+
+rm -f test-ntfsclone.img ntfsclone-backup1 ntfsclone-backup2
+
+# 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
+ ec...
2014 Nov 08
4
Master Works, Slave Does Not
...mber as well, but wheezy hasn't changed much. There are a few things still being sorted out in Debian jessie.)
> Now this may be a problem but I don't think it is the only one. I really feel this is a permissions issue.
>
> For example from the master, if I type:
> root at backup2:~# sudo upsc sdrups at localhost ups.status
> OL
>
> Which is the response I expect, but if I type (also from the master):
> root at backup2:~# sudo upsc sdrups at 192.168.0.7 ups.status
> Error: Connection failure: Connection refused
One thing that has changed since NUT 2....
2003 Jun 20
0
(code 12) at io.c(177) error
...1-rc8 (root@test2) (gcc version 3.3 20030226
(prerelease) (SuSE Linux)) #1 Thu Jun 12 14:42:14 EDT 2003
carafe:/usr/local/bin # /usr/local/bin/rsync --daemon
this starts rsync for the server.
carafe:/usr/local/bin # more /etc/rsyncd.conf
log file = /var/log/rsyncd.log
[bht.midcoast.com]
path= /backup2/bht.midcoast.com/
use chroot = true
max connections = 1
lock file = /var/log/rsyncd.bht.midcoast.com.lockfile
read only = no
list = yes
uid = root
gid = root
ignore nonreadable
ignore errors
hosts deny = *
hosts allow = 10.0.1.5
carafe:/var/log # tail rsyncd.log -n 5000 |grep bht
2003/06/19 15:58:...
2006 Jan 18
1
Backup of the 5 last revisions of files
...sb-disk, so I think my script works okay. It looks like this:
rsync -verbose -progres -a --link-dest=/mnt/usbd/daglig/backup1
My question is: Can anyone help me with a script that takes backup of for
example the 5 last revisions of the files on /home, so that backup1
contains version 1 of a file, backup2 contains version 2 of a file and so
on? Of course if a file has noe revision it should only be kept in its
originalyy state in backup1.
I have googled for this for quite a while but I have not found anything so
far, so I hope someone can give me som advice on this.
Thanks a lot!
Bjorn
2010 Nov 22
6
DO NOT REPLY [Bug 7809] New: I/O errors other than IOERR_GENERAL should not suppress deletion
https://bugzilla.samba.org/show_bug.cgi?id=7809
Summary: I/O errors other than IOERR_GENERAL should not suppress
deletion
Product: rsync
Version: 3.1.0
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned at samba.org
2008 Apr 25
0
[LLVMdev] Status of use-diet so far (NO API CHANGES)
On Apr 24, 2008, at 9:03 AM, Gabor Greif wrote:
>
> As you can see, the use-diet changes actually lower the build time
> of kimwitu++! (this is as of yesterday's r50182).
> Parity is not only reached, but surpassed.
Thanks for these numbers. Do you know how much of this increase is due
to
co-allocating Use arrays with their users, and how much is due to the
actual shrinking of
2003 Apr 23
1
trying to get incremental backups working
...re wondering about all the
variables, I eventually want to set it to pull the values for them from a
conf file that others will edit through a web interface.
BACKUPDIR=`date +%A`
BACKUPHOST=wally
REMOTEUSER=root
ARCHBASE=/home/catbertbackup/backuparchive/
CURRENT=current
INCLUDEFILE=/usr/local/etc/backup2/include
EXCLUDEFILE=
rsync --delete --backup --backup-dir=$ARCHBASE$BACKUPDIR -ae ssh
/usr/local/etc $REMOTEUSER@$BACKUPHOST:$ARCHBASE$CURRENT
rsync --delete --backup --backup-dir=$ARCHBASE$BACKUPDIR -ae ssh
/etc $REMOTEUSER@$BACKUPHOST:$ARCHBASE$CURRENT
Right now this does pretty much what I woul...
2014 Nov 07
0
Master Works, Slave Does Not
On Nov 6, 2014, at 12:48 PM, Steve Read <sd_read at hotmail.com> wrote:
> I am presently upgrading my servers. The old ones are running Suse 10.1 and I am upgrading to the most recent Debian.
What version of NUT on the new systems?
There are a few changes to the configuration files, mostly related to the ACL lines.
--
Charles Lepple
clepple at gmail
-------------- next part
2013 Jan 08
2
rsync in conjunction with the --link-dest option does not output deleted files
Hi,
I want to use rsync to make daily backups using hard-links in this way:
rsync -av --delete --link-dest=../backup_old ./source/. ./backup_new
This works great, but the problem is, that rsync does not show correctly
what action it performs (-v option). It shows correctly all new and
changed files/folders, but it does not show files that were deleted.
This works only if I do not use the
2014 Nov 08
0
Master Works, Slave Does Not
...-specific version number as well, but wheezy hasn't changed much. There are a few things still being sorted out in Debian jessie.)
Now this may be a problem but I don't think it is the only one. I really feel this is a permissions issue.
For example from the master, if I type:
root at backup2:~# sudo upsc sdrups at localhost ups.status
OL
Which is the response I expect, but if I type (also from the master):
root at backup2:~# sudo upsc sdrups at 192.168.0.7 ups.status
Error: Connection failure: Connection refused
One thing that has changed since NUT 2.4.x is that the ACL optio...
2014 Nov 08
0
Master Works, Slave Does Not
...-specific version number as well, but wheezy hasn't changed much. There are a few things still being sorted out in Debian jessie.)
Now this may be a problem but I don't think it is the only one. I really feel this is a permissions issue.
For example from the master, if I type:
root at backup2:~# sudo upsc sdrups at localhost ups.status
OL
Which is the response I expect, but if I type (also from the master):
root at backup2:~# sudo upsc sdrups at 192.168.0.7 ups.status
Error: Connection failure: Connection refused
One thing that has changed since NUT 2.4.x is that the ACL optio...