Unix Tech Tips
3. Backup commands – ufsdump , tar , cpio
ufsdump
1. Used for complete file system backup .
2. It copies every thing from regular files in a file system to special character and block device files.
2. It can work on mounted or unmounted file systems.
Tar:
1. Used for single or multiple files backup .
2. Can’t backup special character & block device files .
3. Works only on mounted file system.
Identifying the tape device
dmesg | grep st
Checking the status of the tape drive
mt -f /dev/rmt/0 status
Tags: Tips

Posts
May 24th, 2010 at 9:45 am
This will also do it.
tr -d ‘15′ new_file_name
May 24th, 2010 at 9:51 am
My prior post has the wrong syntax. See below:
Removing ^M from UNIX text files
tr -d ‘15′ new_file_name