
부팅 공간이 넉넉한 것 같습니다. 전체 디스크 암호화가 있습니다.
첫 번째:
$ sudo apt-get install
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
linux-image-extra-3.13.0-67-generic : Depends: linux-image-3.13.0-67-generic but it is not installed
linux-image-generic : Depends: linux-image-3.13.0-67-generic but it is not installed
E: Unmet dependencies. Try using -f.
그 다음에:
$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
bbswitch-dkms dkms fonts-dejavu fonts-dejavu-extra lib32gcc1 libc6-i386
libcuda1-331 libvdpau1 linux-headers-3.13.0-32
linux-headers-3.13.0-32-generic linux-headers-3.13.0-37
linux-headers-3.13.0-37-generic linux-headers-3.13.0-40
linux-headers-3.13.0-40-generic linux-image-3.13.0-32-generic
linux-image-3.13.0-37-generic linux-image-3.13.0-40-generic
linux-image-extra-3.13.0-32-generic linux-image-extra-3.13.0-37-generic
linux-image-extra-3.13.0-40-generic linux-image-generic nvidia-prime
nvidia-settings screen-resolution-extra ttf-dejavu ttf-dejavu-core
ttf-dejavu-extra
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
linux-image-3.13.0-67-generic
Suggested packages:
fdutils linux-doc-3.13.0 linux-source-3.13.0 linux-tools
The following NEW packages will be installed:
linux-image-3.13.0-67-generic
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 0 B/15.2 MB of archives.
After this operation, 42.5 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
(Reading database ... 650322 files and directories currently installed.)
Preparing to unpack .../linux-image-3.13.0-67-generic_3.13.0-67.110_amd64.deb ...
Done.
Unpacking linux-image-3.13.0-67-generic (3.13.0-67.110) ...
No apport report written because the error message indicates a disk full error
dpkg: error processing archive /var/cache/apt/archives/linux-image-3.13.0-67-generic_3.13.0-67.110_amd64.deb (--unpack):
unable to create `/boot/config-3.13.0-67-generic.dpkg-new' (while processing `./boot/config-3.13.0-67-generic'): No space left on device
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.13.0-67-generic /boot/vmlinuz-3.13.0-67-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.13.0-67-generic /boot/vmlinuz-3.13.0-67-generic
Errors were encountered while processing:
/var/cache/apt/archives/linux-image-3.13.0-67-generic_3.13.0-67.110_amd64.deb
[ Rootkit Hunter version 1.4.0 ]
File updated: searched for 168 files, found 137
E: Sub-process /usr/bin/dpkg returned an error code (1)
nate@saturn:~$
디스크 공간을 보여주는 시스템 모니터 그림:
답변1
유닉스 파일 시스템에서 파일과 디렉토리는 inode와 데이터라는 두 부분으로 구성됩니다.
inode에는 권한, 소유자, 변경 시간, 액세스 시간 등과 같은 파일에 대한 정보가 저장됩니다.
총 inode 수는 제한되어 있으므로 디스크가 꽉 차지 않은 경우에도 해당 제한에 도달하면 장치에 남은 공간이 없습니다.
사용:
df -i
inode를 보려면 IUse가 100%이고 IFree가 0인 경우 이는 작은 파일이 많다는 의미입니다.
예를 들어 크기가 1바이트인 20억 개의 파일이 있는 경우 inode 제한에 도달할 수 있지만 디스크가 완전히 가득 차지 않을 수 있습니다.
이러한 경우에는 apt-get 업데이트를 다시 실행하는 것보다 가능한 더 많은 파일을 제거해 보십시오.