Very well explained. I am new to Linux and this would really help in determining disk utilisation issues. Really appreciate your video.
@virtualitlearning14752 жыл бұрын
Thank you. Appreciate your feedback.
@antarinchakrabarty88962 жыл бұрын
Very nice illustration through examples...combining output of du/df with grep, sort etc. Very useful. I will re-visit surely in the course of work
@virtualitlearning14752 жыл бұрын
Thank you. Appreciate your feedback.
@sivaprasadghanta Жыл бұрын
very well explained. in the server if we unable to execute the df,du commands how to check disk utilization
@lorianguillaume Жыл бұрын
Thank you so much for sharing your knowledge! It was very helpful 🙏
@shankarijayaram80442 жыл бұрын
Great video.. Thanks much for this information and video is very clear.
@virtualitlearning14752 жыл бұрын
Thank you. Appreciate your feedback.
@ShankarDada010 Жыл бұрын
What is the command to check total space of Linux server
@excalibur77332 жыл бұрын
Can u tell me exactly how to clear disk space for linux because I need more disk space or I don't have enough.
@virtualitlearning14752 жыл бұрын
Hello, the first step is to identify the top files / folders with their consumption. Please use the commands below: a) du -shc * | sort -nr (you can also add | grep G at the end to list only the folders with GB’s in size) b) Now to remove an unnecessary folder, use the command: rm -r ; (this command will delete a folder recursively, including all sub-folders in it so be careful when using this command). Same way to delete a file, use the command; rm ; you can use -f to force delete the file if it prompts you before delete action.
@ZiaKhan-fj8wn2 жыл бұрын
Buddy Some time I face an issue during login of Linux I am stuck in the Linux login loop and other ever I try to install something. Linux how me a message like this you ""don't have enough free space in var/cache/archives............."" Do You have a solution for this Kindly make a video on it? how I can increase my Linux space.
@kehindedabiri4222 жыл бұрын
i am having low disk space on 'filesystem root" on my NVR , but dont know how to go about it, any help?. The vendor has stopped supporting me, and i dont have linux knowledge
@virtualitlearning14752 жыл бұрын
If you want to display the total usage information of a mount point then you can use the below command. $ df . -h If you want to display a list of all amounts with their allocated and used space then use the below command. $ df -h If you want to list all files/directories with their space consumption then use the below command: $ du -shc * (or du -shc * | sort -nr) -- this is very useful when you are facing space issues and need to determine as which file(s) are taking up the space and make space available accordingly.
@Catge2 жыл бұрын
How would you list the amount of disk on a linux system?
@virtualitlearning14752 жыл бұрын
If you want to display the total usage information of a mount point then you can use the below command. $ df . -h If you want to display a list of all amounts with their allocated and used space then use the below command. $ df -h If you want to list all files/directories with their space consumption then use the below command: $ du -shc * (or du -shc * | sort -nr) -- this is very useful when you are facing space issues and need to determine as which file(s) are taking up the space and make space available accordingly.
@positiveprogrammer29182 жыл бұрын
anthor walk through from scratch to clean up space 9:09
@anasakura56603 жыл бұрын
How about the historical data?
@virtualitlearning14752 жыл бұрын
Hello, the command below will return all files / folders with their consumption: du -shc * | sort -nr (you can also add | grep G at the end to list only the folders with GB’s in size)
@superg-reezy9432 жыл бұрын
why does look like rocket science? no offense you know what your doing but its just really hard to figure this out.
@amitdubey9862 жыл бұрын
You need to try doing it to figure out this is not rocket science. The author here tried to make it as simple as it could be. You need to put little effort to understand this.
@sotecluxan42212 жыл бұрын
@@amitdubey986 Requires reading, many cannot do this properly, nowadays. Everything spoonfed, even then.....
@TanmoyDas-pn1nd2 жыл бұрын
How do I clear my sda1 folder? Kindly help me. [root@centos-4gb-nbg1-3 log]# df . -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 38G 37G 0 100% /
@virtualitlearning14752 жыл бұрын
Hello, Please try the below steps: 1) Go to the directory /sda1 2) Run the below command to determine which file or folder is taking up the space: $ du -shc * (you can add | more at the end if listing is too long to fit on one page and then scroll through. Then delete the unwanted files) OR 3)$ find . -size +10M -type f -exec ls -ltrh {} \; This command will return files with size higher than 10M (you can change any value here) then delete the unwanted files. Thanks.