[Bug 262004] Re: crashed on opening Firefox

2008-12-20 Thread owsla
This bug is due to the space at the end of the directory name: LBS .
FAT32 on Linux no longer supports filenames with spaces or periods at
the end because the kernel was changed to comply with the same
restrictions as Windows imposes.

Rdiff-backup version 1.2.3 (forthcoming) will escape trailing spaces or
periods on FAT32. CVS fix committed on Nov. 13, 2008; sorry for the
delay. Unfortunately, this issue was only first reported in a public
forum (rdiff-backup-users mailing list) in early November.

-- 
crashed on opening Firefox
https://bugs.launchpad.net/bugs/262004
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284506] Re: rdiff-backup crashed with IOError in reval()

2008-12-20 Thread owsla
To me, this looks like an rdiff-backup process started just as a second
one was finishing. The second one had left its Process ID marker in the
repository, the first one was aware of the marker and about to read it,
and then the second one finished and deleted the marker.

Given that the bug hasn't affected Henrik, I figure it can be closed.
I'll see what I can do to detect the race condition in the future.

-- 
rdiff-backup crashed with IOError in reval()
https://bugs.launchpad.net/bugs/284506
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 221274] Re: rdiff-backup crashed with AssertionError in start_process()

2008-12-20 Thread owsla
It looks like a directory was deleted from the filesystem just as rdiff-
backup was going to process it. I have improved the error message so
that the next version of rdiff-backup will print which directory caused
the problem.

-- 
rdiff-backup crashed with AssertionError in start_process()
https://bugs.launchpad.net/bugs/221274
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 304659] Re: rdiff-backup crashed with IOError in read()

2008-12-19 Thread owsla
Hew,

I have to tell you: If you are really getting the exact same error
IOError: [Errno 110] Connection timed out with the same traceback,
then I don't see how the problem can't be in rdiff-backup. The problem
is occurring while it is reading from a file.

Do you upgrade *anything* else when you do this upgrade? Python?
librsync? Or do you truly only replace the rdiff-backup package?

Here's how you can help track this down: run rdiff-backup with the -v5
option to increase verbosity. Then, rdiff-backup will print the name of
each file it is working on. The last file which it is working on is our
culprit.


Andrew

-- 
rdiff-backup crashed with IOError in read()
https://bugs.launchpad.net/bugs/304659
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 304659] Re: rdiff-backup crashed with IOError in read()

2008-12-19 Thread owsla
don't see how the problem *can* be in rdiff-backup. :-)

-- 
rdiff-backup crashed with IOError in read()
https://bugs.launchpad.net/bugs/304659
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 304659] Re: rdiff-backup crashed with IOError in read()

2008-12-19 Thread owsla
Right, /sys shouldn't be backed-up. :-)

So, why did 1.1.16 pass over this problem, and 1.2.2 choke? In 1.1.16,
it failed to read any information about the files in /sys, and thus
skipped over it. By 1.2.2, some bugs had been fixed to make rdiff-backup
better able to read information about troublesome files (Unicode files,
for example, often present the same error codes as the /sys files give
when reading the file metadata).

The strange thing is, when you try to get information about files in
/sys, you get an Invalid file (EINVAL) error code, which rdiff-backup
has long been able to handle. But when you try to actually read some of
the files in /sys, then you get a Connection timed out (ETIMEDOUT)
error, which rdiff-backup didn't know about. Based on your bug report, I
added handling for the ETIMEDOUT error to CVS the other day. Rdiff-
backup 1.2.3 will be able to pass through the /sys directory, just as
1.1.16 did.

So, the correct solution is to follow the good practice of not backing-
up /sys (just like /proc or /dev/shm, etc.), but rdiff-backup will no
longer be tripped-up starting again with 1.2.3.

Thanks,
Andrew

-- 
rdiff-backup crashed with IOError in read()
https://bugs.launchpad.net/bugs/304659
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292586] Re: rdiff-backup-statistics crashed with IOError in open()

2008-12-18 Thread owsla
Ok, rdiff-backup in CVS will no longer print a traceback if you cannot
read the backup destination.

-- 
rdiff-backup-statistics crashed with IOError in open()
https://bugs.launchpad.net/bugs/292586
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292586] Re: rdiff-backup-statistics crashed with IOError in open()

2008-12-17 Thread owsla
Hi Hew,

What do you mean by the same thing happens when running rdiff-backup as
a user on a root backup ? Do you get a traceback, or a human-readable
error message?

Obviously, there's nothing that can be done other than printing an error
message -- a regular user can't do anything about files owned by root.
:-)


Andrew

-- 
rdiff-backup-statistics crashed with IOError in open()
https://bugs.launchpad.net/bugs/292586
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 304659] Re: rdiff-backup crashed with IOError in read()

2008-12-17 Thread owsla
Hew,

I don't think the version of rdiff-backup is connected to this problem;
the fact that you downgraded and it worked again was probably only a
coincidence.

The error message indicates that the backup process Timed Out while
reading a file. Unfortunately, I haven't seen that situation give that
error message before (it used to be a generic I/O error), and thus you
got a traceback instead of a helpful message.

I have updated CVS so that it gives a human-readable message.


Andrew

-- 
rdiff-backup crashed with IOError in read()
https://bugs.launchpad.net/bugs/304659
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 302822] Re: rdiff-backup lacks bash autocompletion

2008-11-27 Thread owsla
I'm just an rdiff-backup developer, so I don't know what Ubuntu-specific
request is being made here, but I imagine the reporter is referring to
the bash completion script on the rdiff-bakcup Wiki:

http://wiki.rdiff-backup.org/wiki/index.php/BashCompletion

-- 
rdiff-backup lacks bash autocompletion
https://bugs.launchpad.net/bugs/302822
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 300650] Re: rdiff-backup crashes with not enough free space error which is not true

2008-11-21 Thread owsla
This is NOT a bug.

Please read the FAQ:
http://www.nongnu.org/rdiff-backup/FAQ.html#free_space

-- 
rdiff-backup crashes with not enough free space error which is not true
https://bugs.launchpad.net/bugs/300650
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292586] Re: rdiff-backup-statistics crashed with IOError in open()

2008-11-12 Thread owsla
Hew,

Thank you for submitting this bug report. The next version of rdiff-
backup-statistics (1.2.3) will now print a more helpful messages when
errors like this occur.

Thanks again,
Andrew

-- 
rdiff-backup-statistics crashed with IOError in open()
https://bugs.launchpad.net/bugs/292586
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 109981] Re: Problem with keep, backup to samba share

2008-10-07 Thread owsla
And if it is reproducible using the latest version of rdiff-backup, I
suggest adding the mapchars option when mounting the Windows share.
This is described in rdiff-backup's FAQ about backing up to Windows
shares: http://www.nongnu.org/rdiff-backup/FAQ.html#cifs

-- 
Problem with keep, backup to samba share
https://bugs.launchpad.net/bugs/109981
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 227918] Re: rdiff-backup crashed with OSError in setdata()

2008-10-01 Thread owsla
Hi Shaun,

Thank you for changing the visibility of your bug to 'public' as I can
now try and help you with your problem.

Surprisingly, NTFS *is* case-sensitive, as documented here:
http://support.microsoft.com/kb/100625  ... of course, that KB article
also explains about the many inconsistencies with case-sensitivity in
Windows above the filesystem layer. :-)

I noticed that the value of $LANG in your shell is LANG=en_GB.UTF-8

According to this Ubuntu forum post:
http://ubuntuforums.org/showthread.php?t=563961 users can experience
this problem until they change (in your case) to LANG=en_GB

Finally, in rdiff-backup 1.1.17, rdiff-backup gained the ability to
recover and continue when this error occurs. Please upgrade your version
of rdiff-backup to at least that version (and preferably the latest
stable version, which is 1.2.1 at this time).


Best,

Andrew
rdiff-backup maintainer


This bug is the same as #223280 (closed, fixed) and can also be marked as such.

-- 
rdiff-backup crashed with OSError in setdata()
https://bugs.launchpad.net/bugs/227918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 227918] Re: rdiff-backup crashed with OSError in setdata()

2008-10-01 Thread owsla
Sorry, that was the wrong forum post.

I meant to link to http://www.linuxforums.org/forum/misc/891-invalid-
incomplete-multibyte-wide-character.html

which is from 2003 and contains the appropriate fix.

-- 
rdiff-backup crashed with OSError in setdata()
https://bugs.launchpad.net/bugs/227918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 223280] Re: rdiff-backup fails on file with unknown unicode character

2008-07-05 Thread owsla
Fix in rdiff-backup CVS -- will be included in rdiff-backup 1.1.17 and
above.

** Changed in: rdiff-backup (Ubuntu)
   Status: New = Fix Committed

-- 
rdiff-backup fails on file with unknown unicode character
https://bugs.launchpad.net/bugs/223280
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 245844] Re: getting OverflowError: signed integer is greater than maximum

2008-07-05 Thread owsla
Python bug with fix committed to SVN in March 2008. Bug will be fixed in
Python releases 2.5.3 and above.

** Changed in: rdiff-backup (Ubuntu)
   Status: New = Fix Committed

-- 
getting OverflowError: signed integer is greater than maximum
https://bugs.launchpad.net/bugs/245844
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 245844] Re: getting OverflowError: signed integer is greater than maximum

2008-07-05 Thread owsla
This is due to a bug in Python, which was finally fixed in March 2008.

http://bugs.python.org/issue1747858

The bug fix will be a part of Python 2.5.3 and above.

-- 
getting OverflowError: signed integer is greater than maximum
https://bugs.launchpad.net/bugs/245844
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 223280] Re: rdiff-backup fails on file with unknown unicode character

2008-07-03 Thread owsla
Hi,

Thank you for reporting this error.

I have corrected the problem in CVS -- rdiff-backup will no longer have
a fatal error if it cannot handle an unknown Unicode character. The fix
will be present in rdiff-backup versions 1.1.17 and above.

Python 3 / 2.6 will introduce much better support for Unicode in Python.
The plan is for the next edition of rdiff-backup development (1.3.x and
beyond) to include complete support for Unicode (and never encounter an
'unknown' character).


thanks,
Andrew

-- 
rdiff-backup fails on file with unknown unicode character
https://bugs.launchpad.net/bugs/223280
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 203104] Re: rdiff-backup crashed with OSError in delete()

2008-06-10 Thread owsla
*** This bug is a duplicate of bug 135810 ***
https://bugs.launchpad.net/bugs/135810

This bug was fixed on May 9 in CVS. rdiff-backup was not properly
keeping track of the temp file. Whoops.

The fix will be included in the next version of rdiff-backup (1.1.16 or
1.2.0, etc.)

I presume the original report, bug #135810 can also be closed.

-- 
rdiff-backup crashed with OSError in delete()
https://bugs.launchpad.net/bugs/203104
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 203104] Re: rdiff-backup crashed with OSError in delete()

2008-03-17 Thread owsla
*** This bug is a duplicate of bug 135810 ***
https://bugs.launchpad.net/bugs/135810

Well, I can't see bug #135810 (the original of this dupe), so I'm
commenting here:

What's happening is that rdiff-backup is trying to write the metadata to
a temporary file in regress.py::recreate_meta(meta_manager) ... but that
temp file isn't being written correctly (or we don't think it is, which
is a different problem). I'll have to investigate.

The end result is that when rdiff-backup goes to rename the tempfile to
the final destination, it can't find the tempfile and blindly assumes
that it should delete the destination ... which we checked earlier to
ensure doesn't exist!


best,
Andrew (an rdiff-backup developer)

-- 
rdiff-backup crashed with OSError in delete()
https://bugs.launchpad.net/bugs/203104
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 203104] Re: rdiff-backup crashed with OSError in delete()

2008-03-17 Thread owsla
*** This bug is a duplicate of bug 135810 ***
https://bugs.launchpad.net/bugs/135810

Lorenco,

Is /media/ultrabay/ mounted read-only by any chance? That would
definitely cause this problem.


thanks,
Andrew

-- 
rdiff-backup crashed with OSError in delete()
https://bugs.launchpad.net/bugs/203104
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 144167] Re: [apport] rdiff-backup crashed with OSError in setdata()

2007-12-24 Thread owsla
Invalid bug.

User is trying to backup /home/lin to /home/lin/Desktop/backup ...

This is a circular backup!

-- 
[apport] rdiff-backup crashed with OSError in setdata()
https://bugs.launchpad.net/bugs/144167
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 91585] Re: rdiff-backup (through keep) fails creating backup on a CIFS share

2007-12-24 Thread owsla
Please see the FAQ if this is still affecting you:

http://www.nongnu.org/rdiff-backup/FAQ.html#cifs

In particular, the first note about assert not upper_a.lstat(), which
is what your traceback displays.

-- 
rdiff-backup (through keep) fails creating backup on a CIFS share
https://bugs.launchpad.net/bugs/91585
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 128244] Re: rdiff-backup --list-increments does not distinguish between error conditions

2007-08-09 Thread owsla
Nick,

Have you gotten a chance to test my fix from the first comment? I am
currently blocking the 1.1.13 release until you confirm.

Thanks,
Andrew

-- 
rdiff-backup --list-increments does not distinguish between error conditions
https://bugs.launchpad.net/bugs/128244
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 128244] Re: rdiff-backup --list-increments does not distinguish between error conditions

2007-07-29 Thread owsla
Nick, thanks for testing this.

If I read your comment correctly, you're looking for a wider range of
exit status codes, correct? As far as I can tell, rdiff-backup currently
exits with either 0 for no error or 1 for error occurred. It certainly
seems like getting some more information would be a good improvement.

Maybe something like this?
0 = no error occurred
1 = unrecoverrable error
2 = another rdiff-backup instance running
3 = recoverrable error (link down, interrupted, etc.)

-- 
rdiff-backup --list-increments does not distinguish between error conditions
https://bugs.launchpad.net/bugs/128244
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 128244] Re: rdiff-backup --list-increments does not distinguish between error conditions

2007-07-28 Thread owsla
Hi Nick,

This is a good point about the two different behaviors and I agree that
--list-increment-sizes is more sensible.

I think the correct fix is to simply remove the call to
restore_check_backup_dir() in the ListIncrements(rp) function in
Main.py. If you remove that line, does the bothersome behavior go away?

If that works for you (and I'm pretty sure it will), I will remove that
line in CVS, which will become rdiff-backup 1.1.13 and subsequent
releases.

Thanks for noticing this!

Andrew

-- 
rdiff-backup --list-increments does not distinguish between error conditions
https://bugs.launchpad.net/bugs/128244
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 128242] Re: minorest revision number change breaks network protocol

2007-07-28 Thread owsla
Unfortunately, this protocol change was necessary to fix a long-standing
and troublesome bug. These are the kind of changes that can happen in a
development branch, and that is why it is highly recommended that you
run the same version on all machines (rdiff-backup checks for this and
prints a warning otherwise).

The silver lining is that a new stable release is in the near future,
probably within the next two months and certainly by the end of 2007.

Andrew

-- 
minorest revision number change breaks network protocol
https://bugs.launchpad.net/bugs/128242
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 111932] Re: [apport] rdiff-backup crashed with OSError in mkdir()

2007-07-12 Thread owsla
Hi,

Thank you, this is very helpful. However, after you run mount /mnt/E
can you run just mount (no other options)? That will tell me how Linux
is viewing the filesystem. This is especially important since what you
just pasted tells us that it disagrees with the fstab.

Thanks,
Andrew

-- 
[apport] rdiff-backup crashed with OSError in mkdir()
https://bugs.launchpad.net/bugs/111932
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 109981] Re: Problem with keep, backup to samba share

2007-07-12 Thread owsla
Kevin, what type of server is /mnt/L_drive running on? Linux with Samba
(what version?), or some version of Windows, or some network appliance?

Also, what mount options do you have for /mnt/L_drive. After mounting
it, can you simply run the command 'mount' (no options) and paste what
it displays?

The filesystem on /mnt/L_drive does not seem to like files with a name
like 5-_ a.snapshot.gz, which is unfortunately for you, a fairly
common file name on Unix.

Thanks, Andrew

-- 
Problem with keep, backup to samba share
https://bugs.launchpad.net/bugs/109981
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 116010] Re: [apport] rdiff-backup crashed with OSError in mkdir()

2007-07-11 Thread owsla
What does the `mount` command report? Can you post the listing?

Thanks, Andrew

seanbeansea wrote:
 Hello,
 yes, you are right. Greetings.
 
 Am Dienstag, den 10.07.2007, 23:05 + schrieb owsla:
 What filesystem is /media/TREKSTOR/ running? Some type of FAT variety I
 presume?



-- 
[apport] rdiff-backup crashed with OSError in mkdir()
https://bugs.launchpad.net/bugs/116010
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 111932] Re: [apport] rdiff-backup crashed with OSError in mkdir()

2007-07-11 Thread owsla
What filesystem is used for /mnt/E  ? Probably some time of FAT
filesystem -- this seems like the same bug as 116010.

What does the `mount` command return? Can you paste the output?

Thanks, Andrew

-- 
[apport] rdiff-backup crashed with OSError in mkdir()
https://bugs.launchpad.net/bugs/111932
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 111488] Re: [apport] rdiff-backup crashed with IOError in touch()

2007-07-11 Thread owsla
This is a dup of bug 109981 from the same person. Problem is due to
Samba share not supporting long filenames.

-- 
[apport] rdiff-backup crashed with IOError in touch()
https://bugs.launchpad.net/bugs/111488
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 105310] Re: fails to run after interrupted second backup

2007-07-10 Thread owsla
This bug was fixed upstream in CVS on July 8, 2007. It will be fixed in
rdiff-backup 1.1.12 and subsequent releases. The use of the --force
option is a workaround for this problem.

-- 
fails to run after interrupted second backup
https://bugs.launchpad.net/bugs/105310
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 89205] Re: [crash] assert self.conn is Globals.local_connection

2007-07-10 Thread owsla
This bug was fixed upstream in CVS on July 8, 2007. It will be fixed in
rdiff-backup 1.1.12 and subsequent releases. The use of the --force
option is a workaround for this problem.

-- 
[crash] assert self.conn is Globals.local_connection
https://bugs.launchpad.net/bugs/89205
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 112815] Re: A crash messaged appeared

2007-07-10 Thread owsla
Fixed upstream in version 1.1.11.

-- 
A crash messaged appeared
https://bugs.launchpad.net/bugs/112815
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 91585] Re: rdiff-backup (through keep) fails creating backup on a CIFS share

2007-07-10 Thread owsla
Fixed upstream in version 1.1.6.

-- 
rdiff-backup (through keep) fails creating backup on a CIFS share
https://bugs.launchpad.net/bugs/91585
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 108542] Re: [apport] rdiff-backup crashed with AttributeError in open()

2007-07-10 Thread owsla
Fixed upstream in version 1.1.11.

-- 
[apport] rdiff-backup crashed with AttributeError in open()
https://bugs.launchpad.net/bugs/108542
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 112967] Re: [apport] rdiff-backup crashed with AttributeError in open()

2007-07-10 Thread owsla
*** This bug is a duplicate of bug 108542 ***
https://bugs.launchpad.net/bugs/108542

Fixed upstream in version 1.1.11.

-- 
[apport] rdiff-backup crashed with AttributeError in open()
https://bugs.launchpad.net/bugs/112967
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 107218] Re: [apport] rdiff-backup crashed with UnboundLocalError in set_extended_filenames()

2007-07-10 Thread owsla
Fixed upstream in version 1.1.6.

-- 
[apport] rdiff-backup crashed with UnboundLocalError in set_extended_filenames()
https://bugs.launchpad.net/bugs/107218
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 107053] Re: [apport] rdiff-backup crashed with IOError in log_to_term()

2007-07-10 Thread owsla
The question is, why is there a Broken Pipe error? As an rdiff-backup
developer, I am suspicious that files are being deleted by another cron
script at the same time (perhaps cleaning the /tmp dir?) and that is
breaking rdiff-backup.

-- 
[apport] rdiff-backup crashed with IOError in log_to_term()
https://bugs.launchpad.net/bugs/107053
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 108866] Re: [apport] rdiff-backup crashed with OSError in chmod()

2007-07-10 Thread owsla
Fixed upstream in version 1.1.9 (released Jan 29, 2007)

-- 
[apport] rdiff-backup crashed with OSError in chmod()
https://bugs.launchpad.net/bugs/108866
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 108093] Re: crash at startup

2007-07-10 Thread owsla
Fixed upstream in version 1.1.9 (realeased Jan 29, 2007)

-- 
crash at startup
https://bugs.launchpad.net/bugs/108093
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 112436] Re: [apport] rdiff-backup crashed with OSError in chmod()

2007-07-10 Thread owsla
*** This bug is a duplicate of bug 108866 ***
https://bugs.launchpad.net/bugs/108866

Fixed upstream in version 1.1.9 (released Jan 29, 2007)

-- 
[apport] rdiff-backup crashed with OSError in chmod()
https://bugs.launchpad.net/bugs/112436
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 116461] Re: keep error : Exception '[Errno 27] File too large' raised of class

2007-07-10 Thread owsla
User is attempting to create a file too large for destination file
system.

-- 
keep error : Exception '[Errno 27] File too large' raised of class
https://bugs.launchpad.net/bugs/116461
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 115834] Re: Configured keep for / archive. Failed at start of archive making.

2007-07-10 Thread owsla
Fixed upstream in version 1.1.9 (released Jan 29, 2007)

-- 
Configured keep for / archive.  Failed at start of archive making.
https://bugs.launchpad.net/bugs/115834
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 114368] Re: no realizo el respaldo

2007-07-10 Thread owsla
Fixed upstream in version 1.1.9 (released Jan 29, 2007)

-- 
no realizo el respaldo
https://bugs.launchpad.net/bugs/114368
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 111216] Re: [apport] rdiff-backup crashed with IOError in copyfileobj()

2007-07-10 Thread owsla
User out of disk space (see Traceback)

-- 
[apport] rdiff-backup crashed with IOError in copyfileobj()
https://bugs.launchpad.net/bugs/111216
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 92736] Re: I just tried to do a backup of my user account on my system

2007-07-10 Thread owsla
Fixed upstream in version 1.1.9 (released Jan 29 2007)

-- 
I just tried to do a backup of my user account on my system
https://bugs.launchpad.net/bugs/92736
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 96258] Re: [apport] rdiff-backup crashed with AttributeError in isinccompressed()

2007-07-10 Thread owsla
Fixed upstream in CVS on July 10, 2007. Will be parth of rdiff-backup
1.1.12 and subsequent releases.

-- 
[apport] rdiff-backup crashed with AttributeError in isinccompressed()
https://bugs.launchpad.net/bugs/96258
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 99484] Re: [apport] rdiff-backup crashed with OSError in setdata()

2007-07-10 Thread owsla
What filesystem is /media/bkp/bkps/home running on?

-- 
[apport] rdiff-backup crashed with OSError in setdata()
https://bugs.launchpad.net/bugs/99484
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 117375] Re: don't know

2007-07-10 Thread owsla
User is trying to make a circular backup.

It is not possible to backup / to /home/steve/bu without excluding (at
least) /home/steve/bu

-- 
don't know
https://bugs.launchpad.net/bugs/117375
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 116010] Re: [apport] rdiff-backup crashed with OSError in mkdir()

2007-07-10 Thread owsla
What filesystem is /media/TREKSTOR/ running? Some type of FAT variety I
presume?

-- 
[apport] rdiff-backup crashed with OSError in mkdir()
https://bugs.launchpad.net/bugs/116010
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 117833] Re: [apport] rdiff-backup crashed with OSError in setdata()

2007-07-10 Thread owsla
This was fixed in upstream CVS on July 10, 2007. The fix will be
included in rdiff-backup 1.1.12 and subsequent releases.

-- 
[apport] rdiff-backup crashed with OSError in setdata()
https://bugs.launchpad.net/bugs/117833
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 119992] Re: [apport] rdiff-backup crashed with IOError in log_to_term()

2007-07-10 Thread owsla
The logging for this bug was improved in upstream CVS on July 10, 2007.
The improvement will be included in rdiff-backup 1.1.12 and subsequent
releases.

-- 
[apport] rdiff-backup crashed with IOError in log_to_term()
https://bugs.launchpad.net/bugs/119992
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 117983] Re: Crashes on cron job

2007-07-10 Thread owsla
The logging for this bug was improved in upstream CVS on July 10, 2007.
The improvement will be included in rdiff-backup 1.1.12 and subsequent
releases.

-- 
Crashes on cron job
https://bugs.launchpad.net/bugs/117983
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 107053] Re: [apport] rdiff-backup crashed with IOError in log_to_term()

2007-07-10 Thread owsla
The logging for this bug was improved in upstream CVS on July 10, 2007.
The improvement will be included in rdiff-backup 1.1.12 and subsequent
releases.

-- 
[apport] rdiff-backup crashed with IOError in log_to_term()
https://bugs.launchpad.net/bugs/107053
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 125121] Re: [apport] rdiff-backup crashed with OSError in chmod()

2007-07-10 Thread owsla
Fixed upstream in version 1.1.9 (released Jan 29, 2007)

-- 
[apport] rdiff-backup crashed with OSError in chmod()
https://bugs.launchpad.net/bugs/125121
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 99484] Re: [apport] rdiff-backup crashed with OSError in setdata()

2007-07-10 Thread owsla
Hmm. What does `ls -la /media/bkp/bkps/home/rdiff-backup-data` report?

According to the traceback, rdiff-backup is trying to get information
about the file /media/bkp/bkps/home/rdiff-backup-data/rdiff-backup.tmp.0
but fails with Permission denied. I wonder what the permissions are that
are stopping that.

schlodowec wrote:
 I just use EXT3 on my disks.
 Thanks
 Luis
 
 
 2007/7/10, owsla [EMAIL PROTECTED]:

 What filesystem is /media/bkp/bkps/home running on?

 --
 [apport] rdiff-backup crashed with OSError in setdata()
 https://bugs.launchpad.net/bugs/99484
 You received this bug notification because you are a direct subscriber
 of the bug.

 

-- 
Andrew Ferguson - [EMAIL PROTECTED]

-- 
[apport] rdiff-backup crashed with OSError in setdata()
https://bugs.launchpad.net/bugs/99484
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs