Go Back   StrafeRight Forums > Games > Shooters

Shooters Prepare for unforseen consequences. (e.g. Battlefield, Call of Duty, Counter-Strike, Team Fortress)

Closed Thread
 
LinkBack (18) Thread Tools
  #11 (permalink)  
Old 01-01-2007, 01:14 AM
Teck's Avatar
The Tux
 
Join Date: Nov 2004
Location: Inside The StrafeRight.com Webserver.
Posts: 11,122
Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.
Should put it on the EA-UK forums...
__________________

"Teck will be working on God's forum" -VincentVega

"...and I like killing zombies and Cap'n Crunch. you put those two together and you've got one LETHAL-ASS good time combo" -DanFortH

"An SQL query walks into a full bar and sees two tables in the corner, so he walks up to them and says... `Mind if I join you?`" -Evill

"teck is the noobest leet guy I've ever met" -CoffeeShark
  #12 (permalink)  
Old 01-01-2007, 01:31 AM
Colin Dean's Avatar
Usr1718(been here awhile)
 
Join Date: Jun 2003
Location: Volant, PA
Posts: 297
Colin Dean loves playing with their D-key!
Send a message via AIM to Colin Dean
Quote:
Originally Posted by brwyatt
Apparently these files are given a specific amount of space to use by the system, but do not fill that whole space. To me, this makes it more believable that this is a kernel-level driver, by allocating more space than is needed, it ensures that the file can not run out of space if it needs to be modified or modify itself, which would add stability.
IIRC, each file object (file or directory) in FAT or NTFS occupies at least 4 KB of space, as that's the smallest block size to which something can be written. It can be larger and not occupy space (something that's 15 KB takes up 15 KB, not 16 KB). Someone with more intricate knowledge of FAT/NTFS could probably shed more light on this.
__________________
sR .:. Colin Dean
l4d . tf2 . irc
Buy my stuff. ...please?
Parolu al mi esperante!
I will not participate in sR political discussions. I will not participate in sR political discussions. I will not participate in sR political discussions. D'oh.

  #13 (permalink)  
Old 01-01-2007, 12:38 PM
Registered User
 
Join Date: Apr 2006
Location: Texas
Posts: 189
brwyatt loves playing with their D-key!
Send a message via ICQ to brwyatt Send a message via AIM to brwyatt Send a message via MSN to brwyatt Send a message via Yahoo to brwyatt
Ah, such good replies...

First off:Thank you Colin Dean, I forgot that I left the block size at default and didn't make it whatever the smallest size is.

As far as 64-bit versions, just as 32-bit windows is compatible with 16-bit apps, so is 64-bit Windows with 32-bit apps. As far as access to the kernel, that would probably show that it does not directly install INTO the kernel, but rather along side it as a "plug-in" of such, which would be a smarter move to greater stability on the system.

So I guess that the mystery of the weird file sizes is solved, thank you Colin Dean, but now we have to wonder why they would delete it. Also, thanks for the clue Cameraman that can help point us in the correct direction for how the driver work/affects a system.

Cameraman: did you install using Compatibility Mode?
__________________

Thanx DanFortH
  #14 (permalink)  
Old 01-01-2007, 01:14 PM
Dopefish's Avatar
ALTMAN BE PRAISED
 
Join Date: Apr 2006
Location: Ohio
Posts: 4,910
Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!
Send a message via AIM to Dopefish Send a message via MSN to Dopefish
Quote:
Originally Posted by Colin Dean
IIRC, each file object (file or directory) in FAT or NTFS occupies at least 4 KB of space, as that's the smallest block size to which something can be written. It can be larger and not occupy space (something that's 15 KB takes up 15 KB, not 16 KB). Someone with more intricate knowledge of FAT/NTFS could probably shed more light on this.
kind of... it depends on what you set your block size too

if you have it set to 4kb... the smallest any data will be is 4kb... so even if it's 1,234 bytes, it's going to take 4,096 bytes (4kb)
if you have it set to 4kb... and the file is larger than 4kb... it will allocate another block... so if the file is 5,432 bytes large... it's going to take 8,192 bytes of space on the disk

use of 4kb is not recommended by me... it would be faster if you deal with lots and lots of small files... but using larger block sizes will improve the performance of larger files... like movies, games, music, etc

so if you use 64kb blocks... the smallest data will be on the drive is 65,536 bytes... so if you have 10 files that are under 1kb in size... it's going to use 64kb * 10... (655,360 bytes [640kb]) rather than 10kb

windows doesnt support the usage of empty space in blocks... only a select few filesystems do... if i recall correctly... freebsd (or maybe *bsd in general) can use empty space in the blocks... i also forget the name they use for it but it's pretty interesting stuff since 1 block can actually contain data for more than 1 file
__________________
  #15 (permalink)  
Old 01-01-2007, 05:48 PM
Registered User
 
Join Date: Apr 2006
Location: Texas
Posts: 189
brwyatt loves playing with their D-key!
Send a message via ICQ to brwyatt Send a message via AIM to brwyatt Send a message via MSN to brwyatt Send a message via Yahoo to brwyatt
Yeah. I usually have it set to the smallest possible size to save space and room. When I formatted, I forgot to set the block size. I can't believe I did that.

I still haven't gotten around to doing any "snooping" yet, but I will eventually. If anyone else wanted to help out with it, go right ahead, "divide and conquer."

And since EA deleted that thread, I'm sure they didn't want us to know about it. Should be fun to see EA's reaction if this gets better known than it is now.
__________________

Thanx DanFortH
  #16 (permalink)  
Old 01-01-2007, 05:59 PM
Teck's Avatar
The Tux
 
Join Date: Nov 2004
Location: Inside The StrafeRight.com Webserver.
Posts: 11,122
Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.
Quote:
Originally Posted by brwyatt
Yeah. I usually have it set to the smallest possible size to save space and room. When I formatted, I forgot to set the block size. I can't believe I did that.

I still haven't gotten around to doing any "snooping" yet, but I will eventually. If anyone else wanted to help out with it, go right ahead, "divide and conquer."

And since EA deleted that thread, I'm sure they didn't want us to know about it. Should be fun to see EA's reaction if this gets better known than it is now.
Put it on the EA-UK forums and dont say it got deleted last time...
__________________

"Teck will be working on God's forum" -VincentVega

"...and I like killing zombies and Cap'n Crunch. you put those two together and you've got one LETHAL-ASS good time combo" -DanFortH

"An SQL query walks into a full bar and sees two tables in the corner, so he walks up to them and says... `Mind if I join you?`" -Evill

"teck is the noobest leet guy I've ever met" -CoffeeShark
  #17 (permalink)  
Old 01-01-2007, 08:51 PM
Registered User
 
Join Date: Apr 2006
Location: Texas
Posts: 189
brwyatt loves playing with their D-key!
Send a message via ICQ to brwyatt Send a message via AIM to brwyatt Send a message via MSN to brwyatt Send a message via Yahoo to brwyatt
O....k....

But why put it on the UK one? Why not just repost to the US one?
__________________

Thanx DanFortH
  #18 (permalink)  
Old 01-01-2007, 09:22 PM
Teck's Avatar
The Tux
 
Join Date: Nov 2004
Location: Inside The StrafeRight.com Webserver.
Posts: 11,122
Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.Teck is Pro.
Quote:
Originally Posted by brwyatt
O....k....

But why put it on the UK one? Why not just repost to the US one?
Because more people read the UK one and the mods are easy going.....
__________________

"Teck will be working on God's forum" -VincentVega

"...and I like killing zombies and Cap'n Crunch. you put those two together and you've got one LETHAL-ASS good time combo" -DanFortH

"An SQL query walks into a full bar and sees two tables in the corner, so he walks up to them and says... `Mind if I join you?`" -Evill

"teck is the noobest leet guy I've ever met" -CoffeeShark
  #19 (permalink)  
Old 01-01-2007, 09:23 PM
Registered User
 
Join Date: Jan 2007
Posts: 2
Cameraman loves playing with their D-key!
Maybe they don't delete stuff as much I dunno. Whenever I'm searching for something useful about Battlefield, the posts are usually on the UK one. They actually have intelligent discussions there
  #20 (permalink)  
Old 01-01-2007, 10:26 PM
Dopefish's Avatar
ALTMAN BE PRAISED
 
Join Date: Apr 2006
Location: Ohio
Posts: 4,910
Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!Dopefish pwns more than FPS Doug!
Send a message via AIM to Dopefish Send a message via MSN to Dopefish
Quote:
Originally Posted by brwyatt
Yeah. I usually have it set to the smallest possible size to save space and room. When I formatted, I forgot to set the block size. I can't believe I did that.
yeah, it will save more space in the end... but with todays harddrive sizes and the need for speed... id rather go with a larger size and lose a little space for the extra performance
__________________
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


LinkBacks (?)
LinkBack to this Thread: http://www.straferight.com/forums/shooters/170186-ever-wonder-why-process-named-bf2142pace.html
Posted By For Type Date
BlackOps Platoon :: View topic - Ever wonder why BF2142 process is named "pace2142?&quot This thread Refback 07-09-2007 10:39 PM
EveryDigg » 2006 » December This thread Refback 06-10-2007 09:29 AM
digg / dmoney22 / news / dugg This thread Refback 05-18-2007 06:23 AM
strafeRight - Battlefield 2142 This thread Refback 03-09-2007 01:45 PM
EA Link...worth getting via it - Steam Users Forums This thread Refback 02-28-2007 12:51 PM
EA Link...worth getting via it - Steam Users Forums This thread Refback 02-28-2007 11:13 AM
EA Link...worth getting via it - Steam Users Forums This thread Refback 02-28-2007 03:54 AM
digg / MnMs / news / dugg This thread Refback 02-26-2007 11:00 AM
digg / sRCraig / news / dugg This thread Refback 02-24-2007 10:42 PM
Battlefield 2142 - Page 40 - TweakGuides Forums This thread Refback 02-11-2007 11:47 PM
Digg - Ever wonder why BF2142 process is named This thread Refback 02-01-2007 03:54 AM
digg / C3R3AL / news / comments This thread Refback 01-31-2007 02:13 PM
digg / 40hands / news / comments This thread Refback 01-30-2007 08:58 AM
Ph33r -> Anti Piracy in BF2142 when download via EA link This thread Refback 01-24-2007 02:46 PM
Ph33r -> Anti Piracy in BF2142 when download via EA link This thread Refback 01-24-2007 11:56 AM
Ph33r -> Anti Piracy in BF2142 when download via EA link This thread Refback 01-24-2007 08:49 AM
++Beer Garden++ - BF2142 Installs Kernal Level Copy Protection that cannot easily be uninstalled. - News - News & Resources This thread Refback 01-13-2007 01:23 PM
Digg - Ever wonder why BF2142 process is named This thread Refback 01-11-2007 10:31 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
"We"re sorry this video is no longer available" Pacmeng General Chit-Chat 6 07-03-2008 10:38 PM
Firefox users -- Neat "hack" to make it faster! Relly PC Hardware 18 08-10-2007 03:25 PM
"Peter Boyle, Ray's Dad on 'Everybody Loves Raymond,' Dies at 71" FuzzyLogik Movies & Television 10 12-14-2006 06:57 PM
Post youre Counter-Strike:Source "spray" _G_ Shooters 17 04-04-2005 01:42 PM
Laptop screen size 15" 15.4" 16.1" or 17.1" ? 2pac PC Hardware 9 10-04-2004 09:32 PM