The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Need help converting a FAT32 partition to EXT3

    Discussion in 'Linux Compatibility and Software' started by The Fire Snake, Dec 20, 2008.

  1. The Fire Snake

    The Fire Snake Notebook Virtuoso

    Reputations:
    426
    Messages:
    2,889
    Likes Received:
    0
    Trophy Points:
    55
    Hi everybody,
    I have had an old FAT32 partition laying around on my disk for a while which stored some files of mine all this time. It has actually worked decent over the years but I would rather it be EXT3. So in that effort I used Gparted and deleted this partition and created an EXT3 partition from the resultant space. All of this has worked fine, but now I am having trouble mounting it upon boot. I have the old FAT32 entry for this partition in my fstab file but I need to modify this line to mount this EXT3 partition instead. I am getting hung up on the parameters. I have 2 questions:

    1.) Can I use the same parameters that I have for my /home partition that is also EXT3(baring of course the mount point and device name)? Or should I use the line for the / partition? The fstab entry for the / partition is slightly different than the one for /home

    2.) There is a parameter called UUID. What do i use as a value for that?

    Thanks. :)
     
  2. Amranu

    Amranu Notebook Consultant

    Reputations:
    103
    Messages:
    233
    Likes Received:
    0
    Trophy Points:
    30
    device mountpoint fstype options(defaults will work fine here) 0 0

    ie. /dev/sda5 /boot ext3 defaults 0 0 will work

    the command blkid will show you the uuid of partitions if you want, but it's not necessary
     
  3. EateryOfPiza

    EateryOfPiza Notebook Geek

    Reputations:
    24
    Messages:
    95
    Likes Received:
    0
    Trophy Points:
    15
    Code:
    ls -l /dev/disk/by-uuid
    will show you the UUIDs of your partitions.

    Then in your fstab, put
    Code:
    UUID=whatever /some/mount/point ext3 defaults 0 0