Quick Review: Boxee Box
December 27, 2011 – 12:22 am | 3 Comments

Some of the technical issues with Boxee Box could have been fixed if the dev team was paying more attention to addressing the bugs rather than adding “features” of dubious value. In the final analysis, for the price and ease of use, Boxee Box is the best in its class and price range. You just need to be mindful of its limitations and buy it in hope of future improvements to its usability.

Read the full story »
Networking

Unix and Linux network configuration. Multiple network interfaces. Bridged NICs. High-availability network configurations.

Applications

Reviews of latest Unix and Linux software. Helpful tips for application support admins. Automating application support.

Data

Disk partitioning, filesystems, directories, and files. Volume management, logical volumes, HA filesystems. Backups and disaster recovery.

Monitoring

Distributed server monitoring. Server performance and capacity planning. Monitoring applications, network status and user activity.

Commands & Shells

Cool Unix shell commands and options. Command-line tools and application. Things every Unix sysadmin needs to know.

Home » Archive by Category

Articles in Backups

Upgrading from Vista to Windows 7
January 27, 2010 – 10:45 pm | One Comment
Upgrading from Vista to Windows 7

Recently I upgraded a client’s Vista computer (Toshiba Qosmio, 4Gb, Intel Core Duo P7350, 7200-RPM 200-Gb disk) from Vista Ultimate 64-bit to Windows 7 Ultimate 64-bit. Being a Unix sysadmin this is not something I usually do. How did the experience compare to upgrading HP-UX, Solaris or SLES? In a nutshell: I’d rather walk around all day in wet underwear than attempt to upgrade Vista ever again.

NetBackup Command Guide
December 27, 2009 – 7:17 pm | 2 Comments
NetBackup Command Guide

NetBackup is an enterprise-level distributed backup and recovery application. The environment consists of the master server, media server, storage library, networking hardware, and client agents. NetBackup supports a wide variety of Unix, Linux, VMS, and Windows systems. The original backup solution was developed by Control Data Corp., later acquired by Openvision, which gave the product its “NetBackup” name. NetBackup was then bought by Veritas and is currently owned and supported (poorly) by Symantec.

Copying Data: Are We There Yet?
December 27, 2009 – 7:12 pm | One Comment
Copying Data: Are We There Yet?

I am sure this will sound familiar: you are copying a large amount of data – either locally or over the network – and you are wondering how long it will take and if there is a way to make things go faster.You may be surprised, but it does matter what type of files you are copying: 1Gb-worth of many small files will take considerably longer to copy than two 500Mb files. The hardware you are using is an important consideration, but it’s not the only factor limiting data transfer speed.

Solaris boot disk copy using dd
November 22, 2005 – 6:40 pm | No Comment
Solaris boot disk copy using dd

The following Korn shell script will make a bootable copy of the boot disk on a Solaris system. The script uses dd and requires that the source disk and destination disk have the same geometry.

#!/bin/ksh
 
#### …

Command-line backup methods
November 22, 2005 – 6:01 pm | No Comment
Command-line backup methods

The following is a brief overview of standard Unix comman-line utilities used for data backup on Solaris systems. Most of the information below is also applicable to other unixoid systems.
Common backup/copy methods:
tar | gzip
Basic syntax …

Working with ISO images on Solaris
November 22, 2005 – 4:57 pm | No Comment
Working with ISO images on Solaris

The following two commands will take all data in /home/neal, copy it to the ISO file, and burn the ISO file to a recordable CD.

mkisofs -l -L -r -o /local/mycdromfile2.iso /home/neal
cdrecord -v /local/mycdromfile2.iso

The resulting …

NetBackup statistics, Part II
November 21, 2005 – 5:04 pm | No Comment
NetBackup statistics, Part II

This script uses the output of the script in the previous example to calculate yearly backup load for each Veritas NetBackup client.

#!/bin/ksh
 
WORKDIR=/var/adm/bin/bpstat
BACKUPS=$WORKDIR/backups
STATDIR=$WORKDIR/stats
PROCESS=1
gzip="/usr/local/bin/gzip"
 
if [ ! -d $WORKDIR ] || [ ! -d $BACKUPS ] || [ …

NetBackup statistics, Part I
November 21, 2005 – 4:59 pm | One Comment
NetBackup statistics, Part I

The following script will calculate total size of data backups for each Veritas NetBackup client over the past week (or as defined by the “daysago” variable in the script). The final output will be uploaded …

Using rsync to copy files
November 21, 2005 – 4:00 pm | No Comment
Using rsync to copy files

In the following example we need to make sure that /export/home on server host2 looks exactly like /export/home on host1. Thus, our SOURCE is host1:/export/home and our TARGET is host2:/export/home
There are two ways of using …

Copying directories using tar and rsync
November 19, 2005 – 11:20 pm | No Comment
Copying directories using tar and rsync

In this example we use the tar command to copy the contents of the /export/home directory to /temphome. This particular syntax forgoes the creation of an actual tarball file. This can be useful if you …

Using NetBackup to restore boot disk
November 19, 2005 – 11:13 pm | No Comment
Using NetBackup to restore boot disk

enable “Rename hard links”
disable “Rename soft links”
if root of destination drive is mounted as /destination/ then select “Restore to alternate path: from / to /destination/ , Restore search path
This is the alternate path for everything: …

Create tarball
November 19, 2005 – 10:42 pm | No Comment
Create tarball

The Unix tar command creates an archive of files and directories while preserving directory structure, file permissions and ownership information. This command is ideally suited for creating backups of most types of data. Many open-source …

Unix Files Transferred To CD
November 19, 2005 – 10:40 pm | No Comment
Unix Files Transferred To CD

In our example we were requested to archive a 741 mb directory to CD. The source data resided on a Unix data server.
1. we copied the source data to a …

Copy directory structure and files with cpio
November 19, 2005 – 10:38 pm | No Comment
Copy directory structure and files with cpio

find /full_source_path -depth -print | cpio -pudm /full_target_path
Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

Create TAR and pipe through gzip
November 19, 2005 – 10:36 pm | One Comment
Create TAR and pipe through gzip

tar cvf – . | gzip > target.tar.gz
Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

RSync remote copy
November 19, 2005 – 10:35 pm | No Comment

1) rsync needs to be installed on source and destination nodes
2) both nodes need to be each other’s /etc/hosts
3) rsync needs to be in the basic PATH for default user’s (root’s shell); create a soft …