cancel
Showing results for 
Search instead for 
Did you mean: 

Another general question on Linux - backups

VileReynard
Hero
Posts: 12,616
Thanks: 582
Fixes: 20
Registered: ‎01-09-2007

Another general question on Linux - backups

Since my bad sector count is slowly, but steadily increasing I've finally bought a big external disk. Grin
Quote
SMART Attributes Data Structure revision number: 10
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAG    VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate    0x000f  114  099  006    Pre-fail  Always      -      65763668
  3 Spin_Up_Time            0x0003  100  100  000    Pre-fail  Always      -      0
  4 Start_Stop_Count        0x0032  096  096  020    Old_age  Always      -      4817
5 Reallocated_Sector_Ct  0x0033  100  100  036    Pre-fail  Always      -      15
  7 Seek_Error_Rate        0x000f  084  060  030    Pre-fail  Always      -      291811358
  9 Power_On_Hours          0x0032  074  074  000    Old_age  Always      -      23080
10 Spin_Retry_Count        0x0013  100  100  097    Pre-fail  Always      -      0
12 Power_Cycle_Count      0x0032  095  095  020    Old_age  Always      -      5551
184 End-to-End_Error        0x0032  100  100  099    Old_age  Always      -      0
187 Reported_Uncorrect      0x0032  100  100  000    Old_age  Always      -      0
188 Command_Timeout        0x0032  100  096  000    Old_age  Always      -      7711
189 High_Fly_Writes        0x003a  001  001  000    Old_age  Always      -      195
190 Airflow_Temperature_Cel 0x0022  066  059  045    Old_age  Always      -      34 (Min/Max 31/34)
194 Temperature_Celsius    0x0022  034  041  000    Old_age  Always      -      34 (0 11 0 0 0)
195 Hardware_ECC_Recovered  0x001a  043  033  000    Old_age  Always      -      65763668
197 Current_Pending_Sector  0x0012  100  100  000    Old_age  Always      -      0
198 Offline_Uncorrectable  0x0010  100  100  000    Old_age  Offline      -      0
199 UDMA_CRC_Error_Count    0x003e  200  200  000    Old_age  Always      -      0
240 Head_Flying_Hours      0x0000  100  253  000    Old_age  Offline      -      212098370000718
241 Total_LBAs_Written      0x0000  100  253  000    Old_age  Offline      -      1435651537
242 Total_LBAs_Read        0x0000  100  253  000    Old_age  Offline      -      1348295682

Yes - that's 15 bad sectors!
The rest of the household have suddenly realised they don't understand what backups are.
Panic!
So they want an easy understandable way to backup their data.
Unfortunately, there is one, possibly two Windows laptops, which have the data and system intermingled.
I was thinking that, purely for simplicity, I can boot both Linux and Windows from a Linux CD or USB
and use the dd command to write a disk or partition image to an external disk.
Will this work?
Most of the PC's only have USB2.  Sad

"In The Beginning Was The Word, And The Word Was Aardvark."

11 REPLIES 11
VileReynard
Hero
Posts: 12,616
Thanks: 582
Fixes: 20
Registered: ‎01-09-2007

Re: Another general question on Linux - backups

Addendum.  Cheesy
I should definitely use rsync and maybe even consider LVM.

"In The Beginning Was The Word, And The Word Was Aardvark."

picbits
Rising Star
Posts: 3,432
Thanks: 23
Registered: ‎18-01-2013

Re: Another general question on Linux - backups

I use rsync on mine with the CRC checksum comparison and run it as cron job every few hours.
PeeGee
Pro
Posts: 1,217
Thanks: 84
Fixes: 3
Registered: ‎05-04-2009

Re: Another general question on Linux - backups

Not entirely convinced by LVM, but...
You definitely need to make it as automatic as possible - a link on the desktop to initiate, for example, unless you can initiate it remotely. I use WOL and rsync (daemon) to "pull" data for backup daily, though it's Linux to Linux - additional copies are made during the day if the source is up and running. On a gigabit network, rsync finishes almost as soon as it has started Cheesy
Using Linux to store files can have a major advantage with rsync using hard links, as storage is minimised by only having one physical file and multiple pointers. However, as always, you have to ensure resilience, which means ensuring there are multiple "real" copies Shocked
There's also the option of "paid for" cloud storage (which uses rsync and file deltas Roll_eyes
Plusnet FTTC (Sep 2014), Essentials (Feb 2013); ADSL (Apr 2009); Customer since Jan 2004 (on 28kb dial-up)
Using a TP-Link Archer VR600 modem-router.
VileReynard
Hero
Posts: 12,616
Thanks: 582
Fixes: 20
Registered: ‎01-09-2007

Re: Another general question on Linux - backups

Unfortunately price is a problem.
So I'm only buying a big (2TB) external drive which connects via USB.
So no ethernet.
BTW I'm currently using rsync over ethernet to a remote drive - but it's slow
to backup my entire /home - about 25GB used so far.
Anyway I'd like to put a smallish Linux on this external drive and boot from it,
so that during the backup none of the usual PC files are active.
Unfortunately!
My "main" PC doesn't do booting from USB (although USB works after booting).
It's only about 6 years old. Sad
Last resort would be to boot off a CD.
I suspect my other PC's will boot off of USB.
Then I'd have to write some scripts to make it easy for the rest of the family to
control backup/recovery - I fancy zenity for this.

"In The Beginning Was The Word, And The Word Was Aardvark."

30FTTC06
Pro
Posts: 2,286
Thanks: 108
Fixes: 4
Registered: ‎18-02-2013

Re: Another general question on Linux - backups

Did you try updating the bios, maybe worth a look ?
VileReynard
Hero
Posts: 12,616
Thanks: 582
Fixes: 20
Registered: ‎01-09-2007

Re: Another general question on Linux - backups

I've never updated a BIOS in my life!
I'm not willing to risk it. Cheesy
I think support for my motherboard ceased some time ago...
Quote
jeremy@hector:~$ inxi -M
Machine:  Mobo: ASUSTeK model: A8N-SLI SE version: 1.XX Bios: Phoenix version: ASUS A8N-SLI SE 0502 date: 03/09/2006

"In The Beginning Was The Word, And The Word Was Aardvark."

gtowen
Rising Star
Posts: 379
Thanks: 13
Fixes: 2
Registered: ‎05-05-2013

Re: Another general question on Linux - backups

@OP if your pc won't boot from usb you could try this :
http://www.plop.at/en/bootmanagers.html
It's a small boot manager which will allow booting from a usb drive
MrC
Grafter
Posts: 525
Thanks: 4
Registered: ‎17-07-2008

Re: Another general question on Linux - backups

Quote
jeremy@hector:~$ inxi -M
Machine:   Mobo: ASUSTeK model: A8N-SLI SE version: 1.XX Bios: Phoenix version: ASUS A8N-SLI SE 0502 date: 03/09/2006

Looks like your motherboard dates from around 2005 and you've got the latest BIOS installed. Presume you've had a look at the BIOS options to see if you can enable boot from external devices (doesn't always say USB....)?
Waldo
Grafter
Posts: 473
Registered: ‎01-08-2007

Re: Another general question on Linux - backups


waldo@gorgonzola:~$ inxi -M
Machine:  Mobo: ASUSTek model: M2NPV-VM version: 1.xx Bios: Phoenix version: ASUS M2NPV-VM 0901 date: 05/08/2007

On this system (similar vintage - updated BIOS when new) with all BIOS USB options enabled, a bootable USB stick shows up as a hard disk in the BIOS boot menu. There's no option to select it in the BIOS boot priority menu but pressing F8 on reboot gives a boot menu which allows the USB stick to be chosen as the boot device.
VileReynard
Hero
Posts: 12,616
Thanks: 582
Fixes: 20
Registered: ‎01-09-2007

Re: Another general question on Linux - backups

Bloody Hell!!!
That gives a load of options!!!
I'll have to work through them all. Grin Grin Grin Grin Grin
Thanks

"In The Beginning Was The Word, And The Word Was Aardvark."

VileReynard
Hero
Posts: 12,616
Thanks: 582
Fixes: 20
Registered: ‎01-09-2007

Re: Another general question on Linux - backups

Sadly a Xubuntu USB-stick created with Unetbootin is recognised as
Quote
USB DISK 2.0 PMAP

but nothing happens when I try to boot from it.
When tried on an under-powered netbook it immediately shows a menu before loading in a couple of minutes. Angry
Since this is probably my oldest PC, I'm happy enough to boot from a live CD PLUS a small USB stick, just to run rsync.
It may even happen that when the external disk arrives, it has a better USB connection. Cheesy
I'm quite keen to have a go at trying LVM on the external disk.
It doesn't matter if it gets reformatted a few times...
Thanks Waldo.

"In The Beginning Was The Word, And The Word Was Aardvark."