* [gentoo-user] Change Partition Type
@ 2006-08-03 19:52 Michael Crute
2006-08-03 19:57 ` Ow Mun Heng
` (3 more replies)
0 siblings, 4 replies; 13+ messages in thread
From: Michael Crute @ 2006-08-03 19:52 UTC (permalink / raw
To: Gentoo Lists
I have a laptop and when I initially setup the partitions I
anticipated that I would install Windoze along side of Linux for
gaming purposes, I now realize that this is never going to happen and
would like to change the partition type from NTFS to Linux Native. Is
it possible to do this without hurting the other partitions on the
disk? I really can't afford to re-format/re-install the whole machine
right now.
The partition structure looks like this:
hda1 -> NTFS (unformatted, want to convert over to Linux Native + ext3)
hda2 -> Swap
hda3 -> Linux Native (formatted ext3 with Gentoo installed)
-Mike
--
________________________________
Michael E. Crute
http://mike.crute.org
I may not have gone where I intended to go, but I think I have ended
up where I intended to be. --Douglas Adams
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 19:52 [gentoo-user] Change Partition Type Michael Crute
@ 2006-08-03 19:57 ` Ow Mun Heng
2006-08-03 19:58 ` Joe Peterson
` (2 subsequent siblings)
3 siblings, 0 replies; 13+ messages in thread
From: Ow Mun Heng @ 2006-08-03 19:57 UTC (permalink / raw
To: gentoo-user
On Thu, 2006-08-03 at 15:52 -0400, Michael Crute wrote:
> I have a laptop and when I initially setup the partitions I
> anticipated that I would install Windoze along side of Linux for
> gaming purposes, I now realize that this is never going to happen and
> would like to change the partition type from NTFS to Linux Native. Is
> it possible to do this without hurting the other partitions on the
> disk? I really can't afford to re-format/re-install the whole machine
> right now.
>
> The partition structure looks like this:
> hda1 -> NTFS (unformatted, want to convert over to Linux Native + ext3)
> hda2 -> Swap
> hda3 -> Linux Native (formatted ext3 with Gentoo installed)
>
simple.
mkft.etx3 /dev/hda1
done.
it won;t affect anything.
unless you want to have evrything as 1 big partition.
eg: had1 - linux
hda2 - swap
then u have more work .
> -Mike
>
> --
> ________________________________
> Michael E. Crute
> http://mike.crute.org
>
> I may not have gone where I intended to go, but I think I have ended
> up where I intended to be. --Douglas Adams
--
Ow Mun Heng <Ow.Mun.Heng@wdc.com>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 19:52 [gentoo-user] Change Partition Type Michael Crute
2006-08-03 19:57 ` Ow Mun Heng
@ 2006-08-03 19:58 ` Joe Peterson
2006-08-03 20:59 ` dg
2006-08-04 8:04 ` Alexander Skwar
3 siblings, 0 replies; 13+ messages in thread
From: Joe Peterson @ 2006-08-03 19:58 UTC (permalink / raw
To: gentoo-user
No problem!
Just reformat /dev/hda1. Doing this will not touch the other
partitions. Of course, if you are booting off of /dev/hda1 now, this is
problematic...
See the man page for mkfs for more info. Something like:
mkfs -t ext2 -m1 /dev/hda1
-Joe
Michael Crute wrote:
> I have a laptop and when I initially setup the partitions I
> anticipated that I would install Windoze along side of Linux for
> gaming purposes, I now realize that this is never going to happen and
> would like to change the partition type from NTFS to Linux Native. Is
> it possible to do this without hurting the other partitions on the
> disk? I really can't afford to re-format/re-install the whole machine
> right now.
>
> The partition structure looks like this:
> hda1 -> NTFS (unformatted, want to convert over to Linux Native + ext3)
> hda2 -> Swap
> hda3 -> Linux Native (formatted ext3 with Gentoo installed)
>
> -Mike
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 19:52 [gentoo-user] Change Partition Type Michael Crute
2006-08-03 19:57 ` Ow Mun Heng
2006-08-03 19:58 ` Joe Peterson
@ 2006-08-03 20:59 ` dg
2006-08-03 21:35 ` Michael Crute
2006-08-04 8:04 ` Alexander Skwar
3 siblings, 1 reply; 13+ messages in thread
From: dg @ 2006-08-03 20:59 UTC (permalink / raw
To: gentoo-user
On Thursday 03 August 2006 23:52, Michael Crute wrote:
> I have a laptop and when I initially setup the partitions I
> anticipated that I would install Windoze along side of Linux for
> gaming purposes, I now realize that this is never going to happen and
> would like to change the partition type from NTFS to Linux Native. Is
> it possible to do this without hurting the other partitions on the
> disk? I really can't afford to re-format/re-install the whole machine
> right now.
>
> The partition structure looks like this:
> hda1 -> NTFS (unformatted, want to convert over to Linux Native + ext3)
> hda2 -> Swap
> hda3 -> Linux Native (formatted ext3 with Gentoo installed)
>
> -Mike
>
> --
> ________________________________
> Michael E. Crute
> http://mike.crute.org
>
> I may not have gone where I intended to go, but I think I have ended
> up where I intended to be. --Douglas Adams
In addition to what others already suggested, it also would make sense to
actually change the partition type in the partition table:
fdisk /dev/hda
then press "t" and type partition number (1 in your case), then 83 (Linux
Native) when asked for partition type.
BR,
dmitri
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 20:59 ` dg
@ 2006-08-03 21:35 ` Michael Crute
2006-08-03 21:57 ` dg
` (2 more replies)
0 siblings, 3 replies; 13+ messages in thread
From: Michael Crute @ 2006-08-03 21:35 UTC (permalink / raw
To: gentoo-user
On 8/3/06, dg <dg@kaboom.spb.ru> wrote:
> On Thursday 03 August 2006 23:52, Michael Crute wrote:
> > I have a laptop and when I initially setup the partitions I
> > anticipated that I would install Windoze along side of Linux for
> > gaming purposes, I now realize that this is never going to happen and
> > would like to change the partition type from NTFS to Linux Native. Is
> > it possible to do this without hurting the other partitions on the
> > disk? I really can't afford to re-format/re-install the whole machine
> > right now.
> >
> > The partition structure looks like this:
> > hda1 -> NTFS (unformatted, want to convert over to Linux Native + ext3)
> > hda2 -> Swap
> > hda3 -> Linux Native (formatted ext3 with Gentoo installed)
> >
> > -Mike
> >
>
> In addition to what others already suggested, it also would make sense to
> actually change the partition type in the partition table:
> fdisk /dev/hda
> then press "t" and type partition number (1 in your case), then 83 (Linux
> Native) when asked for partition type.
Right, this is exactly what I want to do but can I do it without
seriously screwing up the disk? i.e. can I change the partition type
without screwing up the existing partitions?
-Mike
--
________________________________
Michael E. Crute
http://mike.crute.org
I may not have gone where I intended to go, but I think I have ended
up where I intended to be. --Douglas Adams
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 21:35 ` Michael Crute
@ 2006-08-03 21:57 ` dg
2006-08-03 21:59 ` Neil Bothwick
2006-08-04 3:40 ` Randy Barlow
2 siblings, 0 replies; 13+ messages in thread
From: dg @ 2006-08-03 21:57 UTC (permalink / raw
To: gentoo-user
On Friday 04 August 2006 01:35, Michael Crute wrote:
> On 8/3/06, dg <dg@kaboom.spb.ru> wrote:
> > On Thursday 03 August 2006 23:52, Michael Crute wrote:
> > > I have a laptop and when I initially setup the partitions I
> > > anticipated that I would install Windoze along side of Linux for
> > > gaming purposes, I now realize that this is never going to happen and
> > > would like to change the partition type from NTFS to Linux Native. Is
> > > it possible to do this without hurting the other partitions on the
> > > disk? I really can't afford to re-format/re-install the whole machine
> > > right now.
> > >
> > > The partition structure looks like this:
> > > hda1 -> NTFS (unformatted, want to convert over to Linux Native + ext3)
> > > hda2 -> Swap
> > > hda3 -> Linux Native (formatted ext3 with Gentoo installed)
> > >
> > > -Mike
> >
> > In addition to what others already suggested, it also would make sense to
> > actually change the partition type in the partition table:
> > fdisk /dev/hda
> > then press "t" and type partition number (1 in your case), then 83 (Linux
> > Native) when asked for partition type.
>
> Right, this is exactly what I want to do but can I do it without
> seriously screwing up the disk? i.e. can I change the partition type
> without screwing up the existing partitions?
>
> -Mike
>
> --
> ________________________________
> Michael E. Crute
> http://mike.crute.org
>
> I may not have gone where I intended to go, but I think I have ended
> up where I intended to be. --Douglas Adams
Yes, you can change the partition type of /dev/hda1, it will not affect other
partitions on /dev/hda. Just set it to Linux Native using fdisk and then mkfs
it to ext3.
BR,
dmitri
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 21:35 ` Michael Crute
2006-08-03 21:57 ` dg
@ 2006-08-03 21:59 ` Neil Bothwick
2006-08-04 3:40 ` Randy Barlow
2 siblings, 0 replies; 13+ messages in thread
From: Neil Bothwick @ 2006-08-03 21:59 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 511 bytes --]
On Thu, 3 Aug 2006 17:35:29 -0400, Michael Crute wrote:
> Right, this is exactly what I want to do but can I do it without
> seriously screwing up the disk? i.e. can I change the partition type
> without screwing up the existing partitions?
Yes, because that's all you are doing, changing the type flag for one
partition. You aren't touching the filesystems, or the information for
the other partitions, at all.
--
Neil Bothwick
-Come, come, why they couldn't hit an elephant from this dist-
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 21:35 ` Michael Crute
2006-08-03 21:57 ` dg
2006-08-03 21:59 ` Neil Bothwick
@ 2006-08-04 3:40 ` Randy Barlow
2 siblings, 0 replies; 13+ messages in thread
From: Randy Barlow @ 2006-08-04 3:40 UTC (permalink / raw
To: gentoo-user
Michael Crute wrote:
> Right, this is exactly what I want to do but can I do it without
> seriously screwing up the disk? i.e. can I change the partition type
> without screwing up the existing partitions?
As long as you only change and format the NTFS partition you should be
fine (you don't have any data on there that you need that isn't backed
up, right?)
R
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-03 19:52 [gentoo-user] Change Partition Type Michael Crute
` (2 preceding siblings ...)
2006-08-03 20:59 ` dg
@ 2006-08-04 8:04 ` Alexander Skwar
2006-08-04 13:29 ` [gentoo-user][SOLVED] " Michael Crute
2006-08-04 13:46 ` [gentoo-user] " Dirk Heinrichs
3 siblings, 2 replies; 13+ messages in thread
From: Alexander Skwar @ 2006-08-04 8:04 UTC (permalink / raw
To: gentoo-user
Michael Crute wrote:
> Is
> it possible to do this without hurting the other partitions on the
> disk?
Yes. Use fdisk to do so. Changing the part. types won't hurt
the other partitions.
Alexander Skwar
--
A wise man can see more from the bottom of a well than a fool can from a
mountain top.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user][SOLVED] Change Partition Type
2006-08-04 8:04 ` Alexander Skwar
@ 2006-08-04 13:29 ` Michael Crute
2006-08-04 13:46 ` [gentoo-user] " Dirk Heinrichs
1 sibling, 0 replies; 13+ messages in thread
From: Michael Crute @ 2006-08-04 13:29 UTC (permalink / raw
To: gentoo-user
On 8/4/06, Alexander Skwar <listen@alexander.skwar.name> wrote:
> Michael Crute wrote:
> > Is it possible to do this without hurting the other partitions on the
> > disk?
>
> Yes. Use fdisk to do so. Changing the part. types won't hurt
> the other partitions.
>
> Alexander Skwar
Perfect! Thats what I needed to know, thanks. And yes, I do have
backups but its kind of a pain to have to restore a whole system when
you have better things to do ;-)
-Mike
--
________________________________
Michael E. Crute
http://mike.crute.org
I may not have gone where I intended to go, but I think I have ended
up where I intended to be. --Douglas Adams
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-04 8:04 ` Alexander Skwar
2006-08-04 13:29 ` [gentoo-user][SOLVED] " Michael Crute
@ 2006-08-04 13:46 ` Dirk Heinrichs
2006-08-04 15:36 ` Alexander Skwar
1 sibling, 1 reply; 13+ messages in thread
From: Dirk Heinrichs @ 2006-08-04 13:46 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 848 bytes --]
Am Freitag, 4. August 2006 10:04 schrieb ext Alexander Skwar:
> Michael Crute wrote:
> > Is
> > it possible to do this without hurting the other partitions on the
> > disk?
>
> Yes. Use fdisk to do so. Changing the part. types won't hurt
> the other partitions.
Hmm, just curious: Is it really important for mkfs.* what the partition type
is? Would they refuse to create a filesystem on say an NTFS partition? If
not, would I get into trouble later, if I forgot to change the type?
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: 189 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type
2006-08-04 13:46 ` [gentoo-user] " Dirk Heinrichs
@ 2006-08-04 15:36 ` Alexander Skwar
2006-08-04 20:20 ` [gentoo-user] Change Partition Type [OT] Hans-Werner Hilse
0 siblings, 1 reply; 13+ messages in thread
From: Alexander Skwar @ 2006-08-04 15:36 UTC (permalink / raw
To: gentoo-user
Dirk Heinrichs wrote:
> Am Freitag, 4. August 2006 10:04 schrieb ext Alexander Skwar:
>> Michael Crute wrote:
>> > Is
>> > it possible to do this without hurting the other partitions on the
>> > disk?
>>
>> Yes. Use fdisk to do so. Changing the part. types won't hurt
>> the other partitions.
>
> Hmm, just curious: Is it really important for mkfs.* what the partition type
> is?
Not to my knowledge. Actually, there isn't even a part. type for
reiserfs. And that also wouldn't make much sense, I think, because
those are *PARTITION* types, while reiserfs is a *FILE* *SYSTEM* type.
> Would they refuse to create a filesystem on say an NTFS partition? If
> not, would I get into trouble later, if I forgot to change the type?
I don't see how.
Hm - UNTESTED: What happens, if you've got a JFS on a "NTFS partition"
and then boot Windows?
Alexander Skwar
--
When choosing between two evils, I always like to take the one I've never
tried before.
-- Mae West, "Klondike Annie"
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [gentoo-user] Change Partition Type [OT]
2006-08-04 15:36 ` Alexander Skwar
@ 2006-08-04 20:20 ` Hans-Werner Hilse
0 siblings, 0 replies; 13+ messages in thread
From: Hans-Werner Hilse @ 2006-08-04 20:20 UTC (permalink / raw
To: gentoo-user
On Fri, 04 Aug 2006 17:36:00 +0200
Alexander Skwar <listen@alexander.skwar.name> wrote:
> Hm - UNTESTED: What happens, if you've got a JFS on a "NTFS partition"
> and then boot Windows?
It's probably being reported as non-formatted media. Windows will offer
to format it, then. Click "OK", and your shiny JFS is gone :-)
-hwh
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2006-08-04 20:28 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-03 19:52 [gentoo-user] Change Partition Type Michael Crute
2006-08-03 19:57 ` Ow Mun Heng
2006-08-03 19:58 ` Joe Peterson
2006-08-03 20:59 ` dg
2006-08-03 21:35 ` Michael Crute
2006-08-03 21:57 ` dg
2006-08-03 21:59 ` Neil Bothwick
2006-08-04 3:40 ` Randy Barlow
2006-08-04 8:04 ` Alexander Skwar
2006-08-04 13:29 ` [gentoo-user][SOLVED] " Michael Crute
2006-08-04 13:46 ` [gentoo-user] " Dirk Heinrichs
2006-08-04 15:36 ` Alexander Skwar
2006-08-04 20:20 ` [gentoo-user] Change Partition Type [OT] Hans-Werner Hilse
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox