* Re: Accessible image backup and restore program?
Accessible image backup and restore program? Jayson Smith
@ ` Kirk Reiser
` Littlefield, Tyler
` Gregory Nowak
` (2 subsequent siblings)
3 siblings, 1 reply; 19+ messages in thread
From: Kirk Reiser @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
I can't answer your question about recovery images for Windows, but
grml is a good general purpose rescue image. It will handle either
software synths such as espeakup which is part of the system or serial
synths.
Check it out at www.grml.org.
On Sun, 26 May 2013, Jayson Smith wrote:
> A bit off-topic here, but somewhat related to Linux.
>
> For several years, I've been using Image for Windows/Linux as my Windows
> backup/restore solution. I liked it because, in case of total boot drive
> failure where the system was completely unbootable, I could boot up Image for
> Linux which includes Speakup, use my DECtalk Express, and restore. Now,
> though, I've upgraded to Windows 7, and my computer has exactly zero serial
> ports. So I can't use my old boot CD any more, unless it would work with a
> USB to serial convertor.
>
> What do you recommend for a bootable, accessible backup and restore solution?
> Does whatever you recommend use software speech? I don't assume anyone's come
> up with an accessible bootable Windows CD? Does such a bootable CD work with
> USB sound devices? Also, in all our computers, there's an internal sound card
> we're not actively using in Windows. Would any Linux CD try to use that
> first?
> Thanks for any thoughts!
> Jayson
>
> _______________________________________________
> Speakup mailing list
> Speakup@linux-speakup.org
> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>
--
Well that's it then, colour me gone!
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Kirk Reiser
@ ` Littlefield, Tyler
` Øyvind Lode
` Tony Baechler
0 siblings, 2 replies; 19+ messages in thread
From: Littlefield, Tyler @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
Jason:
There is not an accessible windows boot cd as far as I'm aware. What you
could do though is just dd your partitions and pipe t hat through to
bzip2. It's moderately slow, but you could store it on a nas/passport
drive/etc and be set.
HTH,
On 5/26/2013 12:23 PM, Kirk Reiser wrote:
> I can't answer your question about recovery images for Windows, but
> grml is a good general purpose rescue image. It will handle either
> software synths such as espeakup which is part of the system or serial
> synths.
>
> Check it out at www.grml.org.
>
> On Sun, 26 May 2013, Jayson Smith wrote:
>
>> A bit off-topic here, but somewhat related to Linux.
>>
>> For several years, I've been using Image for Windows/Linux as my
>> Windows backup/restore solution. I liked it because, in case of total
>> boot drive failure where the system was completely unbootable, I
>> could boot up Image for Linux which includes Speakup, use my DECtalk
>> Express, and restore. Now, though, I've upgraded to Windows 7, and my
>> computer has exactly zero serial ports. So I can't use my old boot CD
>> any more, unless it would work with a USB to serial convertor.
>>
>> What do you recommend for a bootable, accessible backup and restore
>> solution? Does whatever you recommend use software speech? I don't
>> assume anyone's come up with an accessible bootable Windows CD? Does
>> such a bootable CD work with USB sound devices? Also, in all our
>> computers, there's an internal sound card we're not actively using in
>> Windows. Would any Linux CD try to use that first?
>> Thanks for any thoughts!
>> Jayson
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@linux-speakup.org
>> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>>
>
--
Take care,
Ty
http://tds-solutions.net
The aspen project: a barebones light-weight mud engine:
http://code.google.com/p/aspenmud
He that will not reason is a bigot; he that cannot reason is a fool; he that dares not reason is a slave.
^ permalink raw reply [flat|nested] 19+ messages in thread* RE: Accessible image backup and restore program?
` Littlefield, Tyler
@ ` Øyvind Lode
` Tony Baechler
1 sibling, 0 replies; 19+ messages in thread
From: Øyvind Lode @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
Hi:
Dd would work just fine but waste a lot of space since dd copies every sector on the disk regardless if it is in use or not.
So if you use dd to make a image of your harddrive which is a 2TB drive the image would be 2TB.
This is true regardless of how much data the drive contains.
But you can use gzip etc as mentioned and you probably will get a much smaller image but it is extremely slow.
But since dd copies sector by sector it does not care about which filesystem is on the drive/partition.
In other words dd can be used to clone any operating system.
It will clone as I said sector by sector but extremely slow.
Personally I use fsarchiver to make backups of both Linux partitions and Windows.
Fsarchiver (file system archiver) works at the file level which means it clones the filesystem and NTFS is supported.
Fsarchiver is very fast and has a clever algorithm.
It compresses the output image and multithreading is supported which makes it very fast on system with multiple cpu cores.
But you have to manually enable this feature.
You use the -j option for that.
-j4 will use all 4 cores on a quad core system both for compression (cloning) and for decompression (when you restore your system).
Fsarchiver will clone a Windows partition just fine but it will not clone your MBR or GPT.
So I use dd to make a backup of the MBR and in case of a GPT partitioned drive I use sgdisk to make a backup of the GPT.
I use GRML with software speech which includes all the tools I mentioned above.
So as a quick walkthrough on how to clone Windows 7:
* Boot GRML Live CD/USB on the Windows 7 machine you want to clone.
* My Windows 7 installation is on a SSD and it is 2 partitions (the system reserved partition which is 100MB and partition 2 holding the OS and data).
* use dd to backup your MBR or sgdisk to backup your GPT if you are using GPT.
* use fsarchiver to clone Windows 7 (in my case 2 partitions).
* you need a separate HDD or external HDD etc to store the image on
When you need to recover your system:
* boot GRML
* in case of a damaged MBR or GPT use dd or sgdisk to restore MBR or GPT respectively
* if your MBR or GPT is just fine you simply need to just restore your Windows 7 partitions from the fsarchiver image
Ok, I am rambling... For more info see links below.
www.grml.org
www.fsarchiver.org
-----Original Message-----
From: Speakup [mailto:speakup-bounces@linux-speakup.org] On Behalf Of Littlefield, Tyler
Sent: 26. mai 2013 20:33
To: Speakup is a screen review system for Linux.
Subject: Re: Accessible image backup and restore program?
Jason:
There is not an accessible windows boot cd as far as I'm aware. What you
could do though is just dd your partitions and pipe t hat through to
bzip2. It's moderately slow, but you could store it on a nas/passport
drive/etc and be set.
HTH,
On 5/26/2013 12:23 PM, Kirk Reiser wrote:
> I can't answer your question about recovery images for Windows, but
> grml is a good general purpose rescue image. It will handle either
> software synths such as espeakup which is part of the system or serial
> synths.
>
> Check it out at www.grml.org.
>
> On Sun, 26 May 2013, Jayson Smith wrote:
>
>> A bit off-topic here, but somewhat related to Linux.
>>
>> For several years, I've been using Image for Windows/Linux as my
>> Windows backup/restore solution. I liked it because, in case of total
>> boot drive failure where the system was completely unbootable, I
>> could boot up Image for Linux which includes Speakup, use my DECtalk
>> Express, and restore. Now, though, I've upgraded to Windows 7, and my
>> computer has exactly zero serial ports. So I can't use my old boot CD
>> any more, unless it would work with a USB to serial convertor.
>>
>> What do you recommend for a bootable, accessible backup and restore
>> solution? Does whatever you recommend use software speech? I don't
>> assume anyone's come up with an accessible bootable Windows CD? Does
>> such a bootable CD work with USB sound devices? Also, in all our
>> computers, there's an internal sound card we're not actively using in
>> Windows. Would any Linux CD try to use that first?
>> Thanks for any thoughts!
>> Jayson
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@linux-speakup.org
>> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>>
>
--
Take care,
Ty
http://tds-solutions.net
The aspen project: a barebones light-weight mud engine:
http://code.google.com/p/aspenmud
He that will not reason is a bigot; he that cannot reason is a fool; he that dares not reason is a slave.
_______________________________________________
Speakup mailing list
Speakup@linux-speakup.org
http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Littlefield, Tyler
` Øyvind Lode
@ ` Tony Baechler
` Mitchell D. Lynn
1 sibling, 1 reply; 19+ messages in thread
From: Tony Baechler @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Nope, not on any Windows after ME as I've tried it. Windows refuses to
boot from the restored backup. You first have to clear a key in the
registry. Besides, that backs up everything, including empty space and
doesn't allow for incremental backups. There is still the problem of
getting speech to restore the partition later. I've seen this kind of
solution proposed here several times, but I guarantee you that it won't
work. Even worse, you don't have a way of knowing that Windows didn't
boot because no speech comes up. Also, it requires booting into Linux
since you can't normally backup a Windows partition in use.
On 5/26/2013 11:33 AM, Littlefield, Tyler wrote:
> Jason: There is not an accessible windows boot cd as far as I'm aware.
> What you could do though is just dd your partitions and pipe t hat
> through to bzip2. It's moderately slow, but you could store it on a
> nas/passport drive/etc and be set. HTH,
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (MingW32)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBCAAGBQJRpGNgAAoJEPrAuJWnLe0yekYQALsGUqw08kH4hoRV8xa9CBTt
WwK5JMN/6BFzxzo+oLmlrho3Im2mQlQ+XS0LNaW1K5r1Hflrs15/bYsf0OJEscgv
7bcs2u3RZrRw0V1iC2O4fKXXoTp5uAbdiV7a2oPE17dsUdnANiGlzlcZwwKtt4nx
OHHJwdhpVRuqMgAKxFFjjVjKHCa+urB7Ulf6KHoNSg/C747XFLMc8Vh5lB9gxKfO
cRFS03eFPEYlsqZ6YA7NSHuIKUSWy5MMq+VLhEbKeo9xUA0eJDmMKDEUgmdcwq33
Amj9MX+k8zOwmvIpOzEqtx+lHUaSUcnn0RARhy+DXSFhcgznVjB7MdAJweUaQ+sB
jRHZMc3NwygelLu4+DKw4FD+uLQQE07dF8z27vFWwbBsyUQYQkEB1m3cDYpSgrA+
BMAop0eLwZuD6nePK1yA1YOfsgq9+g4zyUyuy16AjOhBK9k26MBjTMKhXCBGSwlA
K4bTpBWRJiEyQIKqhiIV5AM21a8WVHoqMYTDAkUW1BzyS5zr1jVEfdVh6QZtNrgs
OzkQ/hsFlZmFzl4pL+fJ/Nzcm0WpRDt+AnUANthQ3h41FqevOubStYaLTSkpH0N4
COY3h9ZxxeZdmSEUHwUXtzDcAAvAVL4JdJoeYBCyEIBaKyKgsn9uPZhceVRYBPl3
CoOCCBdRTzq3NWXtlfDb
=WF8T
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 19+ messages in thread* RE: Accessible image backup and restore program?
` Tony Baechler
@ ` Mitchell D. Lynn
0 siblings, 0 replies; 19+ messages in thread
From: Mitchell D. Lynn @ UTC (permalink / raw)
To: 'Speakup is a screen review system for Linux.'
It's not an image per sey, but I have used Casper in Windows XP to clone
drives, and they do the clone while Windows is still running. And I have not
had any issues getting the cloned drives to boot without having to jump
through any hoops.
-----Original Message-----
From: Speakup [mailto:speakup-bounces@linux-speakup.org] On Behalf Of Tony
Baechler
Sent: Tuesday, May 28, 2013 2:57 AM
To: Speakup is a screen review system for Linux.
Subject: Re: Accessible image backup and restore program?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Nope, not on any Windows after ME as I've tried it. Windows refuses to boot
from the restored backup. You first have to clear a key in the registry.
Besides, that backs up everything, including empty space and doesn't allow
for incremental backups. There is still the problem of getting speech to
restore the partition later. I've seen this kind of solution proposed here
several times, but I guarantee you that it won't work. Even worse, you
don't have a way of knowing that Windows didn't boot because no speech comes
up. Also, it requires booting into Linux since you can't normally backup a
Windows partition in use.
On 5/26/2013 11:33 AM, Littlefield, Tyler wrote:
> Jason: There is not an accessible windows boot cd as far as I'm aware.
> What you could do though is just dd your partitions and pipe t hat
> through to bzip2. It's moderately slow, but you could store it on a
> nas/passport drive/etc and be set. HTH,
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (MingW32)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBCAAGBQJRpGNgAAoJEPrAuJWnLe0yekYQALsGUqw08kH4hoRV8xa9CBTt
WwK5JMN/6BFzxzo+oLmlrho3Im2mQlQ+XS0LNaW1K5r1Hflrs15/bYsf0OJEscgv
7bcs2u3RZrRw0V1iC2O4fKXXoTp5uAbdiV7a2oPE17dsUdnANiGlzlcZwwKtt4nx
OHHJwdhpVRuqMgAKxFFjjVjKHCa+urB7Ulf6KHoNSg/C747XFLMc8Vh5lB9gxKfO
cRFS03eFPEYlsqZ6YA7NSHuIKUSWy5MMq+VLhEbKeo9xUA0eJDmMKDEUgmdcwq33
Amj9MX+k8zOwmvIpOzEqtx+lHUaSUcnn0RARhy+DXSFhcgznVjB7MdAJweUaQ+sB
jRHZMc3NwygelLu4+DKw4FD+uLQQE07dF8z27vFWwbBsyUQYQkEB1m3cDYpSgrA+
BMAop0eLwZuD6nePK1yA1YOfsgq9+g4zyUyuy16AjOhBK9k26MBjTMKhXCBGSwlA
K4bTpBWRJiEyQIKqhiIV5AM21a8WVHoqMYTDAkUW1BzyS5zr1jVEfdVh6QZtNrgs
OzkQ/hsFlZmFzl4pL+fJ/Nzcm0WpRDt+AnUANthQ3h41FqevOubStYaLTSkpH0N4
COY3h9ZxxeZdmSEUHwUXtzDcAAvAVL4JdJoeYBCyEIBaKyKgsn9uPZhceVRYBPl3
CoOCCBdRTzq3NWXtlfDb
=WF8T
-----END PGP SIGNATURE-----
_______________________________________________
Speakup mailing list
Speakup@linux-speakup.org
http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: Accessible image backup and restore program?
Accessible image backup and restore program? Jayson Smith
` Kirk Reiser
@ ` Gregory Nowak
` Adam Myrow
` Jason White
` Tony Baechler
3 siblings, 1 reply; 19+ messages in thread
From: Gregory Nowak @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
To backup/restore drive partitions, I use grml for the livecd, which
has software speech via espeakup as Kirk already indicated. To do the
actual backup/restore of partitions, I use partition image. Doing:
man partimage
will tell you what you need to know. If you're dealing with ntfs
partitions, there is also ntfsclone from the ntfsprogs package, which
is installed on the grml cd. I can tell you from personal experience
that ntfsclone works nicely if you're trying to recover data from a
damaged drive. On the other hand, partimage bombs as soon as it
encounters the first i/o error while reading the partition in question.
If I want to backup/restore the partition table, I use sfdisk, which
grml includes also. Hope that answers your questions somewhat.
Greg
On Sun, May 26, 2013 at 01:13:51PM -0400, Jayson Smith wrote:
> A bit off-topic here, but somewhat related to Linux.
>
> For several years, I've been using Image for Windows/Linux as my
> Windows backup/restore solution. I liked it because, in case of
> total boot drive failure where the system was completely unbootable,
> I could boot up Image for Linux which includes Speakup, use my
> DECtalk Express, and restore. Now, though, I've upgraded to Windows
> 7, and my computer has exactly zero serial ports. So I can't use my
> old boot CD any more, unless it would work with a USB to serial
> convertor.
>
> What do you recommend for a bootable, accessible backup and restore
> solution? Does whatever you recommend use software speech? I don't
> assume anyone's come up with an accessible bootable Windows CD? Does
> such a bootable CD work with USB sound devices? Also, in all our
> computers, there's an internal sound card we're not actively using
> in Windows. Would any Linux CD try to use that first?
> Thanks for any thoughts!
> Jayson
>
> _______________________________________________
> Speakup mailing list
> Speakup@linux-speakup.org
> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>
--
web site: http://www.gregn.net
gpg public key: http://www.gregn.net/pubkey.asc
skype: gregn1
(authorization required, add me to your contacts list first)
--
Free domains: http://www.eu.org/ or mail dns-manager@EU.org
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Gregory Nowak
@ ` Adam Myrow
` Gregory Nowak
` Tony Baechler
0 siblings, 2 replies; 19+ messages in thread
From: Adam Myrow @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
On Sun, 26 May 2013, Gregory Nowak wrote:
> I can tell you from personal experience that ntfsclone works nicely if
> you're trying to recover data from a damaged drive. On the other hand,
> partimage bombs as soon as it encounters the first i/o error while
> reading the partition in question.
Have you tried Gnu Ddrescue? I have a 1TB USB drive that is dying, and
I am trying Ddrescue on it, copying the data to a brand new drive of the
same size. We'll see how it goes, but I'm curious if you have had any
experience using this tool on failing drives.
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Adam Myrow
@ ` Gregory Nowak
` Tony Baechler
1 sibling, 0 replies; 19+ messages in thread
From: Gregory Nowak @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
No. Since the drive I was recovering had only ntfs partitions, I
figured I might as well use a tool specifically designed to deal with
that file system. Good luck.
Greg
On Sun, May 26, 2013 at 04:16:35PM -0500, Adam Myrow wrote:
> Have you tried Gnu Ddrescue? I have a 1TB USB drive that is dying,
> and I am trying Ddrescue on it, copying the data to a brand new
> drive of the same size. We'll see how it goes, but I'm curious if
> you have had any experience using this tool on failing drives.
--
web site: http://www.gregn.net
gpg public key: http://www.gregn.net/pubkey.asc
skype: gregn1
(authorization required, add me to your contacts list first)
--
Free domains: http://www.eu.org/ or mail dns-manager@EU.org
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Adam Myrow
` Gregory Nowak
@ ` Tony Baechler
1 sibling, 0 replies; 19+ messages in thread
From: Tony Baechler @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Yes, I have. My drive was starting to fail. I was able to recover
everything just fine. I think it was pretty slow as I recall, but XFS was
able to eventually read the backup image after running xfs_repair on it.
Since it works like dd, you can rescue a drive to a raw disk image if you
want. I highly recommend it. Unlike the normal dd, it gives progress
reports so you can see how many bad sectors it found and how long it will
take.
On 5/26/2013 2:16 PM, Adam Myrow wrote:
> On Sun, 26 May 2013, Gregory Nowak wrote:
>
>> I can tell you from personal experience that ntfsclone works nicely
>> if you're trying to recover data from a damaged drive. On the other
>> hand, partimage bombs as soon as it encounters the first i/o error
>> while reading the partition in question.
>
> Have you tried Gnu Ddrescue? I have a 1TB USB drive that is dying, and
> I am trying Ddrescue on it, copying the data to a brand new drive of
> the same size. We'll see how it goes, but I'm curious if you have had
> any experience using this tool on failing drives.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (MingW32)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBCAAGBQJRpGSoAAoJEPrAuJWnLe0y0jwP/1FCYiSw02XdCClyMnegUpNi
eIhlrVKmZfXfBF9ga0fR9VpLwlV8+RZjDmP6BIwRVnnfEjNJeHTdOyD6aJaROtx2
VX+FGNGtl+kpgc50JjFdMb93ZAE0Bad8tuoINW9UKIlJssAMKBMrXjS0zo+r+TN2
rVJZSGsRArqjF6kVkF+c1NW9/IcVPp/sOnPBJVU63Q0TWtic9pGDLeSaYLO7Gfso
LH8Ca689mpFgGR2zncmy3U1xN6gZG2fMyGuGwKf+srz/NeE3jlgKxrgFsM26R+Dc
HbOQExESo649AFvKkCqJ11P6tcltJqIhNrT6eSqyFyfXKBoDL4+LcBFU985FmC7N
DE25EfGXINfvPpKfwwXl+7nXGjlIwT8T2t3DNje+WvjcC6DG/EpaoqD+uuyBxIyo
auuiKVaHmDIHJTp+25Cf1+sjRKVkMCW+iihKZt9U77McqNvpicx5hSbzBEjpHOlJ
yi19Tia+ebCL08DgfaWrbJXlf8MO6aYH3ha2cRNIZd6h3zv1yjbg22cXOvnYiU/F
qchECSJ46b5bKDOUINOo3NAZtzcnBteeId4USeFyvs9XRPTNGbU2ZJmDuYu6eKXj
05N8Lr+gAoz2II3zkNA/393ifEGqwa6X6TfpsRXgg7Y9RCMcrgLUe+tpb0fLZwL7
bJ40gc1v8fmbVspWQlHe
=0sfE
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: Accessible image backup and restore program?
Accessible image backup and restore program? Jayson Smith
` Kirk Reiser
` Gregory Nowak
@ ` Jason White
` John G. Heim
` (2 more replies)
` Tony Baechler
3 siblings, 3 replies; 19+ messages in thread
From: Jason White @ UTC (permalink / raw)
To: speakup
Jayson Smith <ratguy@insightbb.com> wrote:
> What do you recommend for a bootable, accessible backup and restore
> solution? Does whatever you recommend use software speech?
Grml is my favourite. There are details on the Grml wiki of how to start it
with speech (or braille, but that isn't our topic here). However, changes were
made in recent versions to the accessibility support, hence the information on
the wiki may not be current. I haven't experimented with a recent GRML
release.
Grml provides essentially every recovery tool you are likely to need.
My own solution is somewhat different: I bind mount my partitions in a
directory under /tmp, then use rsync to copy everything over to an external
drive. This is slightly easier than excluding /dev, /proc, /sys etc., and
still gives you the directories in the underlying file system which serve as
the mount points.
I have only Linux partitions to back up as I don't run Windows on any of my
machines.
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Jason White
@ ` John G. Heim
` Albert Sten-Clanton
` Don Raikes
2 siblings, 0 replies; 19+ messages in thread
From: John G. Heim @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
I couldn't update the grml wiki but I did update the iavit wiki. So there are instructions on using the accessibility features of grml at wiki.iavit.org.
Grml supports braille displays, software speech, serail terminals, and ssh.
On May 26, 2013, at 6:17 PM, Jason White wrote:
> Jayson Smith <ratguy@insightbb.com> wrote:
>
>> What do you recommend for a bootable, accessible backup and restore
>> solution? Does whatever you recommend use software speech?
>
> Grml is my favourite. There are details on the Grml wiki of how to start it
> with speech (or braille, but that isn't our topic here). However, changes were
> made in recent versions to the accessibility support, hence the information on
> the wiki may not be current. I haven't experimented with a recent GRML
> release.
>
> Grml provides essentially every recovery tool you are likely to need.
>
> My own solution is somewhat different: I bind mount my partitions in a
> directory under /tmp, then use rsync to copy everything over to an external
> drive. This is slightly easier than excluding /dev, /proc, /sys etc., and
> still gives you the directories in the underlying file system which serve as
> the mount points.
>
> I have only Linux partitions to back up as I don't run Windows on any of my
> machines.
>
> _______________________________________________
> Speakup mailing list
> Speakup@linux-speakup.org
> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 19+ messages in thread* RE: Accessible image backup and restore program?
` Jason White
` John G. Heim
@ ` Albert Sten-Clanton
` Kirk Reiser
` Don Raikes
2 siblings, 1 reply; 19+ messages in thread
From: Albert Sten-Clanton @ UTC (permalink / raw)
To: 'Speakup is a screen review system for Linux.'
I just looked for speakup-related info on the GRML wiki but didn't find it?
Using "swspeak" in the search entry field got me no results, and using
"speakup" did little better. (No, I didn't use the quote marks there.)
Thanks to anybody who can tell me what I'm doing wrong.
Al
-----Original Message-----
From: Speakup [mailto:speakup-bounces@linux-speakup.org] On Behalf Of Jason
White
Sent: Sunday, May 26, 2013 7:18 PM
To: speakup@linux-speakup.org
Subject: Re: Accessible image backup and restore program?
Jayson Smith <ratguy@insightbb.com> wrote:
> What do you recommend for a bootable, accessible backup and restore
> solution? Does whatever you recommend use software speech?
Grml is my favourite. There are details on the Grml wiki of how to start it
with speech (or braille, but that isn't our topic here). However, changes
were made in recent versions to the accessibility support, hence the
information on the wiki may not be current. I haven't experimented with a
recent GRML release.
Grml provides essentially every recovery tool you are likely to need.
My own solution is somewhat different: I bind mount my partitions in a
directory under /tmp, then use rsync to copy everything over to an external
drive. This is slightly easier than excluding /dev, /proc, /sys etc., and
still gives you the directories in the underlying file system which serve as
the mount points.
I have only Linux partitions to back up as I don't run Windows on any of my
machines.
_______________________________________________
Speakup mailing list
Speakup@linux-speakup.org
http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 19+ messages in thread* RE: Accessible image backup and restore program?
` Albert Sten-Clanton
@ ` Kirk Reiser
` Al Sten-Clanton
` Gregory Nowak
0 siblings, 2 replies; 19+ messages in thread
From: Kirk Reiser @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
Hi Al: Just let grml boot normally without typing anything at the boot
prompt. When it gets done it makes a little beedly-dop sound with the
beeper. At that point it is at a menu of choices. Just hit enter and
it'll drop to the shell prompt. At that point you can type modprobe
speakup_soft or whatever you want to use then espeakup if you want
software synth.
Good luck.
On Sun, 26 May 2013, Albert Sten-Clanton wrote:
> I just looked for speakup-related info on the GRML wiki but didn't find it?
> Using "swspeak" in the search entry field got me no results, and using
> "speakup" did little better. (No, I didn't use the quote marks there.)
> Thanks to anybody who can tell me what I'm doing wrong.
>
> Al
>
> -----Original Message-----
> From: Speakup [mailto:speakup-bounces@linux-speakup.org] On Behalf Of Jason
> White
> Sent: Sunday, May 26, 2013 7:18 PM
> To: speakup@linux-speakup.org
> Subject: Re: Accessible image backup and restore program?
>
> Jayson Smith <ratguy@insightbb.com> wrote:
>
>> What do you recommend for a bootable, accessible backup and restore
>> solution? Does whatever you recommend use software speech?
>
> Grml is my favourite. There are details on the Grml wiki of how to start it
> with speech (or braille, but that isn't our topic here). However, changes
> were made in recent versions to the accessibility support, hence the
> information on the wiki may not be current. I haven't experimented with a
> recent GRML release.
>
> Grml provides essentially every recovery tool you are likely to need.
>
> My own solution is somewhat different: I bind mount my partitions in a
> directory under /tmp, then use rsync to copy everything over to an external
> drive. This is slightly easier than excluding /dev, /proc, /sys etc., and
> still gives you the directories in the underlying file system which serve as
> the mount points.
>
> I have only Linux partitions to back up as I don't run Windows on any of my
> machines.
>
> _______________________________________________
> Speakup mailing list
> Speakup@linux-speakup.org
> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>
> _______________________________________________
> Speakup mailing list
> Speakup@linux-speakup.org
> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>
--
Well that's it then, colour me gone!
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Kirk Reiser
@ ` Al Sten-Clanton
` Gregory Nowak
1 sibling, 0 replies; 19+ messages in thread
From: Al Sten-Clanton @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
Thanks very much!
Al
On 05/26/2013 09:56 PM, Kirk Reiser wrote:
> Hi Al: Just let grml boot normally without typing anything at the boot
> prompt. When it gets done it makes a little beedly-dop sound with the
> beeper. At that point it is at a menu of choices. Just hit enter and
> it'll drop to the shell prompt. At that point you can type modprobe
> speakup_soft or whatever you want to use then espeakup if you want
> software synth.
>
> Good luck.
>
> On Sun, 26 May 2013, Albert Sten-Clanton wrote:
>
>> I just looked for speakup-related info on the GRML wiki but didn't
>> find it?
>> Using "swspeak" in the search entry field got me no results, and using
>> "speakup" did little better. (No, I didn't use the quote marks there.)
>> Thanks to anybody who can tell me what I'm doing wrong.
>>
>> Al
>>
>> -----Original Message-----
>> From: Speakup [mailto:speakup-bounces@linux-speakup.org] On Behalf Of
>> Jason
>> White
>> Sent: Sunday, May 26, 2013 7:18 PM
>> To: speakup@linux-speakup.org
>> Subject: Re: Accessible image backup and restore program?
>>
>> Jayson Smith <ratguy@insightbb.com> wrote:
>>
>>> What do you recommend for a bootable, accessible backup and restore
>>> solution? Does whatever you recommend use software speech?
>>
>> Grml is my favourite. There are details on the Grml wiki of how to
>> start it
>> with speech (or braille, but that isn't our topic here). However, changes
>> were made in recent versions to the accessibility support, hence the
>> information on the wiki may not be current. I haven't experimented with a
>> recent GRML release.
>>
>> Grml provides essentially every recovery tool you are likely to need.
>>
>> My own solution is somewhat different: I bind mount my partitions in a
>> directory under /tmp, then use rsync to copy everything over to an
>> external
>> drive. This is slightly easier than excluding /dev, /proc, /sys etc., and
>> still gives you the directories in the underlying file system which
>> serve as
>> the mount points.
>>
>> I have only Linux partitions to back up as I don't run Windows on any
>> of my
>> machines.
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@linux-speakup.org
>> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>>
>> _______________________________________________
>> Speakup mailing list
>> Speakup@linux-speakup.org
>> http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
>>
>
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Kirk Reiser
` Al Sten-Clanton
@ ` Gregory Nowak
` Kerry Hoath
1 sibling, 1 reply; 19+ messages in thread
From: Gregory Nowak @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
I thought you had to hit tab, space, type swspeak, and hit enter at
the grub prompt in order for it to unmute the sound card.
Greg
On Sun, May 26, 2013 at 09:56:15PM -0400, Kirk Reiser wrote:
> Hi Al: Just let grml boot normally without typing anything at the boot
> prompt. When it gets done it makes a little beedly-dop sound with the
> beeper. At that point it is at a menu of choices. Just hit enter and
> it'll drop to the shell prompt. At that point you can type modprobe
> speakup_soft or whatever you want to use then espeakup if you want
> software synth.
>
> Good luck.
>
--
web site: http://www.gregn.net
gpg public key: http://www.gregn.net/pubkey.asc
skype: gregn1
(authorization required, add me to your contacts list first)
--
Free domains: http://www.eu.org/ or mail dns-manager@EU.org
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Accessible image backup and restore program?
` Gregory Nowak
@ ` Kerry Hoath
0 siblings, 0 replies; 19+ messages in thread
From: Kerry Hoath @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
that is no longer true.
Follow Kirk's irections. the tab swspeak went away with releases past
2011.05
On 27/05/2013 10:59 AM, Gregory Nowak wrote:
> I thought you had to hit tab, space, type swspeak, and hit enter at
> the grub prompt in order for it to unmute the sound card.
>
> Greg
>
>
> On Sun, May 26, 2013 at 09:56:15PM -0400, Kirk Reiser wrote:
>
>> Hi Al: Just let grml boot normally without typing anything at the boot
>> prompt. When it gets done it makes a little beedly-dop sound with the
>> beeper. At that point it is at a menu of choices. Just hit enter and
>> it'll drop to the shell prompt. At that point you can type modprobe
>> speakup_soft or whatever you want to use then espeakup if you want
>> software synth.
>>
>> Good luck.
>>
>>
>
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: Accessible image backup and restore program?
` Jason White
` John G. Heim
` Albert Sten-Clanton
@ ` Don Raikes
2 siblings, 0 replies; 19+ messages in thread
From: Don Raikes @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
I am currently working on an accessible version of the debian rescue live cd.
I have it working pretty well with both brltty and Speakup.
I would also recommend using dd to copy the partition images to a backup medium because it takes an exact image of the partition.
-----Original Message-----
From: Jason White [mailto:jason@jasonjgw.net]
Sent: Sunday, May 26, 2013 4:18 PM
To: speakup@linux-speakup.org
Subject: Re: Accessible image backup and restore program?
Jayson Smith <ratguy@insightbb.com> wrote:
> What do you recommend for a bootable, accessible backup and restore
> solution? Does whatever you recommend use software speech?
Grml is my favourite. There are details on the Grml wiki of how to start it with speech (or braille, but that isn't our topic here). However, changes were made in recent versions to the accessibility support, hence the information on the wiki may not be current. I haven't experimented with a recent GRML release.
Grml provides essentially every recovery tool you are likely to need.
My own solution is somewhat different: I bind mount my partitions in a directory under /tmp, then use rsync to copy everything over to an external drive. This is slightly easier than excluding /dev, /proc, /sys etc., and still gives you the directories in the underlying file system which serve as the mount points.
I have only Linux partitions to back up as I don't run Windows on any of my machines.
_______________________________________________
Speakup mailing list
Speakup@linux-speakup.org
http://linux-speakup.org/cgi-bin/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: Accessible image backup and restore program?
Accessible image backup and restore program? Jayson Smith
` (2 preceding siblings ...)
` Jason White
@ ` Tony Baechler
3 siblings, 0 replies; 19+ messages in thread
From: Tony Baechler @ UTC (permalink / raw)
To: Speakup is a screen review system for Linux.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
I'll answer your other questions first. Yes, if there is an internal
sound card, Linux will try to use it first. I can say for sure that there
is code in Debian to specifically prioritize internal sound cards in the
ALSA configuration. I found this out from experience when setting up my
server with no onboard sound. It will always put USB sound devices as
secondary. I know this because I bought a really cheap USB sound card,
thanks to a recommendation on this list. Yes, it works great in Linux and
nicely fits into a USB port.
As others have pointed out, you would have to use some live CD for
booting. You can still use Image for Linux to backup and restore. You
have a couple of options. The first is to copy imagel with your
registration to a USB flash drive or somewhere on the network. The second
is to make a custom boot CD with them included. Just boot the CD as
normal. After it boots and you have speech, either plug in your flash
drive or copy imagel from the network and run it. It should work fine and
still let you backup and restore with speech.
On 5/26/2013 10:13 AM, Jayson Smith wrote:
> A bit off-topic here, but somewhat related to Linux.
>
> For several years, I've been using Image for Windows/Linux as my
> Windows backup/restore solution. I liked it because, in case of total
> boot drive failure where the system was completely unbootable, I could
> boot up Image for Linux which includes Speakup, use my DECtalk Express,
> and restore. Now, though, I've upgraded to Windows 7, and my computer
> has exactly zero serial ports. So I can't use my old boot CD any more,
> unless it would work with a USB to serial convertor.
>
> What do you recommend for a bootable, accessible backup and restore
> solution? Does whatever you recommend use software speech? I don't
> assume anyone's come up with an accessible bootable Windows CD? Does
> such a bootable CD work with USB sound devices? Also, in all our
> computers, there's an internal sound card we're not actively using in
> Windows. Would any Linux CD try to use that first? Thanks for any
> thoughts! Jayson
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (MingW32)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBCAAGBQJRpGv7AAoJEPrAuJWnLe0yix8QAJSCFdrnfMe1v7ctgTE+0CBZ
0AOl2tZZ7/ipm3cfDiYHtvnYqYxSVIXODMJoyqF0TAPHZRYx+dxATJ5YciYAF84w
KBSZJD8bYyTSQ0oio8Qu1N/SpkTWbsMyiI51J+nER6i6ZY6SWsgEVLrdxrNOb5pr
m1eJGz0QaOEZrGC2EyPDkg9U76VG6znVNXUFETRgMlSxqncYXymBERPyJvvca++2
d2opuMktJQT5uVW9ysg6Dt51bhJzwLmRyRmfGFIaeYcJJM5AToyBDtgD1VgYfOMV
Q59vxhyzdv+542wfi1dE7AoJa7OtNngnYtwhZFNgNDXcK2atgmhW2Snaa1bkIeWR
9jksvKjA6EJZFKgQ13PbAVDrykX34ISXyP9FXvgs9p4lthnEQdDZwUI6ECxDEhBQ
ZkzdMiyzgF26Nw2B6CNXy1q/jyqktpSuLcLgfSH0xLKDjxsibRxCvdjj6tGMW5Jk
T4GFMy0ebl9jz994+YqIHW4pvcRfnwAnm+cTt+HD5Jj/KS/uSRi5zGzppX0qdOJ3
RTh0Hd8pBPniPNvDtw5aCVav11M08lFY+fW3pAzx1LFO2ZWrws9xOddD7vQulxRe
TrSEWPDPFTKTf7UTgIIIMDzlAff/UA85s7Cp/elJ0ShZJBrvEDtiq9s7qWLZrwSm
ue2Qgr9MpynNF/sOfZml
=OEaF
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 19+ messages in thread