Testing repository moved to launchpad
Testing repository is now hosted in launchpad:
https://launchpad.net/~bit-team/+archive/testing
Stable repository will follow soon.
Testing repository is now hosted in launchpad:
https://launchpad.net/~bit-team/+archive/testing
Stable repository will follow soon.
This is the 4th beta release on the way to 1.0. It is available on testing repository. Please keep in mind that this version is for testing only.
Changes:
This is the third beta release on the way to 1.0. It is available on testing repository. Please keep in mind that this version is for testing only.
Changes (for 1.0):
This is the second beta release on the way to 1.0. It is available on testing repository. Please keep in mind that this version is for testing only.
Changes (for 1.0):
This is the first beta release on the way to 1.0. It is available on testing repository. Please keep in mind that this version is for testing only.
Changes (for 1.0):
Change log:
Mount a samba share using smbmount and then configure Back In Time to save snapshots into this share. Taking a snapshot don’t work, only some directories are created.
After some investigation: using a windows share it works, using a samba is doesn’t work.
Samba provide some extensions to the protocol to support uid/gid and permissions.
I mounted the share using smbmount (’sudo smbmount’) and I create a directory: the user/group of the new directory are root/root and the permissions are user:rwx and group/other:rx only. Then creating a sub-directory will fail since I don(t have the rights.
To void problems the only solution I found is to mount the share using “-o nosuids,noperms” arguments (not uid/gid and no permissions). This way the application seems to works. The only problem is that snapshots are no longer read-only. Starting from version 0.9.24, user/group and permissions are stored in a special file so restoring them should be OK.
Change log:
The application allow you to select local folders only.
In KDE4 I use KFileDialog static method:
QString getExistingDirectory( KUrl startDir=KUrl(), QWidget parent=0, QString caption=QString() )
According to the documentation:
Creates a modal directory-selection dialog and returns the selected directory (local only) or an empty string if none was chosen.
For more information:
So it is not normal to be able to select network. This looks more like a KDE4 bug.
The problem with read-write snapshot is that you can modify it accidentally. Even worst, if the file you modified is shared between different snapshots (hard-link) all snapshots will be affected.
This is because by default in ntfs-3g driver (this driver provide read/write support for NTFS) files and directories are owned by the effective user and group of the mounting process (usually root) and everybody has full read, write, execution and directory browsing permissions.
To get more information:
I don’t have one. Check out ntfs-3g site (http://www.ntfs-3g.org) for more information.If you find a solution please share it.