- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Taking Back up of files in the network
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 05:30 PM
07-11-2004 05:30 PM
I need to Take Back up of files in the network. Iam trying to write some scripts for that, but i find it difficult to do that.
Can any one tell me how to achieve this.[If you guys have that script please send me].
Shetty.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 05:42 PM
07-11-2004 05:42 PM
Re: Taking Back up of files in the network
If you're talking about a single file on a given Windows box, you can use 'smbclient' to copy the file to the Linux server, then do your backup as you see fit.
If you want to do an entire share, you can mount it locally, then do your backup.
If you want to back up other Linux/Unix boxes, then it's time for either NFS or host-equivalency so you can do backups those ways.
If you just want to make copies of files to your Linux server, then that's great, and easy. If you want to do a real backup to a tape, then that's also pretty easy, but differs depending on what your wanting to backup. If you want to create CD's or DVD's with rescue information, there's more options available again!
Some more details so we can give definate examples for your environment would help us immensly. :)
It's a fun world.. really! :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 05:54 PM
07-11-2004 05:54 PM
Re: Taking Back up of files in the network
I don't have any NFS server in my environment. I want to take backup of files(linux)on to my system(linux).
I can use ftp to transfer files,but i want to use script , so that i can put it in cron file.Everytime using Ftp is tedious, so iam trying to write one script which should automatically take backup.
Shetty.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2004 02:19 AM - last edited on 09-16-2024 02:21 AM by support_s
07-12-2004 02:19 AM - last edited on 09-16-2024 02:21 AM by support_s
Re: Taking Back up of files in the network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2004 03:05 AM
07-12-2004 03:05 AM
Solutionfor few files backup you can use combination of cron and ftp
23 59 * * * /usr/bin/ftp /usr/bin/ftp -i -n -v < mybackup.sh
cat mybackup.sh
open 10.32.113.177 #backup destination
user ford abcd #abcd is password
hash
prompt off
cd /dir
mput file_you_want_to_backup
bye
at midnight you have your backup in /dir
br Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2004 03:13 AM
07-12-2004 03:13 AM
Re: Taking Back up of files in the network
If you want to make a network backup of your /etc directory for example. Go on your server to backup. And do, in root, something like:
# f=etc-`date +"%Y%m%d-%H%M"`.tar.gz
# tar zcf - | ssh user@backuphost cat \> /backupdir/$f
It is possible to automate this by using pair keys autentication rather than password. Ssh keys (generated via ssh-keygen) allow you to do a relatively secure autentication without password.
There are a lot of other possibilities of course. This one is simple to set up and secure enough to be suitable for most of the network environments.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2004 01:58 AM - last edited on 09-16-2024 02:21 AM by support_s
07-13-2004 01:58 AM - last edited on 09-16-2024 02:21 AM by support_s
Re: Taking Back up of files in the network
backups available for Linux.
Amanda is one of the most frequently referernced
ones. It handles networks large and small.
I also use ibackup which does a configuration
backup of /etc and few other features.
- Tags:
- memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2004 11:44 PM
07-14-2004 11:44 PM
Re: Taking Back up of files in the network
Thank you very much for you suggestions.
Now iam able to take backup using your ideas.
Shetty.