Centos는 디스크 공간을 확보합니다.

Centos는 디스크 공간을 확보합니다.

Plesk를 실행하는 CentOS 서버가 있지만 Plesk 파티션에 충분한 공간이 없습니다. 디스크 공간을 많이 사용하는 것을 좁혔는데 어떻게 앞으로 나아갈지 모르겠습니다. 이 폴더를 다른 곳으로 리디렉션할 수 있나요? 아니면 파티션 크기를 조정하는 것이 상당히 안전한가요?

df -l의 출력

Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sda5              4956284   4803960         0 100% /
/dev/sda3              4956316   2861496   1838988  61% /var
/dev/sda2            461065932  97508992 339758252  23% /home
/dev/sda1                77749     17882     55853  25% /boot
tmpfs                   978504         0    978504   0% /dev/shm
tmpfs                   978504         0    978504   0% /usr/local/psa/handlers/before-local
tmpfs                   978504         0    978504   0% /usr/local/psa/handlers/before-queue
tmpfs                   978504         0    978504   0% /usr/local/psa/handlers/before-remote
tmpfs                   978504      1900    976604   1% /usr/local/psa/handlers/info
tmpfs                   978504         0    978504   0% /usr/local/psa/handlers/spool

루트에서 du -sh * 출력

12K     aquota.user
7.8M    bin
12M     boot
168K    dev
49M     etc
93G     home
222M    lib
27M     lib64
16K     lost+found
8.0K    media
0       misc
8.0K    mnt
0       net
99M     opt
0       proc
96M     root
35M     sbin
8.0K    selinux
8.0K    srv
0       sys
44K     tmp
4.6G    usr
2.7G    var

답변1

그것을 실행하고 du -sh쓸모없는 파일로 가득 차 있지 않은지 또는 사용하지 않는 일부 프로그램을 제거할 수 있는지 확인하십시오./usr/root/root/usr

이를 사용하여 gParted파티션을 확장할 수 있으며 이는 일반적으로 안전합니다.

답변2

터미널에서 이 명령을 실행하세요.

find / -type f -size +500000k -exec ls -lh {} \;

그러면 루트 디렉터리부터 시작하여 500MB보다 큰 모든 파일이 나열됩니다.

불필요한 파일이나 코어 덤프 파일이 있는지 확인 .log하고 삭제하세요.

관련 정보