* [gentoo-user] reiserfs->ext3
@ 2006-04-11 23:59 Sven Köhler
2006-04-12 0:30 ` [gentoo-user] reiserfs->ext3 Sven Köhler
2006-04-12 5:51 ` [gentoo-user] reiserfs->ext3 Dirk Heinrichs
0 siblings, 2 replies; 13+ messages in thread
From: Sven Köhler @ 2006-04-11 23:59 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 448 bytes --]
Hi,
i once read about a tool to convert a reiserfs to ext3 - but without
using to much additional space. Instead, that tool claimed to use a
sparse-file within the original filesystem to create the new filesystem
by moving the files to new FS contained in the sparse file.
Do you know tools, that can convert reiserfs to ext3 or the other way
round? I have forgotten the name of the tool that i once read about :-(
Thanks
Sven
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 251 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-user] Re: reiserfs->ext3
2006-04-11 23:59 [gentoo-user] reiserfs->ext3 Sven Köhler
@ 2006-04-12 0:30 ` Sven Köhler
2006-04-12 3:12 ` Sven Köhler
2006-04-12 5:51 ` [gentoo-user] reiserfs->ext3 Dirk Heinrichs
1 sibling, 1 reply; 13+ messages in thread
From: Sven Köhler @ 2006-04-12 0:30 UTC (permalink / raw
To: gentoo-user
> Do you know tools, that can convert reiserfs to ext3 or the other way
> round? I have forgotten the name of the tool that i once read about :-(
http://tzukanov.narod.ru/convertfs/
And i'm running it right now ... oh oh ...
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-user] Re: reiserfs->ext3
2006-04-12 0:30 ` [gentoo-user] reiserfs->ext3 Sven Köhler
@ 2006-04-12 3:12 ` Sven Köhler
2006-04-12 20:01 ` Hemmann, Volker Armin
0 siblings, 1 reply; 13+ messages in thread
From: Sven Köhler @ 2006-04-12 3:12 UTC (permalink / raw
To: gentoo-user
>> Do you know tools, that can convert reiserfs to ext3 or the other way
>> round? I have forgotten the name of the tool that i once read about :-(
>
> http://tzukanov.narod.ru/convertfs/
> And i'm running it right now ... oh oh ...
Yes! my Gentoo had just gone to hell!
Don't use convertfs ;-)
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Re: reiserfs->ext3
2006-04-12 3:12 ` Sven Köhler
@ 2006-04-12 20:01 ` Hemmann, Volker Armin
2006-04-12 21:14 ` Joshua Schmidlkofer
0 siblings, 1 reply; 13+ messages in thread
From: Hemmann, Volker Armin @ 2006-04-12 20:01 UTC (permalink / raw
To: gentoo-user
On Wednesday 12 April 2006 05:12, Sven Köhler wrote:
> >> Do you know tools, that can convert reiserfs to ext3 or the other way
> >> round? I have forgotten the name of the tool that i once read about :-(
> >
> > http://tzukanov.narod.ru/convertfs/
> > And i'm running it right now ... oh oh ...
>
> Yes! my Gentoo had just gone to hell!
> Don't use convertfs ;-)
# Tom Payne <twp@gentoo.org> (15 Jan 2006)
# sys-fs/convertfs is broken. Masked pending likely removal. Bug # 107635.
sys-fs/convertfs
one look into package.mask could have told you that.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Re: reiserfs->ext3
2006-04-12 20:01 ` Hemmann, Volker Armin
@ 2006-04-12 21:14 ` Joshua Schmidlkofer
2006-04-13 1:08 ` Hemmann, Volker Armin
2006-04-13 1:50 ` [gentoo-user] eth0 and eth1 configs flip flop Kenton Groombridge
0 siblings, 2 replies; 13+ messages in thread
From: Joshua Schmidlkofer @ 2006-04-12 21:14 UTC (permalink / raw
To: gentoo-user
I do something like this:
for x in /*; do
if [ ${x} != "/usr" ]; then
tar zcf ${x}.tar ${x}
fi
done
for x in /usr/*; do
tar zcf /usr_`basename ${x}`.tar ${x}
done
Then you save those files to another medium [i.e. cd, or another host
or hard drive or something]
format your root fs with the new fs, and copy those files back and untar.
Livecd:
mkfs.ext3 /dev/node
mount /dev/node /mnt/gentoo
cd /mnt/gentoo
[copy files here...]
for x in *.tar.gz; do
tar zxf ${x}
done
That's pretty much it.
On 4/12/06, Hemmann, Volker Armin <volker.armin.hemmann@tu-clausthal.de> wrote:
> On Wednesday 12 April 2006 05:12, Sven Köhler wrote:
> > >> Do you know tools, that can convert reiserfs to ext3 or the other way
> > >> round? I have forgotten the name of the tool that i once read about :-(
> > >
> > > http://tzukanov.narod.ru/convertfs/
> > > And i'm running it right now ... oh oh ...
> >
> > Yes! my Gentoo had just gone to hell!
> > Don't use convertfs ;-)
>
> # Tom Payne <twp@gentoo.org> (15 Jan 2006)
> # sys-fs/convertfs is broken. Masked pending likely removal. Bug # 107635.
> sys-fs/convertfs
>
> one look into package.mask could have told you that.
>
> --
> gentoo-user@gentoo.org mailing list
>
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Re: reiserfs->ext3
2006-04-12 21:14 ` Joshua Schmidlkofer
@ 2006-04-13 1:08 ` Hemmann, Volker Armin
2006-04-13 1:50 ` [gentoo-user] eth0 and eth1 configs flip flop Kenton Groombridge
1 sibling, 0 replies; 13+ messages in thread
From: Hemmann, Volker Armin @ 2006-04-13 1:08 UTC (permalink / raw
To: gentoo-user
On Wednesday 12 April 2006 23:14, Joshua Schmidlkofer wrote:
> I do something like this:
>
> for x in /*; do
> if [ ${x} != "/usr" ]; then
> tar zcf ${x}.tar ${x}
> fi
> done
>
> for x in /usr/*; do
> tar zcf /usr_`basename ${x}`.tar ${x}
> done
>
> Then you save those files to another medium [i.e. cd, or another host
> or hard drive or something]
>
tar -cf /dev/st0 / --exclude=/proc --exclude=/sys --exclude=/dev
and after mkfs
tar -xf /dev/st0
that is, what big tapedrives are made for ;)
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-user] eth0 and eth1 configs flip flop
2006-04-12 21:14 ` Joshua Schmidlkofer
2006-04-13 1:08 ` Hemmann, Volker Armin
@ 2006-04-13 1:50 ` Kenton Groombridge
2006-04-13 1:44 ` Ryan Tandy
` (3 more replies)
1 sibling, 4 replies; 13+ messages in thread
From: Kenton Groombridge @ 2006-04-13 1:50 UTC (permalink / raw
To: gentoo-user
I have two NICs in my system, one for Internet and the other for my
private network. The NIC that I want to be eth0 uses the forcedeth
module and the NIC I want to be eth1 uses the 3c59x module.
I have set up aliases in my /etc/modules.d/forcedeth:
alias eth0 forcedeth
and /etc/modules.d/3c59x
alias eth1 3c59x
My systems used to load these correctly, but lately it has been loading
the forcedeth as eth1 and 3c59x as eth0.
Even when I stop both net.eth0 and net.eth1 and unload the modules and
start net.eth0, it still loads the 3c59x which should be eth1.
My /etc/modules.autoload.d/kernel-2.6 do not load these modules.
What I can do to ensure that it associates the correct module with the
correct eth?
Thanks,
Ken
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] eth0 and eth1 configs flip flop
2006-04-13 1:50 ` [gentoo-user] eth0 and eth1 configs flip flop Kenton Groombridge
@ 2006-04-13 1:44 ` Ryan Tandy
2006-04-13 1:48 ` Ryan Tandy
` (2 subsequent siblings)
3 siblings, 0 replies; 13+ messages in thread
From: Ryan Tandy @ 2006-04-13 1:44 UTC (permalink / raw
To: gentoo-user
Kenton Groombridge wrote:
<snip>
> What I can do to ensure that it associates the correct module with the
> correct eth?
>
> Thanks,
> Ken
>
udev can help you. Unfortunately I don't know enough about it to go
into greater detail.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] eth0 and eth1 configs flip flop
2006-04-13 1:50 ` [gentoo-user] eth0 and eth1 configs flip flop Kenton Groombridge
2006-04-13 1:44 ` Ryan Tandy
@ 2006-04-13 1:48 ` Ryan Tandy
2006-04-13 5:20 ` Richard Fish
2006-04-13 5:53 ` Dirk Heinrichs
3 siblings, 0 replies; 13+ messages in thread
From: Ryan Tandy @ 2006-04-13 1:48 UTC (permalink / raw
To: gentoo-user
Kenton Groombridge <kgroombr@charter.net> wrote:
<snip>
wait, ignore me, I'm confused at the moment.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] eth0 and eth1 configs flip flop
2006-04-13 1:50 ` [gentoo-user] eth0 and eth1 configs flip flop Kenton Groombridge
2006-04-13 1:44 ` Ryan Tandy
2006-04-13 1:48 ` Ryan Tandy
@ 2006-04-13 5:20 ` Richard Fish
2006-04-13 5:53 ` Dirk Heinrichs
3 siblings, 0 replies; 13+ messages in thread
From: Richard Fish @ 2006-04-13 5:20 UTC (permalink / raw
To: gentoo-user
On 4/12/06, Kenton Groombridge <kgroombr@charter.net> wrote:
> What I can do to ensure that it associates the correct module with the
> correct eth?
Your best choice is to write udev rules for them.
A google for "udev ethernet rules" should get you started.
-Richard
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] eth0 and eth1 configs flip flop
2006-04-13 1:50 ` [gentoo-user] eth0 and eth1 configs flip flop Kenton Groombridge
` (2 preceding siblings ...)
2006-04-13 5:20 ` Richard Fish
@ 2006-04-13 5:53 ` Dirk Heinrichs
3 siblings, 0 replies; 13+ messages in thread
From: Dirk Heinrichs @ 2006-04-13 5:53 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 966 bytes --]
Am Donnerstag, 13. April 2006 03:50 schrieb ext Kenton Groombridge:
> I have two NICs in my system, one for Internet and the other for my
> private network. The NIC that I want to be eth0 uses the forcedeth
> module and the NIC I want to be eth1 uses the 3c59x module.
>
> What I can do to ensure that it associates the correct module with the
> correct eth?
As Richard already wrote, write udev rules. Read [1] to learn how to do it.
HTH...
Dirk
PS: Next time please don't start a new thread by responding to an existing
one (aka. "Thread hijacking").
[1]: http://www.reactivated.net/writing_udev_rules.html
--
Dirk Heinrichs | Tel: +49 (0)162 234 3408
Configuration Manager | Fax: +49 (0)211 47068 111
Capgemini Deutschland | Mail: dirk.heinrichs@capgemini.com
Hambornerstraße 55 | Web: http://www.capgemini.com
D-40472 Düsseldorf | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net
[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] reiserfs->ext3
2006-04-11 23:59 [gentoo-user] reiserfs->ext3 Sven Köhler
2006-04-12 0:30 ` [gentoo-user] reiserfs->ext3 Sven Köhler
@ 2006-04-12 5:51 ` Dirk Heinrichs
2006-04-12 13:44 ` [gentoo-user] reiserfs->ext3 Sven Köhler
1 sibling, 1 reply; 13+ messages in thread
From: Dirk Heinrichs @ 2006-04-12 5:51 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 612 bytes --]
Am Mittwoch, 12. April 2006 01:59 schrieb ext Sven Köhler:
> Do you know tools, that can convert reiserfs to ext3 or the other way
> round? I have forgotten the name of the tool that i once read about :-(
mkfs, but make sure you have a backup. *SCNR*
Bye...
Dirk
--
Dirk Heinrichs | Tel: +49 (0)162 234 3408
Configuration Manager | Fax: +49 (0)211 47068 111
Capgemini Deutschland | Mail: dirk.heinrichs@capgemini.com
Hambornerstraße 55 | Web: http://www.capgemini.com
D-40472 Düsseldorf | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net
[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2006-04-13 5:58 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-11 23:59 [gentoo-user] reiserfs->ext3 Sven Köhler
2006-04-12 0:30 ` [gentoo-user] reiserfs->ext3 Sven Köhler
2006-04-12 3:12 ` Sven Köhler
2006-04-12 20:01 ` Hemmann, Volker Armin
2006-04-12 21:14 ` Joshua Schmidlkofer
2006-04-13 1:08 ` Hemmann, Volker Armin
2006-04-13 1:50 ` [gentoo-user] eth0 and eth1 configs flip flop Kenton Groombridge
2006-04-13 1:44 ` Ryan Tandy
2006-04-13 1:48 ` Ryan Tandy
2006-04-13 5:20 ` Richard Fish
2006-04-13 5:53 ` Dirk Heinrichs
2006-04-12 5:51 ` [gentoo-user] reiserfs->ext3 Dirk Heinrichs
2006-04-12 13:44 ` [gentoo-user] reiserfs->ext3 Sven Köhler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox