If you are running an Ubuntu (or other linux) commandline interface, you might have to check how much diskspace is available on the system. You can easily have the system output a list of the disk space usage on all mounted filesystems with the command df -h
.
The output depends completely on how your system is set up, but it will look something like:
1 2 3 4 5 6 7 |
Filesystem Size Used Avail Use% Mounted on /dev/sda1 110G 33G 72G 32% / none 4.0K 0 4.0K 0% /sys/fs/cgroup udev 7.7G 4.0K 7.7G 1% /dev tmpfs 1.6G 328K 1.6G 1% /run none 5.0M 0 5.0M 0% /run/lock none 7.8G 4.0K 7.8G 1% /run/shm |