Announcement

Collapse
No announcement yet.

save my FAT's plz

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    save my FAT's plz

    Anyone know of a good free way to recover deleted FAT files? It's possible, but most programs out there just show the files and demand ~30 bucks to get em back. Any way to do this for free?

    #2
    Re: save my FAT's plz

    Ice cream... Lots and lots of ice cream.

    Comment


      #3
      Re: save my FAT's plz

      Ho ho ho ho ho.

      Comment


        #4
        Re: save my FAT's plz

        Originally posted by Red Dragon View Post
        Ice cream... Lots and lots of ice cream.
        Now you're in my territory.

        Comment


          #5
          Re: save my FAT's plz

          I think thetruecoolness linked me to a very effective, and free, file recovery progrom back when my hard drive crashed. I don't remember what it was called, but maybe he does?

          Edit: Wait, here it is. http://www.cgsecurity.org/wiki/TestDisk
          Last edited by Ryner; 11-12-2007, 10:45 PM.
          Ryner's Games

          Simple Man's Quest for the Playground* - Winner: Pavilionite Biography Contest - Click Here!

          Monster Must Die - Winner: Halloween Horror Contest - Click Here!

          All you need to play is a computer, no outside program necessary!

          Comment


            #6
            Re: save my FAT's plz

            A little off topic, but whats the differance between FAT and NTFS? And which is a better format?

            Comment


              #7
              Re: save my FAT's plz

              One takes longer to climb the stairs....?

              Comment


                #8
                Re: save my FAT's plz

                When I had to re-install XP a few months ago, it asked how I wanted to reformat my HD. FAT32 or NTFS. I choose NTFS because that's what it was to begin with. What's the difference between the two?

                Comment


                  #9
                  Re: save my FAT's plz

                  It's simply in how they store and access data. NTFS is usually a good choice.

                  http://www.microsoft.com/windowsxp/u...october01.mspx

                  "Couch co-op is the only true co-op." Richard of the Cooks.

                  Comment


                    #10
                    Re: save my FAT's plz

                    Yeah NTFS is the way to go, since it is much more reliable than FAT (well more reliable anyway). Basically a file system is just a specific definition of how the bits and bytes of your files are stored, what metadata (file name, access date, title, etc) they have, how they are accessed and where they are stored on the disk (see fragmentation), and other things like that. So the main difference between file systems are typically, reliability, speed of access, speed of search, how fragmented they get, and what security they support. Essentially it's similar to a database management system (some more than others).

                    If you would like I can get into a discussion of fragmentation but that would be pretty long. Basically the best file systems are pretty much UNIX exclusive (ReiserFS, ext3), but NTFS isn't that bad. So since NTFS is more reliable (has two File Allocation Tables, and other things), and performs at par with everything FAT has, does not have a 2-4GB limit on file size (which becomes a big deal with DVD images), and supports file level security.

                    At some point MS might get off their ass and get WINFS out, which 'should' improve search pretty dramatically, because they will finally be where other file systems have been for years (journalizing and various other smarter file storage schemes).
                    はじめまして。真(しん)の冷静(れいせい)です。どうぞよろしく。
                    http://www.thetruecoolness.com/

                    5198-2124-7210 Smash

                    Comment


                      #11
                      Re: save my FAT's plz

                      Ok, thank you. I understood most of what you said.
                      Last edited by Seraph; 11-15-2007, 09:51 PM.

                      Comment


                        #12
                        Re: save my FAT's plz

                        To sum it up. A file system is how your files and folders are ACTUALLY organized on your computer. You see C:/Program Files, the computer sees it differently. When you double click folders and files it pretty much goes, "Oh, I know where that is." The file system is what tells the computer where the file is, and all of it's information ( What it's name is, how big it is, etc; ).

                        Fragmentation is when files aren't stored in one chunk. Ever run the defragmenter tool? You see that lovely visual representation of where your files are. Those big white spaces are bad because it forces the computer to look around for your files. The closer your files are actually stored on the drive, the faster and easier the computer can peruse them.

                        UNIX has file storage systems that limit fragmentation of files. NTFS isn't too bad, but WINFS (The new system MS is doing) will be better.

                        Thank you.
                        Last edited by Chad; 11-16-2007, 12:03 AM.

                        "Couch co-op is the only true co-op." Richard of the Cooks.

                        Comment


                          #13
                          Re: save my FAT's plz

                          Oh and Windows does have the most problems with fragmentation of most OSes because they take a 'lazy' apparoach to the problem (also though I'm not certain I think it will put files randomly on the disk sometimes, just to **** with you or something), and have you run the defragmentation program every so often as opposed to having something run constantly in the background to keep things from getting fragmented (and also have better algorithms for dealing with it, though solving fragmentation problems is pretty difficult, since files change size very often).

                          Also there are two types of fragmentation, external (which is displayed in the defragger), and internal, which isn't so bad for files and is displayed in properties (Size on Disk vs Size of File). External occurs when there isn't enough space in between to files to create the file you need so it must leave that gap and put your new file elsewhere, or your old file has grown up to the boundary of another file and so your file must now be two (or more) pieces spread out on the disk, internal occurs when you give more space to a file than it needs (because of physical disk boundaries), but since most files normally grow anyways this is less of an issue. This is also why unless you have about 15% disk space you cannot defragment very well, since you need some big open spaces to move files around to defragment them.

                          So like Postulate man said, the more your files are spread around your disk, the slower things go, also the further away from the center of the disk they are the slower things go. Reason being is on a disk moving from the center to the outside (Seek Time) is much more costly than just staying put and waiting for the disk to spin to what you want (Rotational Latency), so if things are close together, there is less movement in and out.

                          Also Windows defragmenter sucks most of the time, but unfortunately most other ones cost money. So I guess you can think of it like a library, where if you can put all the books on one set of shelves it's faster to get a book, but if you have the books spread out all over the library then it takes longer. So if one of your books magically grows and there isn't room for it on the shelf anymore (since the shelves can't grow, and it would take longer to move all the other books than just the growing one), you have to move it to another shelf. Enough books do that and you now have them all over the library. Not the best analogy, but it's close enough, and I think more people will get it than the other part of this post.
                          Last edited by thetruecoolness; 11-16-2007, 12:41 AM.
                          はじめまして。真(しん)の冷静(れいせい)です。どうぞよろしく。
                          http://www.thetruecoolness.com/

                          5198-2124-7210 Smash

                          Comment

                          Working...
                          X