Procedures for creating TAR files and writing them to tape
# Change directories (cd) to the desired directory from which tarring will be done. cd /home/… (whatever) # To tar all the files in the current directory (.) and sub-directories # to the tape using medium density (m) and no rewind (n) tar -cvf /dev/rmt/0mn . # To tar all the files in the current… Leer más »