

InterviewSolution
Saved Bookmarks
1. |
Solve : need solution for this question it's urgent? |
Answer» hi if you are using windows, go into my computer - right click the drive you want to check - propertiesQuote from: kuszmania9999 on January 03, 2008, 10:11:38 PM Quote from: ramyasmruthi on January 03, 2008, 10:06:23 PMif you are using windows, go into my computer - right click the drive you want to check - properties Or, as in line with the forum title, if you're using Linux, which distro are you using? In Ubuntu you just right click the partition and select properties.http://linux.about.com/b/2007/09/10/check-disk-space-with-the-commands-du-and-df.htm Quote Check Disk Space with the Commands du and dfQuote from: ramyasmruthi on January 03, 2008, 10:06:23 PM hiCode: [Select]find /path -type f -mtime -5 -ls Quote how to check disk free space Code: [Select]# df -k | awk 'NR>1{ print "Filesystem: "$1 "Free: "$4 "k"}' always look up the man page if you don't know a command. |
|