* [gentoo-user] "Copying" between hard drives potential newbie question
@ 2005-09-01 21:36 Stuart Howard
2005-09-01 21:50 ` John Jolet
2005-09-01 23:04 ` Neil Bothwick
0 siblings, 2 replies; 17+ messages in thread
From: Stuart Howard @ 2005-09-01 21:36 UTC (permalink / raw
To: gentoo-user
Hi
Long story short
- power outage damages hard drive
- under liveCD data can still be read [phew]
- comp will not boot from damaged hdd
- man runs to shop and buys new hdd plus UPS
- installed new hdd | /dev/hda
- old damaged hdd is /dev/hdb [3 partitions, hdb1 = /boot ext3, hdb2 =
/swap, hdb3 = /root reiserfs]
My question :-
I need to "copy" all from hdb to hda what would be the sugested route?
I created a set of similar partitions on new hda with same filesystems
then attempted a cp which indeed copied the data but machine refused
to boot, sensed that I had been too obvious so after much googling I
have looked into parted though with no sucess as yet.
If someone could recommend a fools guide to this process I would
appreciate it, as I am tired somewhat poorer and generally fed up.
stu
ps. Essential files from Gentoo system are backed up to another
machine though not full system and I am loathed to reinstall Gentoo
then copy over these files when I am sure there is a better way of
"restoring" complete system from one hard drive to another.
--
"There are 10 types of people in this world: those who understand
binary, those who don't"
--Unknown
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 21:36 [gentoo-user] "Copying" between hard drives potential newbie question Stuart Howard
@ 2005-09-01 21:50 ` John Jolet
2005-09-01 23:04 ` Neil Bothwick
1 sibling, 0 replies; 17+ messages in thread
From: John Jolet @ 2005-09-01 21:50 UTC (permalink / raw
To: gentoo-user
On Sep 1, 2005, at 4:36 PM, Stuart Howard wrote:
>
> My question :-
>
> I need to "copy" all from hdb to hda what would be the sugested route?
>
> I created a set of similar partitions on new hda with same filesystems
> then attempted a cp which indeed copied the data but machine refused
> to boot, sensed that I had been too obvious so after much googling I
> have looked into parted though with no sucess as yet.
boot from live cd. mount new partitions under /mnt/gentoo (just like
an install). chroot /mnt/gentoo /bin/bash
now you're on your new drive. grub-install /dev/new_hd_device.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 21:36 [gentoo-user] "Copying" between hard drives potential newbie question Stuart Howard
2005-09-01 21:50 ` John Jolet
@ 2005-09-01 23:04 ` Neil Bothwick
2005-09-01 23:06 ` John Jolet
1 sibling, 1 reply; 17+ messages in thread
From: Neil Bothwick @ 2005-09-01 23:04 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 318 bytes --]
On Thu, 1 Sep 2005 22:36:59 +0100, Stuart Howard wrote:
> My question :-
>
> I need to "copy" all from hdb to hda what would be the sugested route?
If both drives are the same size
dd if=/dev/hdb of=/dev/hda bs=4096
--
Neil Bothwick
"I heard Tasha Yar is the Enterprise's expert on Data entry."
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:04 ` Neil Bothwick
@ 2005-09-01 23:06 ` John Jolet
2005-09-01 23:16 ` Ben Blount
` (2 more replies)
0 siblings, 3 replies; 17+ messages in thread
From: John Jolet @ 2005-09-01 23:06 UTC (permalink / raw
To: gentoo-user
On Thursday 01 September 2005 18:04, Neil Bothwick wrote:
> On Thu, 1 Sep 2005 22:36:59 +0100, Stuart Howard wrote:
> > My question :-
> >
> > I need to "copy" all from hdb to hda what would be the sugested route?
>
> If both drives are the same size
>
> dd if=/dev/hdb of=/dev/hda bs=4096
will that get the mbr, or does he still need to do the grub-install step?
--
John Jolet
Your On-Demand IT Department
512-762-0729
www.jolet.net
john@jolet.net
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:06 ` John Jolet
@ 2005-09-01 23:16 ` Ben Blount
2005-09-01 23:32 ` John Jolet
2005-09-01 23:33 ` Holly Bostick
2005-09-01 23:35 ` Neil Bothwick
2005-09-02 6:23 ` [gentoo-user] "Copying" between hard drives potential newbie question Frank Schafer
2 siblings, 2 replies; 17+ messages in thread
From: Ben Blount @ 2005-09-01 23:16 UTC (permalink / raw
To: gentoo-user
MBR is probably damaged, hence why it won't boot. I would run
grub-install just to be sure.
You could also mount your old disk and the new disk, then use
cp -R /mnt/olddisk/* /mnt/newdisk/
(putting in the appriopriate mount locations of course)
Ben Blount
On 9/1/05, John Jolet <john@jolet.net> wrote:
> On Thursday 01 September 2005 18:04, Neil Bothwick wrote:
> > On Thu, 1 Sep 2005 22:36:59 +0100, Stuart Howard wrote:
> > > My question :-
> > >
> > > I need to "copy" all from hdb to hda what would be the sugested route?
> >
> > If both drives are the same size
> >
> > dd if=/dev/hdb of=/dev/hda bs=4096
> will that get the mbr, or does he still need to do the grub-install step?
> --
> John Jolet
> Your On-Demand IT Department
> 512-762-0729
> www.jolet.net
> john@jolet.net
> --
> gentoo-user@gentoo.org mailing list
>
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:16 ` Ben Blount
@ 2005-09-01 23:32 ` John Jolet
2005-09-01 23:33 ` Holly Bostick
1 sibling, 0 replies; 17+ messages in thread
From: John Jolet @ 2005-09-01 23:32 UTC (permalink / raw
To: gentoo-user
On Thursday 01 September 2005 18:16, Ben Blount wrote:
> MBR is probably damaged, hence why it won't boot. I would run
> grub-install just to be sure.
>
> You could also mount your old disk and the new disk, then use
> cp -R /mnt/olddisk/* /mnt/newdisk/
I'd do a cp -pR if I did that, to maintain permissions. or even use rsync,
it'll go MUCH quicker.
> (putting in the appriopriate mount locations of course)
>
> Ben Blount
>
> On 9/1/05, John Jolet <john@jolet.net> wrote:
> > On Thursday 01 September 2005 18:04, Neil Bothwick wrote:
> > > On Thu, 1 Sep 2005 22:36:59 +0100, Stuart Howard wrote:
> > > > My question :-
> > > >
> > > > I need to "copy" all from hdb to hda what would be the sugested
> > > > route?
> > >
> > > If both drives are the same size
> > >
> > > dd if=/dev/hdb of=/dev/hda bs=4096
> >
> > will that get the mbr, or does he still need to do the grub-install step?
> > --
> > John Jolet
> > Your On-Demand IT Department
> > 512-762-0729
> > www.jolet.net
> > john@jolet.net
> > --
> > gentoo-user@gentoo.org mailing list
--
John Jolet
Your On-Demand IT Department
512-762-0729
www.jolet.net
john@jolet.net
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:16 ` Ben Blount
2005-09-01 23:32 ` John Jolet
@ 2005-09-01 23:33 ` Holly Bostick
2005-09-02 10:09 ` Harald Arnesen
1 sibling, 1 reply; 17+ messages in thread
From: Holly Bostick @ 2005-09-01 23:33 UTC (permalink / raw
To: gentoo-user
Ben Blount schreef:
> MBR is probably damaged, hence why it won't boot. I would run
> grub-install just to be sure.
>
> You could also mount your old disk and the new disk, then use
> cp -R /mnt/olddisk/* /mnt/newdisk/
> (putting in the appriopriate mount locations of course)
>
> Ben Blount
>
Wouldn't rsync -a be better for this, or would cp -R preserve ownership
and permissions as well?
Holly
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:33 ` Holly Bostick
@ 2005-09-02 10:09 ` Harald Arnesen
0 siblings, 0 replies; 17+ messages in thread
From: Harald Arnesen @ 2005-09-02 10:09 UTC (permalink / raw
To: gentoo-user
Holly Bostick <motub@planet.nl> writes:
> Ben Blount schreef:
>> MBR is probably damaged, hence why it won't boot. I would run
>> grub-install just to be sure.
>>
>> You could also mount your old disk and the new disk, then use
>> cp -R /mnt/olddisk/* /mnt/newdisk/
>> (putting in the appriopriate mount locations of course)
>>
>> Ben Blount
>>
>
> Wouldn't rsync -a be better for this, or would cp -R preserve ownership
> and permissions as well?
cp -a would preserve all file attributes. rsync would probably be
better.
--
Hilsen Harald.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:06 ` John Jolet
2005-09-01 23:16 ` Ben Blount
@ 2005-09-01 23:35 ` Neil Bothwick
2005-09-02 0:05 ` Stuart Howard
2005-09-02 6:23 ` [gentoo-user] "Copying" between hard drives potential newbie question Frank Schafer
2 siblings, 1 reply; 17+ messages in thread
From: Neil Bothwick @ 2005-09-01 23:35 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 273 bytes --]
On Thu, 1 Sep 2005 18:06:38 -0500, John Jolet wrote:
> > dd if=/dev/hdb of=/dev/hda bs=4096
> will that get the mbr, or does he still need to do the grub-install
> step?
It gets *everything*
--
Neil Bothwick
OPERATOR ERROR: Nyah, Nyah, Nyah, Nyah, Nyah!
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:35 ` Neil Bothwick
@ 2005-09-02 0:05 ` Stuart Howard
2005-09-02 1:31 ` Bob Sanders
0 siblings, 1 reply; 17+ messages in thread
From: Stuart Howard @ 2005-09-02 0:05 UTC (permalink / raw
To: gentoo-user
Hi people
MANY thanks people for the advice, after some painful time I have got
my system back or at least everything seems fine so far [typing from
opera in X].
As a record for myself and or others who may ever need this I
performed the following steps
1. Beat head on wall for not thinking to buy a UPS.
2. "broken " drive would allow access to data but bios fail reported
at attempt to boot
3. installed new drive as master old as slave
4. booted via liveCD
5. Created new partitions and filesystems similar to old
6. mounted new and old partitions
7. cp -prf /old /new
8. chroot /mnt/gentoo /bin/bash
9. grub-install /dev/hda
10. reboot
11. cheer
Had a few recommendations for rsync -a and a few concerns that cp
would not cp .files or maintain sufficient permissios etc but I think
that cp -prf has managed to acheive the same.
thanks again
stu
On 9/1/05, Neil Bothwick <neil@digimed.co.uk> wrote:
> On Thu, 1 Sep 2005 18:06:38 -0500, John Jolet wrote:
>
> > > dd if=/dev/hdb of=/dev/hda bs=4096
> > will that get the mbr, or does he still need to do the grub-install
> > step?
>
> It gets *everything*
>
>
> --
> Neil Bothwick
>
> OPERATOR ERROR: Nyah, Nyah, Nyah, Nyah, Nyah!
>
>
>
--
"There are 10 types of people in this world: those who understand
binary, those who don't"
--Unknown
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-02 0:05 ` Stuart Howard
@ 2005-09-02 1:31 ` Bob Sanders
2005-09-07 1:08 ` waltdnes
0 siblings, 1 reply; 17+ messages in thread
From: Bob Sanders @ 2005-09-02 1:31 UTC (permalink / raw
To: gentoo-user
On Fri, 2 Sep 2005 00:05:48 +0000
Stuart Howard <stuart.g.howard@gmail.com> wrote:
>
> As a record for myself and or others who may ever need this I
> performed the following steps
>
> 1. Beat head on wall for not thinking to buy a UPS.
Most UPSs below about US$400 are junk. You'd be served just as well with
a decent surge suppressor power strip. Don't waste your money on a UPS.
Bob
-
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-02 1:31 ` Bob Sanders
@ 2005-09-07 1:08 ` waltdnes
2005-09-07 15:49 ` Matthias Bethke
0 siblings, 1 reply; 17+ messages in thread
From: waltdnes @ 2005-09-07 1:08 UTC (permalink / raw
To: gentoo-user
On Thu, Sep 01, 2005 at 06:31:50PM -0700, Bob Sanders wrote
> > 1. Beat head on wall for not thinking to buy a UPS.
>
> Most UPSs below about US$400 are junk. You'd be served just as well
> with a decent surge suppressor power strip. Don't waste your money
> on a UPS.
Not if all you want is to give your home system 5 minutes to shut down
in a power failure, or to handle the occasional 30-second outage, of
which my area seems to have more than its fair share. The saying about
"Horses for courses" is especially true here. I don't get business DSL
with a horrendeously expensive SLA for my home ADSL service either.
--
Walter Dnes <waltdnes@waltdnes.org>
My musings on technology and security at http://tech_sec.blog.ca
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-07 1:08 ` waltdnes
@ 2005-09-07 15:49 ` Matthias Bethke
2005-09-10 18:13 ` [gentoo-user] "Copying" between hard drives potential newbie question ----- > Disk image post Stuart Howard
0 siblings, 1 reply; 17+ messages in thread
From: Matthias Bethke @ 2005-09-07 15:49 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1109 bytes --]
Hi waltdnes,
on Tuesday, 2005-09-06 at 21:08:20, you wrote:
> > Most UPSs below about US$400 are junk. You'd be served just as well
> > with a decent surge suppressor power strip. Don't waste your money
> > on a UPS.
>
> Not if all you want is to give your home system 5 minutes to shut down
> in a power failure, or to handle the occasional 30-second outage, of
> which my area seems to have more than its fair share.
Oh yes, it depends very much on the grid in your area.
I lived in the Philippines for a while where brownouts are a very common
thing---usually, you get a UPS "free" there when you buy a computer.
It's really no fun without one, and for what they have to do the cheap
lil things work very well. Their lead accus don't usually last more than
a year, but then you just get a new one for $5 or so and you're set for
another year. In Germany OTOH, hardly anybody has one, and people still
get uptimes of over a year.
regards
Matthias
--
I prefer encrypted and signed messages. KeyID: 90CF8389
Fingerprint: 8E 1F 10 81 A4 66 29 46 B9 8A B9 E2 09 9F 3B 91
[-- Attachment #2: Type: application/pgp-signature, Size: 481 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question ----- > Disk image post
2005-09-07 15:49 ` Matthias Bethke
@ 2005-09-10 18:13 ` Stuart Howard
2005-09-12 14:53 ` Michael Kintzios
0 siblings, 1 reply; 17+ messages in thread
From: Stuart Howard @ 2005-09-10 18:13 UTC (permalink / raw
To: gentoo-user
In case you missed it
On 9/7/05, Matthias Bethke <Matthias.Bethke@gmx.net> wrote:
> Hi waltdnes,
> on Tuesday, 2005-09-06 at 21:08:20, you wrote:
> > > Most UPSs below about US$400 are junk. You'd be served just as well
> > > with a decent surge suppressor power strip. Don't waste your money
> > > on a UPS.
> >
> > Not if all you want is to give your home system 5 minutes to shut down
> > in a power failure, or to handle the occasional 30-second outage, of
> > which my area seems to have more than its fair share.
>
> Oh yes, it depends very much on the grid in your area.
> I lived in the Philippines for a while where brownouts are a very common
> thing---usually, you get a UPS "free" there when you buy a computer.
> It's really no fun without one, and for what they have to do the cheap
> lil things work very well. Their lead accus don't usually last more than
> a year, but then you just get a new one for $5 or so and you're set for
> another year. In Germany OTOH, hardly anybody has one, and people still
> get uptimes of over a year.
>
> regards
> Matthias
> --
> I prefer encrypted and signed messages. KeyID: 90CF8389
> Fingerprint: 8E 1F 10 81 A4 66 29 46 B9 8A B9 E2 09 9F 3B 91
>
>
>
--
"There are 10 types of people in this world: those who understand
binary, those who don't"
--Unknown
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [gentoo-user] "Copying" between hard drives potential newbie question ----- > Disk image post
2005-09-10 18:13 ` [gentoo-user] "Copying" between hard drives potential newbie question ----- > Disk image post Stuart Howard
@ 2005-09-12 14:53 ` Michael Kintzios
2005-09-12 16:26 ` Michael W. Holdeman
0 siblings, 1 reply; 17+ messages in thread
From: Michael Kintzios @ 2005-09-12 14:53 UTC (permalink / raw
To: gentoo-user
> -----Original Message-----
> From: Stuart Howard [mailto:stuart.g.howard@gmail.com]
> Sent: 10 September 2005 19:13
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] "Copying" between hard drives
> potential newbie question ----- > Disk image post
>
>
> In case you missed it
>
>
> On 9/7/05, Matthias Bethke <Matthias.Bethke@gmx.net> wrote:
> > Hi waltdnes,
> > on Tuesday, 2005-09-06 at 21:08:20, you wrote:
> > > > Most UPSs below about US$400 are junk. You'd be served
> just as well
> > > > with a decent surge suppressor power strip. Don't
> waste your money
> > > > on a UPS.
> > >
> > > Not if all you want is to give your home system 5
> minutes to shut down
> > > in a power failure, or to handle the occasional 30-second
> outage, of
> > > which my area seems to have more than its fair share.
> >
> > Oh yes, it depends very much on the grid in your area.
> > I lived in the Philippines for a while where brownouts are
> a very common
> > thing---usually, you get a UPS "free" there when you buy a computer.
> > It's really no fun without one, and for what they have to
> do the cheap
> > lil things work very well. Their lead accus don't usually
> last more than
> > a year, but then you just get a new one for $5 or so and
> you're set for
> > another year. In Germany OTOH, hardly anybody has one, and
> people still
> > get uptimes of over a year.
> >
> > regards
> > Matthias
WARNING: Slightly O/T
Can/has anyone used a 12V lead acid car battery as a UPS for their box?
I've got a spare one in the garage and the thought has crossed my mind .
.
--
Regards,
Mick
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question ----- > Disk image post
2005-09-12 14:53 ` Michael Kintzios
@ 2005-09-12 16:26 ` Michael W. Holdeman
0 siblings, 0 replies; 17+ messages in thread
From: Michael W. Holdeman @ 2005-09-12 16:26 UTC (permalink / raw
To: gentoo-user
<<clip>>
>
> Can/has anyone used a 12V lead acid car battery as a UPS for their box?
> I've got a spare one in the garage and the thought has crossed my mind .
> .
> --
> Regards,
> Mick
Mick,
It can be done but is slightly more involved than just plugging in teh car
bat. I have 3 deepcycle batts, set up for my FD base radio and 1 server using
a 12V inverter and a trickle charger and just running the power through the
inverter and batt all the time, that way I did not have to set up s a
switching mechanism that would switch it over. It works well as long as you
get a good inverter and one that is sized correctly for your power
requirements.
Mike
--
Michael W. Holdeman
________________________________________
Powered by Gentoo Linux www.gentoo.org |
Kernel 2.6.11-ck8 |
Win4Lin 5-1-20 netraverse.com |
Win4LinPro 6.1.1-03 win4lin.com |
________________________________________|
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] "Copying" between hard drives potential newbie question
2005-09-01 23:06 ` John Jolet
2005-09-01 23:16 ` Ben Blount
2005-09-01 23:35 ` Neil Bothwick
@ 2005-09-02 6:23 ` Frank Schafer
2 siblings, 0 replies; 17+ messages in thread
From: Frank Schafer @ 2005-09-02 6:23 UTC (permalink / raw
To: gentoo-user
On Thu, 2005-09-01 at 18:06 -0500, John Jolet wrote:
> On Thursday 01 September 2005 18:04, Neil Bothwick wrote:
> > On Thu, 1 Sep 2005 22:36:59 +0100, Stuart Howard wrote:
> > > My question :-
> > >
> > > I need to "copy" all from hdb to hda what would be the sugested route?
> >
> > If both drives are the same size
> >
> > dd if=/dev/hdb of=/dev/hda bs=4096
> will that get the mbr, or does he still need to do the grub-install step?
> --
> John Jolet
> Your On-Demand IT Department
> 512-762-0729
> www.jolet.net
> john@jolet.net
It will get everything (making a copy of the physical disk surface). Due
to the fact that your machine didn't boot but data is available, I'd
think your old HDD isn't corrupted but the partition for /boot or the
MBR itself.
Try to setup grub for your old HDD too. Maybe you'll have a HDD more
now. ;)
Just a thought
Frank
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2005-09-12 17:22 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-01 21:36 [gentoo-user] "Copying" between hard drives potential newbie question Stuart Howard
2005-09-01 21:50 ` John Jolet
2005-09-01 23:04 ` Neil Bothwick
2005-09-01 23:06 ` John Jolet
2005-09-01 23:16 ` Ben Blount
2005-09-01 23:32 ` John Jolet
2005-09-01 23:33 ` Holly Bostick
2005-09-02 10:09 ` Harald Arnesen
2005-09-01 23:35 ` Neil Bothwick
2005-09-02 0:05 ` Stuart Howard
2005-09-02 1:31 ` Bob Sanders
2005-09-07 1:08 ` waltdnes
2005-09-07 15:49 ` Matthias Bethke
2005-09-10 18:13 ` [gentoo-user] "Copying" between hard drives potential newbie question ----- > Disk image post Stuart Howard
2005-09-12 14:53 ` Michael Kintzios
2005-09-12 16:26 ` Michael W. Holdeman
2005-09-02 6:23 ` [gentoo-user] "Copying" between hard drives potential newbie question Frank Schafer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox