Posted by: Chyne on: February 21, 2008
1. Ftp the .tar file to the /tmp
2. Access to the /tmp directory
# cd /tmp
3. Check the existence of the .tar file after the transfer
# tar -tvf testing.tar
4. Extract or unzip the .tar file
# tar -xvf testing.tar5. Access to the destination folder
# cd /newdir6. Copy the existing file as the backup file with the new name
# cp config.xml config.xml0802217. Copy [...]