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.

    Can you explain the RAM and Hard Drive's file system?

    Discussion in 'Windows OS and Software' started by Tangledupinblue, Jun 5, 2015.

  1. Tangledupinblue

    Tangledupinblue Notebook Enthusiast

    Reputations:
    0
    Messages:
    21
    Likes Received:
    1
    Trophy Points:
    6
    Is EXT4 something which might be used as a file system of RAM, but not on a hard drive?

    And FAT32 could be used for a hard drive, but not for RAM?
     
  2. KCETech1

    KCETech1 Notebook Prophet

    Reputations:
    2,527
    Messages:
    4,112
    Likes Received:
    449
    Trophy Points:
    151
    both are hard drive file systems. ( or USB drives etc )

    ext3 and 4 are predominantly for Linux and such, FAT32 is an antiquated but functional file system from WAY back in in the windows era ( Windows 98 I believe ) and very common on smaller USB drives and SD memory cards

    http://en.wikipedia.org/wiki/File_system#Disk_file_systems

    RAM does not have a file system exactly it had memory allocation which is handled by either the CPU or a memory controller, BUT you can create a RAM drive in which a block of RAM can be used as a hard drive as well, but that's well out of the scope of normal use.
     
  3. tijo

    tijo Sacred Blame

    Reputations:
    7,588
    Messages:
    10,023
    Likes Received:
    1,077
    Trophy Points:
    581
    If you really want to know more, what you should really look into is memory hierarchy in a computer, or in other words, how the HDD/SSD interact with RAM and the CPU.

    Other than that KCETech1 has the gist of it.

    FAT32 is antiquated at this point and has been abandoned as far as operating systems go. It's still on USB drives as it's pretty basic and you rarely see cases where FAT32 is an issue on a flash drive, but it does happen (> 4 GB files anyone?).

    RAM is volatile storage and every time you power it down, the data in is is lost, whatever gets put in RAM is there because something requested the memory and the operating system put it there. There is no set file system, etc. for RAM.
     
  4. thegh0sts

    thegh0sts Notebook Nobel Laureate

    Reputations:
    949
    Messages:
    7,700
    Likes Received:
    2,819
    Trophy Points:
    331
    you must be confused with a ramdisk which lets you allocate ram as HDD space.