Questions tagged [diskspace]

Issues relating to availability of disk space.

Questions using this tag are expected to be related to handling disk space issues, regardless of language and system.

749 questions
-1
votes
1 answer

Finding disk space details Linux server

I have a strange issue. When I use the below command [user@lautpyy003d ~]$ df -h /app/dev-data Filesystem Size Used Avail Use% Mounted on nfspci1q-2421-03.xxx.xx.xxx.xxxx:/app_nfs/lautpyy003d_4d_app_dev-data 68G 55G 14G 81% /app/dev-data The above…
user2967948
  • 529
  • 2
  • 8
  • 23
-1
votes
1 answer

reserve,used,available,total disk space in linux

Is there any single linux command or single system call through which I can get all 4 information(Total,used,free,reserved) ? I have checked following: df: does not give reserve disk space stat(): does not give reserve disk space statfs(): gives…
Ek1234
  • 407
  • 3
  • 7
  • 17
-1
votes
1 answer

deleted files remains open consuming huge disk space

I am running java processes.But that consumes huge amount of disk space keeping some deleted files opened. The location of the files is /tmp (i.e. while i am not exclusively creating those files). What can be the reason for such occurrences and how…
kalyan
  • 35
  • 1
  • 8
-1
votes
1 answer

Powershell script to get the cpu utilization , disk Space, MemoryUsage and users

Hi Can someone help me to get the desired output. GC D:\ServerList.txt | % { $xl = New-Object -ComObject "Excel.Application" $xl.Visible = $true $xl.DisplayAlerts = $false #for debugging, no prompts to save, etc. $ConvertToGB = (1024 * 1024 *…
-1
votes
4 answers

Linux: Find out top 10 recently updated files / folders

I would like to find out what were top consuming files or folders in linux, which consumes most space (in human readable form - in MB or in GB) files or folders should be recently modified - for example within last month. I suspect this is…
TarmoPikaro
  • 4,723
  • 2
  • 50
  • 62
-1
votes
1 answer

virtualbox full disk though enough free space

Guest Ubuntu: df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 15G 14G 116M 100% / disk analyzer: 14GB used 13.3 free 900MB / 100% 6,6GB 7 GB free space are missing can someone help?
Gobliins
  • 3,848
  • 16
  • 67
  • 122
-1
votes
1 answer

df --total command for mac?

I want to use command line to retrieve the total disk space on a machine as one value. On most Linux machines, the "df --total" returns such a value at the end of the regular df output. On osx9, 10, 11, and 12, there seems to be no option like…
-1
votes
2 answers

linux disk space figures not adding up

I realize this question has been asked a number of times but none of the solutions have helped me understand my problem. This is the output I get from df -h: Filesystem Size Used Avail Use% Mounted on udev 16G…
jgozal
  • 1,480
  • 6
  • 22
  • 43
-1
votes
2 answers

Retrieve free internal memory on an Android device

I would like to know how I can retrieve device information on my Android mobile application as the free internal memory available on the device.
-1
votes
1 answer

Missing disk space in server

I have a problem guys! I'm setting up a new server, installing MySQL and importing some databases from an old server. But now the server is full! And I don't know where to start to search. When I did du -sh I got this:…
-1
votes
1 answer

How to list out disk-info?

Edited after some development. I'm trying to make a script that finds all computers in an Organizational Unit (in Active Directory), and lists out size of the drive and amount of free space available. This is what I got now: $ou =…
-1
votes
2 answers

SQLite DB Size Column Data Type Considerations

I'm working with an SQLite DB where all columns are of NVARCHAR data type. Coming from MS SQL background I know that NVARCHAR has additional baggage associated with it, my first impulse is to refactor most column types to have concrete string…
AlexVPerl
  • 7,652
  • 8
  • 51
  • 83
-1
votes
1 answer

Is there a way to detect used disk space for the application?

I need to check if my application uses more than 300mb disk space. How can I do this?
-1
votes
2 answers

restart mysql database when full

I have a remote MYSQL database and it was filling up with data, so I was busy deleting data via mysql workbench when I lost the connection and was unable to connect to that table again. I shut down and restarted the server, however it would not…
-1
votes
3 answers

Check free space in Linux

I'm using this code to check Free space in Linux: public final class EnvironmentCheck { public EnvironmentCheck() { // If the HDD Free Space is less than 200 Megabytes write message HDD is too low if (200 >…
user1285928
  • 1,328
  • 29
  • 98
  • 147