to backup
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 521
Box Backup 0.10
Box Backup is an open source, completely automatic on-line backup system for UNIX. more>>
Box Backup is an FREE, completely automatic on-line backup system for UNIX.
Main features:
- All backed up data is stored on the server in files on a filesystem; no tape or archive devices are used
- The server is trusted only to make files available when they are required; all data is encrypted
- A backup daemon runs on systems to be backed up, and copies encrypted data to the server when it notices changes
- Only changes within files are sent to the server, just like rsync
- Old versions of files on the server are stored as changes from the current version
- Behaves like tape -- old versions and deleted files are available
- Choice of backup behaviour, optimised for document or server backup
- Designed to be easy and cheap to run a server. Portable implementation, and RAID implemented in userland for reliability without complex server setup or expensive hardware. (optional)
Enhancements:
- The diffing algorithm was highly optimised for speed.
- Bugs were fixed. Solaris support was added.
- Portability improvements were made, including a new autoconf based build.
- Xattrs are supported on Linux and Darwin, which backs up resource forks under Mac OS X.
- Experimental features include keep-alive on long diffing operations, saving state for non-server use, a native Win32 port, and support for MinGW and MSVC under Win32.
<<lessMain features:
- All backed up data is stored on the server in files on a filesystem; no tape or archive devices are used
- The server is trusted only to make files available when they are required; all data is encrypted
- A backup daemon runs on systems to be backed up, and copies encrypted data to the server when it notices changes
- Only changes within files are sent to the server, just like rsync
- Old versions of files on the server are stored as changes from the current version
- Behaves like tape -- old versions and deleted files are available
- Choice of backup behaviour, optimised for document or server backup
- Designed to be easy and cheap to run a server. Portable implementation, and RAID implemented in userland for reliability without complex server setup or expensive hardware. (optional)
Enhancements:
- The diffing algorithm was highly optimised for speed.
- Bugs were fixed. Solaris support was added.
- Portability improvements were made, including a new autoconf based build.
- Xattrs are supported on Linux and Darwin, which backs up resource forks under Mac OS X.
- Experimental features include keep-alive on long diffing operations, saving state for non-server use, a native Win32 port, and support for MinGW and MSVC under Win32.
Download (0.49MB)
Added: 2006-02-24 License: BSD License Price:
768 downloads
DYS Backup 0.2
DYS Backup is just a small script to backup your system. more>>
DYS Backup is just a small script to backup your system.
You can ajust it to your needs as you like. It is made for me, but you are free to use it in the terms of the GNU General Public License.
Enhancements:
- Backups can be rotated and timestamped.
- Self encryption with GPG can be done.
- Pre and post script functions can be used.
- Package data was added for Red Hat/Fedora.
- Conditional compression of encryption is used.
- The user may choose between bzip2 and gzip.
<<lessYou can ajust it to your needs as you like. It is made for me, but you are free to use it in the terms of the GNU General Public License.
Enhancements:
- Backups can be rotated and timestamped.
- Self encryption with GPG can be done.
- Pre and post script functions can be used.
- Package data was added for Red Hat/Fedora.
- Conditional compression of encryption is used.
- The user may choose between bzip2 and gzip.
Download (0.002MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
926 downloads
Backup 0.1a
Backup adds instant version control to any file on a Unix system. more>>
Backup project adds instant version control to any file on a Unix system.
Do you hate *.bak and *.20050101 and *.cjn (your initials here) and *.do.not.touch files as much as I do? They litter your filesystem any time someone (and were all guilty of it) needs to back-up a file theyre working on.
But who ever comes back and cleans the mess up? At what point is an old backed-up file no longer needed? And what about when you need that backup file only to discover that its missing, or you didnt capture one because you didnt want to add clutter? Backup is my answer to all that. It adds instantly available, reliable version control to every file in the filesystem.
Backup is a lightweight interface to the Subversion svn_fs library. It uses the powerful version control software as a backend to a simple and minimalistic (though effective) user interface. It is designed for use on Linux/Unix (including OS X) systems as a method of archiving configuration files that change semi-frequently, but do not necessarily warrent their own version control mechanism or repository. Things like "/etc/hosts" or "httpd.conf".
It can create a backup of any file without having to import it first, without worrying about setting up new repositories, and (because it speaks directly to the FS layer) without littering hidden ".svn" (or even worse, visable "CVS") directories all over the place. It does this by using a single global "archive," which contains a filesystem that mirrors your root as you add to it. You can view the archive and restore files, do diffs, and move things around as necessary. For more complex administration, the archive is a standard Subversion file system which can be administrated with any compatable client (including the svn command line tools).
The current version is knocked together in Perl. Its alpha, but it is pretty functional... at least for a proof of concept. Eventually I plan to re-write it in C... but we all know about "the best laid plans." In the mean while, the Perl version does work... mostly. The only real trick is that you need to compile and install the Subversion bindings for it Perl. There are some other modules you may need as well, but theyre all fairly standard.
Usage:
You probably shouldnt if you youre doing mission-critical work. Its still alpha code after-all. But if you do decide to give it a spin, dont blame me for any breakage (the only thing that should damage existing files is the combination of -r and -o, which will overwrite during a restore).
<<lessDo you hate *.bak and *.20050101 and *.cjn (your initials here) and *.do.not.touch files as much as I do? They litter your filesystem any time someone (and were all guilty of it) needs to back-up a file theyre working on.
But who ever comes back and cleans the mess up? At what point is an old backed-up file no longer needed? And what about when you need that backup file only to discover that its missing, or you didnt capture one because you didnt want to add clutter? Backup is my answer to all that. It adds instantly available, reliable version control to every file in the filesystem.
Backup is a lightweight interface to the Subversion svn_fs library. It uses the powerful version control software as a backend to a simple and minimalistic (though effective) user interface. It is designed for use on Linux/Unix (including OS X) systems as a method of archiving configuration files that change semi-frequently, but do not necessarily warrent their own version control mechanism or repository. Things like "/etc/hosts" or "httpd.conf".
It can create a backup of any file without having to import it first, without worrying about setting up new repositories, and (because it speaks directly to the FS layer) without littering hidden ".svn" (or even worse, visable "CVS") directories all over the place. It does this by using a single global "archive," which contains a filesystem that mirrors your root as you add to it. You can view the archive and restore files, do diffs, and move things around as necessary. For more complex administration, the archive is a standard Subversion file system which can be administrated with any compatable client (including the svn command line tools).
The current version is knocked together in Perl. Its alpha, but it is pretty functional... at least for a proof of concept. Eventually I plan to re-write it in C... but we all know about "the best laid plans." In the mean while, the Perl version does work... mostly. The only real trick is that you need to compile and install the Subversion bindings for it Perl. There are some other modules you may need as well, but theyre all fairly standard.
Usage:
You probably shouldnt if you youre doing mission-critical work. Its still alpha code after-all. But if you do decide to give it a spin, dont blame me for any breakage (the only thing that should damage existing files is the combination of -r and -o, which will overwrite during a restore).
Download (0.005MB)
Added: 2006-02-02 License: GPL (GNU General Public License) Price:
1455 downloads
Snap Backup 3.7
Snap Backup is The One-Click Backup Utility that makes it simple to protect your important work. more>>
Snap Backup is The One-Click Backup Utility that makes it simple to protect your important work. Snap Backup is for individual computer users who need a simple and convenient way to backup their valuable files.
Protecting Your Data Should be Easy
How often do you backup? How much work would you lose if your hard drive crashed right now? Snap backup makes it easy to frequently backup and archive your valuable data. Protect your work with Snap Backup.
Main features:
- One Click to Perform a Backup
- Configurable Settings
- Runs on Most Platforms (Including: Mac OS X, Linux, Solaris, and Windows)
- Supports Multiple Languages
- Its Free (No adware, spyware, or any other evil stuff)
The first time you run Snap Backup, you configure where your data files reside and where to create backup files. You can also specify an archive location, such as a USB drive or an Iomega Zip drive, for storing backup files.
Snap Backup automatically puts the current date in the backup file name, alleviating you from the tedious task of renaming your backup file every time you backup. The backup file is a single compressed file that can be read by zip programs such as StuffIt, gzip, and WinZip.
Take Control
Good system administrators have backup procedures for their company servers, databases, and network files. Individual computer users, on the other hand, are usually left to fend for themselves. Snap Backup is the simple answer for individual users, in the corporation or at home, who want to protect their valuable data.
For Everyone
Snap Backup is 100% Java and designed to run on any computer with Java. Snap Backup is free and is fully internationalized (meaning we just need to translate the words to support new languages). Please see the translation page if you want to help translate Snap Backup into your favorite language.
<<lessProtecting Your Data Should be Easy
How often do you backup? How much work would you lose if your hard drive crashed right now? Snap backup makes it easy to frequently backup and archive your valuable data. Protect your work with Snap Backup.
Main features:
- One Click to Perform a Backup
- Configurable Settings
- Runs on Most Platforms (Including: Mac OS X, Linux, Solaris, and Windows)
- Supports Multiple Languages
- Its Free (No adware, spyware, or any other evil stuff)
The first time you run Snap Backup, you configure where your data files reside and where to create backup files. You can also specify an archive location, such as a USB drive or an Iomega Zip drive, for storing backup files.
Snap Backup automatically puts the current date in the backup file name, alleviating you from the tedious task of renaming your backup file every time you backup. The backup file is a single compressed file that can be read by zip programs such as StuffIt, gzip, and WinZip.
Take Control
Good system administrators have backup procedures for their company servers, databases, and network files. Individual computer users, on the other hand, are usually left to fend for themselves. Snap Backup is the simple answer for individual users, in the corporation or at home, who want to protect their valuable data.
For Everyone
Snap Backup is 100% Java and designed to run on any computer with Java. Snap Backup is free and is fully internationalized (meaning we just need to translate the words to support new languages). Please see the translation page if you want to help translate Snap Backup into your favorite language.
Download (0.10MB)
Added: 2005-10-25 License: Freeware Price:
1756 downloads
NVnetbackup 1.6
NVnetbackup (Not Veritas netbackup) is a simple backup system framework for data in an SMB networked environment. more>>
NVnetbackup (Not Veritas netbackup) is a simple backup system framework for data in an SMB networked environment.
NVnetbackup can also be used for backing up local data. The primary focus of this system is the simple selection of data to be backed up and the security of said data.
It is also very portable because it relies on common Linux tools and its behavior is controlled entirely by a single and simple configuration file.
Usage:
./nvnetbackup [-p|-m|-u|-b]
nvnetbackup -p
prepares a drive to be used for NVnetbackup
nvnetbackup -m
mounts all defined shares
nvnetbackup -u
unmounts all defined shares
nvnetbackup -b
runs a backup
Setup:
Setup is fairly easy, all you need to do (as root) is this:
mkdir /etc/NVnetbackup
gzip -d -c NVnetbackup-release.tar.gz | tar xvf -
cd ./NVnetbackup
cp -R * /etc/NVnetbackup
Where "xx" is the version number. After you have extracted all the files in the tarball to /etc/netbackup, then edit the backup.conf file to your liking.
Enhancements:
- This release adds more documentation to the FAQ included in the HELP file.
- This addresses the issues with NVnetbackup not being able to backup files located on shares hosted on Windows machines that are locked or in use.
- This release details the requirements for using Microsofts "Volume Shadow Service" in conjunction with NVnetbackup in order to get around this.
<<lessNVnetbackup can also be used for backing up local data. The primary focus of this system is the simple selection of data to be backed up and the security of said data.
It is also very portable because it relies on common Linux tools and its behavior is controlled entirely by a single and simple configuration file.
Usage:
./nvnetbackup [-p|-m|-u|-b]
nvnetbackup -p
prepares a drive to be used for NVnetbackup
nvnetbackup -m
mounts all defined shares
nvnetbackup -u
unmounts all defined shares
nvnetbackup -b
runs a backup
Setup:
Setup is fairly easy, all you need to do (as root) is this:
mkdir /etc/NVnetbackup
gzip -d -c NVnetbackup-release.tar.gz | tar xvf -
cd ./NVnetbackup
cp -R * /etc/NVnetbackup
Where "xx" is the version number. After you have extracted all the files in the tarball to /etc/netbackup, then edit the backup.conf file to your liking.
Enhancements:
- This release adds more documentation to the FAQ included in the HELP file.
- This addresses the issues with NVnetbackup not being able to backup files located on shares hosted on Windows machines that are locked or in use.
- This release details the requirements for using Microsofts "Volume Shadow Service" in conjunction with NVnetbackup in order to get around this.
Download (0.010MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1151 downloads
Midnight Backup 0.6
Midnight Backup is a flexable framework composed of plugins that will allow system administrators to develop backup systems. more>>
Midnight Backup is a flexable framework composed of plugins that will allow system administrators to develop sophisticated backup systems.
It will be cross-network and cross-platform, allowing clients to submit data to servers for backup purposes. It will have a high level of admin control though filters and a pervasive "plug-in" architecture. Midnight Backup will be under an Open Source/Free Software license.
Main features:
- Network Oriented
- Portability
- Fully Modular and Extensible Design
- Easy Add-On Creation
- "Bare Metal" Recovery through creation of custom boot disks
- Authentication and Encryption between clients and servers
- Bandwidth Usage Optimization for low-bandwidth connections
- The ability for users to recover their own data without admin intervention
- Multiple output media support (CDrom/CDrw, ftape, disk, etc)
Enhancements:
- After a year and a half hiatus, here is version 0.6 of mbackup. This has been completely rewritten in c++. See README and doc/object-description.txt for more info.
<<lessIt will be cross-network and cross-platform, allowing clients to submit data to servers for backup purposes. It will have a high level of admin control though filters and a pervasive "plug-in" architecture. Midnight Backup will be under an Open Source/Free Software license.
Main features:
- Network Oriented
- Portability
- Fully Modular and Extensible Design
- Easy Add-On Creation
- "Bare Metal" Recovery through creation of custom boot disks
- Authentication and Encryption between clients and servers
- Bandwidth Usage Optimization for low-bandwidth connections
- The ability for users to recover their own data without admin intervention
- Multiple output media support (CDrom/CDrw, ftape, disk, etc)
Enhancements:
- After a year and a half hiatus, here is version 0.6 of mbackup. This has been completely rewritten in c++. See README and doc/object-description.txt for more info.
Download (0.020MB)
Added: 2007-06-11 License: Open Software License Price:
865 downloads
DVD Backup 0.4.0
DVD Backup is an unix shell script providing functionality for backuping files and databases (PostgreSQL, MySQL) on DVD discs. more>>
DVD Backup is an unix shell script providing functionality for backuping files and databases (PostgreSQL, MySQL) on DVD discs.
DVD Backup supports multisession and incremental backups. Mail notification is also supported.
Enhancements:
- This release sends email notifications using netcat instead of telnet.
- There are more details about communication with the SMTP server, and configurable excluded files patterns.
<<lessDVD Backup supports multisession and incremental backups. Mail notification is also supported.
Enhancements:
- This release sends email notifications using netcat instead of telnet.
- There are more details about communication with the SMTP server, and configurable excluded files patterns.
Download (0.003MB)
Added: 2006-03-21 License: GPL (GNU General Public License) Price:
1316 downloads
Hosting Backup 0.4.0
Hosting Backup provides a set of scripts for backing up your hosted Web sites. more>>
Hosting Backup provides a set of scripts for backing up your hosted Web sites.
Hosting Backup is a set if PHP command line scripts that provides an easy way to backup hosted Web sites to your local computer. It works with sites hosted on Linux servers with MySQL databases using FTP.
HostingBackup uses lftp (http://lftp.yar.ru/) to download all the files from your remote server.
HostingBackup uses rc4 encryption, so you do not need to have PHP compiled with mcrypt.
HostingBackup is tested on Linux local computer with PHP 4.3.x and lftp 3.0.x.
The remote component will manage some operations like optimization and dump of MySQL databases.
The local component will manage the execution of backups and other utilities like the generation of crypted passwords and the automatic installation of the remote component.
To allow an easy way to backup all hosted MySQL databases we store the main password for the account directly on the remote server, crypted with rc4.
When we call the dump script we pass the decrypt key.
To catch the login data an hacker should read the crypted password written on the server and intercept the key on the net.
Enhancements:
- Add: "--comments=false" to mysqldump
- Add: "set FOREIGN_KEY_CHECKS=0;" to mysqldump
- Add: "--add-drop-table" to mysqldump
<<lessHosting Backup is a set if PHP command line scripts that provides an easy way to backup hosted Web sites to your local computer. It works with sites hosted on Linux servers with MySQL databases using FTP.
HostingBackup uses lftp (http://lftp.yar.ru/) to download all the files from your remote server.
HostingBackup uses rc4 encryption, so you do not need to have PHP compiled with mcrypt.
HostingBackup is tested on Linux local computer with PHP 4.3.x and lftp 3.0.x.
The remote component will manage some operations like optimization and dump of MySQL databases.
The local component will manage the execution of backups and other utilities like the generation of crypted passwords and the automatic installation of the remote component.
To allow an easy way to backup all hosted MySQL databases we store the main password for the account directly on the remote server, crypted with rc4.
When we call the dump script we pass the decrypt key.
To catch the login data an hacker should read the crypted password written on the server and intercept the key on the net.
Enhancements:
- Add: "--comments=false" to mysqldump
- Add: "set FOREIGN_KEY_CHECKS=0;" to mysqldump
- Add: "--add-drop-table" to mysqldump
Download (MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
962 downloads
dobackup.pl 4.35
dobackup.pl is a flexible Perl script to handle unattended incremental backups of multiple servers. more>>
dobackup.pl is a flexible Perl script to handle unattended incremental backups of multiple servers.
It handles multiple media sets with automatic media preparation and rotation, configurable what-to-backup, global per-host exclusion patterns, and user settable dont-back-this-up metafiles.
dobackup.pl goal is zero-maintenance, nothing to do except change the media when told (if that, even!)
Getting started:
Media preparation:
Each unit of media used for dobackup must be uniquely identifiable. To this end, dobackup looks for a file named "MEDIAUNIT= " on the disk (in the mount-point really) before starting the backup. The reasons are two-fold: 1) to ensure that a media unit is really intended for backups, so you dont wipe out something important by accident, and 2) to verify that proper rotation of media units has occurred.
To prepare each unit, format and mount it as usual, then:
# touch MEDIAUNIT=< tag >
# chmod 000 MEDIAUNIT=< tag >
where < tag > is equal to the unit name, e.g. "JAZ01".
If you have 4 JAZ cartridges, use names like JAZ01, JAZ02, JAZ03, JAZ04, then put each of these names in /etc/dobackup.conf, in the appropriate section. The names are really arbitrary. You could call the units "Larry", "Curly", and "Moe", if you wanted to, but they must be listed in the config file in the order in which they will be rotated. For example:
[MediaSet=JazSetOne]
Units=<<less
It handles multiple media sets with automatic media preparation and rotation, configurable what-to-backup, global per-host exclusion patterns, and user settable dont-back-this-up metafiles.
dobackup.pl goal is zero-maintenance, nothing to do except change the media when told (if that, even!)
Getting started:
Media preparation:
Each unit of media used for dobackup must be uniquely identifiable. To this end, dobackup looks for a file named "MEDIAUNIT= " on the disk (in the mount-point really) before starting the backup. The reasons are two-fold: 1) to ensure that a media unit is really intended for backups, so you dont wipe out something important by accident, and 2) to verify that proper rotation of media units has occurred.
To prepare each unit, format and mount it as usual, then:
# touch MEDIAUNIT=< tag >
# chmod 000 MEDIAUNIT=< tag >
where < tag > is equal to the unit name, e.g. "JAZ01".
If you have 4 JAZ cartridges, use names like JAZ01, JAZ02, JAZ03, JAZ04, then put each of these names in /etc/dobackup.conf, in the appropriate section. The names are really arbitrary. You could call the units "Larry", "Curly", and "Moe", if you wanted to, but they must be listed in the config file in the order in which they will be rotated. For example:
[MediaSet=JazSetOne]
Units=<<less
Download (0.032MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1325 downloads
Simple Backup 1.0
Simple Backup is a shell script to create basic backups using tar, grep, sed, and bash. more>>
Simple Backup is a shell script to create basic backups using tar, grep, sed, and bash.
Simple Backup works by using a file that contains the folders to be backed up and a file that contains expressions to exclude certain folders/files.
Usage: backup.sh < backuplist > < excludelist >
Free to use at your own risk. The author cant be held responsible for any side effects
of using this software. Use at your own risk.
<<lessSimple Backup works by using a file that contains the folders to be backed up and a file that contains expressions to exclude certain folders/files.
Usage: backup.sh < backuplist > < excludelist >
Free to use at your own risk. The author cant be held responsible for any side effects
of using this software. Use at your own risk.
Download (0.003MB)
Added: 2006-07-26 License: Freeware Price:
1186 downloads
Lazy Backup 0.0.10
Lazy Backup project is intended to be so easy even lazy people will do their backups. more>>
Lazy Backup project is intended to be so easy even lazy people will do their backups.
Everyone is encouraged to make regular backups but how many of us actually do? Not only can it take a long time, but it can be complicated with a bunch of steps. Lazybackup is all about making it easy so that people will actually do it.
Current implementation
Started as a script to make my own backups easier there is a ready to use perl application available for download via sourceforge. It is works from the command line, and prompts users to do things like change disks. It should be a lot easier to use than the various steps that would need to be used to backup manually.
Technologies
Currently used
dar - disk archiver as the archive engine
dvd+rw-tools - dvd burning tools
perl - script engine
Planned
parchive - to recover from lost or damaged disks
GTK+/ GNOME - Optional super easy front end
curses - another optional easy to use front-end
c++ - Many of the programs lazybackup depends on are written in c++, and have libraries written in c++ that could make lazybackup more streamlined if used instead of invoking the command line programs.
Goals
Lazybackup has the ambitious goal of being the defacto backup tool of the gnome desktop when GNU/Linux becomes a mainstream OS of non technical people. Lazybackup also aims to appeal to admins via advanced scritability, and full functionality via command line, and library interfaces.
<<lessEveryone is encouraged to make regular backups but how many of us actually do? Not only can it take a long time, but it can be complicated with a bunch of steps. Lazybackup is all about making it easy so that people will actually do it.
Current implementation
Started as a script to make my own backups easier there is a ready to use perl application available for download via sourceforge. It is works from the command line, and prompts users to do things like change disks. It should be a lot easier to use than the various steps that would need to be used to backup manually.
Technologies
Currently used
dar - disk archiver as the archive engine
dvd+rw-tools - dvd burning tools
perl - script engine
Planned
parchive - to recover from lost or damaged disks
GTK+/ GNOME - Optional super easy front end
curses - another optional easy to use front-end
c++ - Many of the programs lazybackup depends on are written in c++, and have libraries written in c++ that could make lazybackup more streamlined if used instead of invoking the command line programs.
Goals
Lazybackup has the ambitious goal of being the defacto backup tool of the gnome desktop when GNU/Linux becomes a mainstream OS of non technical people. Lazybackup also aims to appeal to admins via advanced scritability, and full functionality via command line, and library interfaces.
Download (0.019MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1286 downloads
aB Backup Tools 0.3
aB Backup Tools is a toolset for creating and maintaining backups and recoveries of important data on your system. more>>
aB Backup Tools is a toolset for creating and maintaining backups and recoveries of important data on your system.
Enhancements:
- memory leaks fixed,
- options optimized,
- some look changes.
<<lessEnhancements:
- memory leaks fixed,
- options optimized,
- some look changes.
Download (0.28MB)
Added: 2005-05-27 License: GPL (GNU General Public License) Price:
1613 downloads
backup.py 1.0.2
backup.py is a simple way to do diff and complete backups for your servers. more>>
backup.py is a simple way to do diff and complete backups for your servers.
Some days ago im looking for a simple way to do daily backups in my server. I found a lot of software BUT is too simple OR too complete for my needs.
So i decide to wrote a small python class to do that. And here is backup.py: it takes a list of directories and do diff backups on there.
At the end it send a mail report. Nothing more and nothing less.
Have fun, its GPLed software !
Enhancements:
- This release added support for filename mask matching.
- Error logs are now sent in report e-mails.
- Some bugs were fixed.
<<lessSome days ago im looking for a simple way to do daily backups in my server. I found a lot of software BUT is too simple OR too complete for my needs.
So i decide to wrote a small python class to do that. And here is backup.py: it takes a list of directories and do diff backups on there.
At the end it send a mail report. Nothing more and nothing less.
Have fun, its GPLed software !
Enhancements:
- This release added support for filename mask matching.
- Error logs are now sent in report e-mails.
- Some bugs were fixed.
Download (0.004MB)
Added: 2006-03-09 License: GPL (GNU General Public License) Price:
1324 downloads
ESR Backup 0.99b R1
ESR Backup is a simple easy to use backup system for UNIX and Linux. more>>
ESR Backup is a simple easy to use backup system for UNIX and Linux. It provides a simple, easy to configure solution for file system integrity.
ESR Backup project works on an automatic 2 week cycle to assure you have an easy to recover system.
Main features:
- Simple and easy to configure
- Automatic 2 Week File Rotation Management
- Remote Storage via FTP
- Local File Storage
- Encryption with 448 bit Keys
- Completely FREE to use
ESR Backup takes the complication out of daily back ups, it does all the work for you so you can concentrate on more interesting things. ESR Backup automatically performs regular Full and Incremental backups on the following schedule
Monday - Full Backup
Tuesday - Incremental Backup
Wednesday - Incremental Backup
Thursday - Incremental Backup
Friday - Incremental Backup
Saturday - Incremental Backup
Sunday - Full Backup
It maintains 3 directories , current-week, last-week, and weekly-archives. After the full backup is performed on Sunday, it automatically rotates the last full backup from the last-week directory to the weekly-archive for safe keeping. It then removes the other archives because they are no longer needed.
It automatically rotates all archives from the current-week directory to the last-week directory. The current-week directory is then ready to hold next weeks backups. You always maintain 2 complete sets of backups. And all your old archives are ready to be stored on tape or CD or handled any way you choose.
ESR Backup provides you with remote archive storage via FTP so you can maintain current backup sets off site easily. If you dont have access to a remote FTP server , or do not wish to use one. ESR Backup can store archives on the local file system in a directory you choose. You can also encrypt your archives with a 448 bit encryption key.
<<lessESR Backup project works on an automatic 2 week cycle to assure you have an easy to recover system.
Main features:
- Simple and easy to configure
- Automatic 2 Week File Rotation Management
- Remote Storage via FTP
- Local File Storage
- Encryption with 448 bit Keys
- Completely FREE to use
ESR Backup takes the complication out of daily back ups, it does all the work for you so you can concentrate on more interesting things. ESR Backup automatically performs regular Full and Incremental backups on the following schedule
Monday - Full Backup
Tuesday - Incremental Backup
Wednesday - Incremental Backup
Thursday - Incremental Backup
Friday - Incremental Backup
Saturday - Incremental Backup
Sunday - Full Backup
It maintains 3 directories , current-week, last-week, and weekly-archives. After the full backup is performed on Sunday, it automatically rotates the last full backup from the last-week directory to the weekly-archive for safe keeping. It then removes the other archives because they are no longer needed.
It automatically rotates all archives from the current-week directory to the last-week directory. The current-week directory is then ready to hold next weeks backups. You always maintain 2 complete sets of backups. And all your old archives are ready to be stored on tape or CD or handled any way you choose.
ESR Backup provides you with remote archive storage via FTP so you can maintain current backup sets off site easily. If you dont have access to a remote FTP server , or do not wish to use one. ESR Backup can store archives on the local file system in a directory you choose. You can also encrypt your archives with a 448 bit encryption key.
Download (0.035MB)
Added: 2006-03-24 License: Artistic License Price:
1318 downloads
Cedar Backup 2.13.2
Cedar Backup is a Python package that supports backups of files on local and remote hosts. more>>
Cedar Backup is a Python package that supports backups of files on local and remote hosts to CD-R or CD-RW media over a secure network connection. Cedar Backup project also includes extensions that understand how to back up MySQL databases and Subversion repositories, and it can be easily extended to support other data sources, as well.
The package is focused around weekly backups to a single disc, with the expectation that the disc will be changed or overwritten at the beginning of each week. If your hardware is new enough, Cedar Backup can write multisession discs, allowing you to add to a disc in a daily fashion. Directories are backed up using tar and may be compressed using gzip or bzip2.
There are many different backup software implementations out there in the free-and open-source world. Cedar Backup aims to fill a niche: it aims to be a good fit for people who need to back up a limited amount of important data to CD-R or CD-RW on a regular basis.
Cedar Backup isnt for you if you want to back up your MP3 collection every night, or if you want to back up a few hundred machines. However, if you administer a small set machines and you want to run daily incremental backups for things like system configuration, current email, small web sites, or a CVS repository, then Cedar Backup is probably worth your time.
Cedar Backup has been developed on a Debian GNU/Linux system and is currently supported only on Debian and other Linux systems. However, since it is written in portable Python, it should in theory run without too many problems on other UNIX-like systems which have a working version of the cdrecord and mkisofs utilities.
Enhancements:
- Invalid regular expressions in the configuration are now handled better.
- Other minor documentation cleanups were done.
<<lessThe package is focused around weekly backups to a single disc, with the expectation that the disc will be changed or overwritten at the beginning of each week. If your hardware is new enough, Cedar Backup can write multisession discs, allowing you to add to a disc in a daily fashion. Directories are backed up using tar and may be compressed using gzip or bzip2.
There are many different backup software implementations out there in the free-and open-source world. Cedar Backup aims to fill a niche: it aims to be a good fit for people who need to back up a limited amount of important data to CD-R or CD-RW on a regular basis.
Cedar Backup isnt for you if you want to back up your MP3 collection every night, or if you want to back up a few hundred machines. However, if you administer a small set machines and you want to run daily incremental backups for things like system configuration, current email, small web sites, or a CVS repository, then Cedar Backup is probably worth your time.
Cedar Backup has been developed on a Debian GNU/Linux system and is currently supported only on Debian and other Linux systems. However, since it is written in portable Python, it should in theory run without too many problems on other UNIX-like systems which have a working version of the cdrecord and mkisofs utilities.
Enhancements:
- Invalid regular expressions in the configuration are now handled better.
- Other minor documentation cleanups were done.
Download (2.0MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
837 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above to backup search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed