To manually create a Windows Direct folder, run the following commands from the UNIX shell prompt, replacing DIRNAME with the desired directory name:
mkdir /u2/exports/DIRNAME chmod 777 /u2/exports/DIRNAME
To manually create a Windows Direct folder, run the following commands from the UNIX shell prompt, replacing DIRNAME with the desired directory name:
mkdir /u2/exports/DIRNAME chmod 777 /u2/exports/DIRNAME
To restore a file or folder from ABS using CrashPlan:
The mappings of IP addresses to “lp” names are contained in the /etc/hosts configuration file. You may modify the IP addresses for entries in the /etc/hosts files in a couple of different ways:
vim /etc/hosts
To view a step-by-step screencast of this process:
To change the printer’s IP address from the GUI interface:
If your system is configured to perform a tape backup as part of the standard snapshot script, simply run the following command:
at now /u2/UTILS/bin/snapsave_linux.sh
If your system is configured to perform a local and/or remote rsync backup as part of the standard snapshot script, but you need to run a tape backup only, run the following command:
[root@eclipse-server ~]# /u2/UTILS/bin/snapsave_linux.sh Unmounting previous snapshots Suspending database Performing snapshots Releasing database suspension Run tape backup now? [NO/y]y Run local rsync now? [NO/y] n Send email report now? [NO/y] y [root@eclipse-server ~]#
This script will suspend your database, take snapshots of the database files and create a full tape backup. You will not see any output in your console session, because the script creates a separate log file under /tmp/snapsave.log.
If you have already created the snapshot filesystem, but you want to perform a separate manual tape backup:
tar -cvzpf /dev/st0 --totals -C / ./etc -C /snap ./u2
If there are no snapshots present, but no users are on the system and you want to perform a manual tape backup:
tar -cvzpf /dev/st0 --totals -C / ./etc -C / ./u2
If you are just interested in testing the readability or listing the contents of a tape, you may perform a table of contents listing (aka readback):
tar -tzf /dev/st0
To restore a single file (CONTROL) to a temporary directory (/esupport/restore):
mkdir -p /esupport/restore cd /esupport/restore tar -xzvf /dev/st0 ./u2/eclipse/CONTROL
To restore an entire directory (/u2/eclipse) to it’s original location (/u2/eclipse) for a full system recovery:
cd / tar -xzvf /dev/st0 ./u2/eclipse