A Qur'an As Unique As Your Linux
check this out on details about install zerk in ubuntu
"ada kulit atas, ada kulit bawah"
Fedora is a Linux-based operating system that showcases the latest in free and open source software. Fedora is always free for anyone to use, modify, and distribute. It is built by people across the globe who work together as a community: the Fedora Project. The Fedora Project is open and anyone is welcome to join.
The Fedora Project is out front for you, leading the advancement of free, open software and content.
Magnetic tape is a non-volatile storage medium consisting of a magnetic coating on a thin plastic strip. Nearly all recording tape is of this type, whether used for video, audio storage or general purpose digital data storage using a computer.
Linux (and other Unixish system) use mt
The default tape drive under Linux is /dev/st0 (first SCSI tape device name). You can read more about tape drives naming convention used under Linux here. Following paragraph summaries command you need to use control tape drive for backup/restore purpose.
# mt -f /dev/st0 rewind
Backup directory /www and /home with tar command (z - compressed):# tar -czf /dev/st0 /www /home
Find out what block you are at with mt command:
# mt -f /dev/st0 tell
# tar -tzf /dev/st0
Restore /www directory:# cd /
# mt -f /dev/st0 rewind
# tar -xzf /dev/st0 www
# mt -f /dev/st0 offline
# mt -f /dev/st0 status
# mt -f /dev/st0 erase
# mt -f /dev/nst0 eod
(b) Goto previous record:# mt -f /dev/nst0 bsfm 1
(c) Forward record:
# mt -f /dev/nst0 fsf 1