belick Posted November 28, 2007 Share Posted November 28, 2007 Hi, I am not sure if this is the right place to ask for help but I will try... I am tring to make a file that can be run by a cronjob on my linux. The file suppose to make a tar file for a specific folder and protect it with a password, then to upload it into FTP server... Any help will be thanksful, Thanks. Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/ Share on other sites More sharing options...
trq Posted November 28, 2007 Share Posted November 28, 2007 Where exactly are you stuck? Or do you want us to write it? Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-400730 Share on other sites More sharing options...
belick Posted November 28, 2007 Author Share Posted November 28, 2007 anything to start with... Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-400737 Share on other sites More sharing options...
trq Posted November 28, 2007 Share Posted November 28, 2007 To tar a directory.... tar -cvf file.tar directory gzip file.tar To encrypt the new file using a password (ps: Ive never attempted this with anything other than text files). mcrypt file.tar.gz To ftp the encrypted file to a remote server. ftp put file.tar.gz.nc hostname Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-400742 Share on other sites More sharing options...
belick Posted November 28, 2007 Author Share Posted November 28, 2007 Thanks, do I put it in a .pl file? Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-400755 Share on other sites More sharing options...
trq Posted November 28, 2007 Share Posted November 28, 2007 Thanks, do I put it in a .pl file? If you write your script in perl. The examples I posted above will fit easily into a bash script. Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-401064 Share on other sites More sharing options...
belick Posted November 29, 2007 Author Share Posted November 29, 2007 can you show example of bash script? Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-401779 Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 #!/usr/bash tar -cvf file.tar directory gzip file.tar mcrypt file.tar.gz ftp put file.tar.gz.nc hostname Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-401793 Share on other sites More sharing options...
steviewdr Posted November 29, 2007 Share Posted November 29, 2007 To be efficient: #To quickly tar and gzip tar -czvf file.gz directory #To quickly untar and ungzip tar -xzvf file.gz Summary: just throw in a z. -steve Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-402010 Share on other sites More sharing options...
belick Posted January 16, 2008 Author Share Posted January 16, 2008 Questions: #!/usr/bash tar -cvf file.tar directory gzip file.tar do I must go with zip too? mcrypt file.tar.gz where do I place my pasword? I need to protect the file... ftp put file.tar.gz.nc hostname hostname means the ftp? where is the username and pass? Thanks Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-440535 Share on other sites More sharing options...
fert Posted January 16, 2008 Share Posted January 16, 2008 do I must go with zip too? that doesn't make a zip archive, it makes a gzip archive you could go with other formats such as bzip. Link to comment https://forums.phpfreaks.com/topic/79171-help-with-tar-backup-file/#findComment-440557 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.