|
Why is it that advertised disk space is almost always higher than the disk space reported by the UI? For example, I have an "80 gb" hard drive, but the iTunes UI indicates only 74. I usually see this as well with hard disks and the amount reported with...
Started by Jeremy on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Of these, the first two can influence the amount of spaceUsually due to some partitioned ....
Disk file takes up 4K of space on disk.
You lose some space for file tables when formatting.
* 1000 * 1000 vs 1024 * 1024 * 1024) .
|
|
I'm just a lowly developer so don't really have much exposure to our virtual server infrastructure, so thought I would ask a question here.
Our IT manager just told me to ignore the 'disk space free' figure of one of the drives on our Windows Server 2...
Started by damitamit on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
It sounds like perhaps there is more space is a mechanism that applies to large-scale centralized computer disk storage systems, SANs, and storage virtualization systems.....
Of data in a volume based on the disk level summary data.
|
|
I've added another 1TB western digital disk on my computer (there is a disk with 250GB already), and after booting to Windows 7, it recognise the disk, but in the Disk Management panel, it says the disk has only 31MB TOTAL space, so is what shows in the...
Started by ZelluX on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at superuser):
It might be that the disk is set to the wrong type in the BIOS, which is why Windows is....
If this doesn't work, overlay software from the disk manufacturer can be used to partition and format the drive), and examine this hard disk.
|
Ask your Facebook Friends
|
I'm stuck here, a client has asked for 320GB of space but I only have 2x 100GB disks and a 50GB disk.
Is there a way to give the client what they want?
Any help will be greatly appreciated.
Started by wildchild on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
How do i....
I 'm stuck here,the client has asked for 320 TB of space but i have only 2 100 TB disk and a 50 TB will either need to buy a new disk, or give your client more effective space by implementing some sort disk.
|
|
What are the pro's and con's on compressing old files in the disk. I've read that compressing old files will degrade the performance on accessing the compressed files. I've got GB's of old files in my laptop, is it worth the tradeoff?
Edit:
I have the...
Started by MarlonRibunal on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
If you are running out of space on your laptop and you "need" to get more space....
Edit: Although I suggest you keep your binaries (C:\Windows and C:\Program Files) uncompressed .
I say go for it.
You'll most likely notice the space saved.
|
|
How to find how much disk space is left using Java?
Started by Roman Kagan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But you might be interested....
Now it is possible to get the free disk space in Java 6 with a method in the class name.
The problem is that the answer is system since June 1997 .
How to find the free disk space left on my system?”.
|
|
We are installing it on a box that doesn't have much space and we can't seem to find the required disk space requirements
Started by oo on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Not looking for the answer very hard were you? the real answer is too much space
I'm with badfish on this one.
Forgetting the space you need to run it, compile, sql databases, etc that sort of thing.
|
|
Hi
how i increase my disk space of database in sql server 2005?
hoping ur support,
Started by Alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
End of the filesize) and FILEGROWTH (how much to grow the file when more disk space is needed.
|
|
Disk Space? (used/free/total) how do I get this? in C++... thanks just for reading.
Started by HoNgOuRu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
GetDiskFreeSpaceEx win32 API
#include <sys/statvfs.h> #include <iostream> #include <cstring> using namespace std; int main( int argc, char *argv[] ) { struct statvfs fiData; if( argc < 2 ) { cout <<"Usage... .
Statvfs for linux.
|
|
I'm looking for the equivalent of right clicking on the drive in windows and seeing the disk space used and remaining info.
Started by Brian on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Look for the commands du (disk usage) and df (disk free)
Use the df command:
df -h
If you want to see how much space each folder ocuppes:
du -sh *
s: summarize h: human readable *: list of folders.
|