Selamlar…
Linux’da klasörlerin boyutunun nasıl bakılacağını anlatacağım.
önce ana root’a bağlanılır. Sonra boyutunu öğrenmek istediğimiz klasörün bulunduğu dizine geçilir. Sonra ls -la ile boyut bilgisini alabiliriz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[root@webtool storage]# [root@webtool storage]# [root@webtool /]# cd storage/ [root@webtool storage]# ls -la GruplanmisResimler/ total 5976 drwxr-xr-x 6 root root 4096 Apr 16 19:21 . drwxrwxrwx 7 root root 4096 Apr 16 16:35 .. drwxr-xr-x 2 root root 2199552 Apr 16 20:09 AntenGorunumu drwxr-xr-x 2 root root 819200 Apr 16 19:28 BinaninSokakSeviyesindenGorunumu drwxr-xr-x 2 root root 765952 Apr 16 19:54 PanaromikFoto drwxr-xr-x 2 root root 2310144 Apr 16 19:39 SektorGorusu [root@webtool storage]# du -s -h /storage/GruplanmisResimler/ 32G /storage/GruplanmisResimler/ [root@webtool storage]# cd GruplanmisResimler/ [root@webtool GruplanmisResimler]# du -s -h /storage/GruplanmisResimler/AntenGorunumu/ 5.0G /storage/GruplanmisResimler/AntenGorunumu/ [root@webtool GruplanmisResimler]# du -s -h /storage/GruplanmisResimler/BinaninSokakSeviyesindenGorunumu/ 2.1G /storage/GruplanmisResimler/BinaninSokakSeviyesindenGorunumu/ [root@webtool GruplanmisResimler]# du -s -h /storage/GruplanmisResimler/PanaromikFoto/ 19G /storage/GruplanmisResimler/PanaromikFoto/ [root@webtool GruplanmisResimler]# du -s -h /storage/GruplanmisResimler/SektorGorusu/ 6.4G /storage/GruplanmisResimler/SektorGorusu/ [root@webtool GruplanmisResimler]# |
İyi Çalışmalar…