Das System

Das System

Das System

  • Eine Instanz, die aufAmazon EC2
  • Es ist einm1.großEC2-Instanz
  • Die Instanz läuftUbuntu Server 12.04 LTS

Folgendes passiert …

Führen wir zunächst Folgendes aus:

root@host:~# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/xvda1      9.9G  6.6G  2.8G  71% /
udev            3.7G  8.0K  3.7G   1% /dev
tmpfs           746M  184K  745M   1% /run
none            5.0M     0  5.0M   0% /run/lock
none            3.7G     0  3.7G   0% /run/shm
/dev/xvdb       414G  199M  393G   1% /mnt

Die obige Ausgabe sagt uns, dass 199 MB oder 1 % /dev/xvdb(unseres temporären Speichers) verwendet werden. Die Ausgabe lssagt uns jedoch, dass das Gerät so gut wie leer ist.

root@host:~# ls -lah /mnt
total 24K
drwxr-xr-x  3 root root 4.0K Nov 11 11:27 .
drwxr-xr-x 23 root root 4.0K May  1 15:57 ..
drwx------  2 root root  16K Nov 11 11:27 lost+found

Was nimmt den ganzen Platz ein?

Bearbeiten: Zusätzliche Informationen …

Wie in den Kommentaren unten empfohlen, ist hier die Ausgabe von du -sch /mnt:

root@host:~# du -sch /mnt
20K     /mnt
20K     total

... und hier ist die Ausgabe von mount:

root@host:~# mount
/dev/xvda1 on / type ext4 (rw)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
/dev/xvdb on /mnt type ext3 (rw)

Antwort1

Versuchen Sie, du -hk /mntdie Festplattennutzung anzuzeigen

verwandte Informationen