This script, when configured properly, will back up your windows95 registry. Problems with windows95 can be fixed sometimes by restoring a corrupted registry. You can automatically backup evertime you boot Linux, if you place a command in your .bash_profile file. You might want to backup your browser bookmark files also.
Donald Harter Jr. #!/bin/sh # # This script will backup your windows 95 registry. # If you ever have problems with windows95, restoring the registry # might fix the problem. # By using this script you might not have to reinstall all your software. # BASE_DIR is the directory where you want the tar.gz archive to be written. # WIN_PATH is the base path of your windows 95 partition in the /etc/fstab file. # Change these to suit your own needs. # written by Donald Harter Jr. # BASE_DIR=$HOME WIN_PATH=/dosc # # REGISTRY_STEM=registry_`date +%m_%d_%Y` tar -c -f /tmp/$REGISTRY_STEM.tar --files-from=/dev/null # some of these files may not needed #tar -rPf /tmp/$REGISTRY_STEM.tar file_to_backup tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/windows/system.dat tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/windows/*.da0 tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/windows/user.dat tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/windows/*.ini tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/autoexec.bat tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/*.sys tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/windows/command.com tar -rPf /tmp/$REGISTRY_STEM.tar $WIN_PATH/Program\ Files/Netscape/Users/your_name/bookmark.htm gzip /tmp/$REGISTRY_STEM.tar mv /tmp/$REGISTRY_STEM.tar.gz $BASE_DIR/$REGISTRY_STEM.tar.gz echo "To restore your win95 registry type:" echo "tar -zxvf $BASE_DIR/$REGISTRY_STEM.tar.gz " -- E-mail the word "unsubscribe" to [EMAIL PROTECTED] TO UNSUBSCRIBE FROM THIS MAILING LIST. Trouble? E-mail to [EMAIL PROTECTED] .