LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-20-2014, 06:02 PM   #31
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176

Quote:
Originally Posted by jamison20000e View Post
Could always compress the folder see if that goes although I don't think you will have access to the individual files unless the cloud service has the capability to look\take\add in .tar.gz or other .zip like formats? If so could store more for free.

Edit\add: google drive is grate I also email myself important files that sit in folders for years they give lots of storage there too could have lots of email accounts as well...
Thanks jamison. I used to do the email saving too. That could definitely be another safeguard. And learning about compressing files is next up in my Linux learning curriculum.
 
Old 03-20-2014, 06:10 PM   #32
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by NotionCommotion View Post
Given my current experience, I don't have much to say, and have to take the opportunity if I ever do
Hey, it's appeciated!
 
Old 03-20-2014, 06:17 PM   #33
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by suicidaleggroll View Post
Sure, there's no reason you have to back up everything. In the rsync command, just change the "/*" to "/home/greggbell" or whatever directory you want to back up (and get rid of the unnecessary excludes in the process).

You could also have your second computer back up to the first, and then the first backs up to the external drive. I didn't mention it in my post, but that 3.3TB I'm backing up includes the regular backups from 3 other computers, one Linux, one Windows, and one OSX. So the external hard drive actually holds the backups from four machines, plus two iPhones and an iPad, all of which is being regularly synced to the external drive using that one script I posted earlier (plus similar scripts or settings on the other machines to back them up to the server).

The overall layout is:
portable devices back up to machine A
machines A-C back up to the server (machine D)
machine D backs up to the external drive using the script I posted earlier

So everybody has a backup. Some have two, and the portable devices actually have three.
My needs are nowhere near as large as yours, but you make this backup thing seem do-able. (I took a screenshot of your post and put it on my desktop--hopefully I won't lose it because I'm not backed up yet!--so I can refer to it when I get down to this in earnest.) I'm still getting comfortable with the computer commands and all, but I may be back in a little while asking you to proof my rsync command. Thanks a lot.
 
Old 03-20-2014, 06:17 PM   #34
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
I actually was going to add this link as one option:
Code:
sudo tar -zcvpf gregory_Xxx_xx_2014.tar.gz  /home/gregory
It does not look like you can access within archives at dropbox as of yet or upload large folders: https://www.dropbox.com/help/49/en
like I'm sure many paid or your own server could http://docs.aws.amazon.com/AmazonClo...ssedFiles.html . . .
 
1 members found this post helpful.
Old 03-20-2014, 06:38 PM   #35
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by jamison20000e View Post
I actually was going to add this link as one option:
Code:
sudo tar -zcvpf gregory_Xxx_xx_2014.tar.gz  /home/gregory
It does not look like you can access within archives at dropbox as of yet or upload large folders: https://www.dropbox.com/help/49/en
like I'm sure many paid or your own server could http://docs.aws.amazon.com/AmazonClo...ssedFiles.html . . .
That's actually a little confusing, jamison. Dropbox has a 1GB max upload limit for folders and Drive has only 10MB!! https://support.google.com/drive/answer/37603 The gregory folder is 230MB. Maybe I need to switch to Dropbox. Thanks for the command. Will definitely experiment with it.
 
Old 03-20-2014, 06:41 PM   #36
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
That link made me laugh:
Quote:
Drawings: We’ve never seen anyone make a drawing that was too big (but that’s not a dare).

Other files: Files that you upload but don’t convert to a Google Docs, Sheets, or Slides format can be up to 1TB each.
http://www.linuxquestions.org/questi...ml#post5138385

Last edited by jamison20000e; 03-20-2014 at 07:07 PM.
 
1 members found this post helpful.
Old 03-21-2014, 01:36 AM   #37
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by jamison20000e View Post
Well, that (1 TB) makes more sense than 10 MB! (I didn't read that far.) So I wonder why my 'gregory' file didn't go through at 230 MB. Hmm.
 
Old 03-21-2014, 01:58 AM   #38
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
I thought I should put that in there in case you missed it, even tho the part in bold was the lol and looks like drive only lets archive up\downloads like dropbox (not actual use of them over the net.)

Last edited by jamison20000e; 03-21-2014 at 01:59 AM.
 
1 members found this post helpful.
  


Reply

Tags
back-up, home directory



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Can any one suggest a simple OS to run as guest OS balaqemu Linux - Newbie 8 09-22-2011 12:02 PM
Newbie trying to write a simple backup script to backup a single folder Nd for school stryker759a Linux - Newbie 2 09-16-2009 08:52 AM
Backup methodology: what do you suggest? lancherider Linux - General 2 07-01-2006 03:58 PM
Please suggest a simple, Easy-to-use blog vharishankar General 6 05-11-2005 02:45 AM
Real Simple Question neo.sarcastic Linux - Newbie 1 08-21-2003 10:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:33 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration