Uma pasta não pode ser excluída

0

Recentemente o meu windows 8 caiu assim do Ubuntu eu tive que remover todos os arquivos do sistema de arquivos que estavam no Windows C partição. Mas não consigo excluir uma pasta, Program Files (x86) .

Estou usando este comando para tentar remover a pasta:

sudo rm -rf

Estou recebendo este erro:

userdata: Error removing file: Directory not empty
userdata: Error removing file: Directory not empty

E para a pasta /USERS/WINDOWS , estou recebendo este erro:

Local: Error removing file: Directory not empty
Local: Error removing file: Directory not empty
Local: Error removing file: Directory not empty
Local: Error removing file: Directory not empty
SRU000BF.log: Error removing file: No such file or directory
SRU000C0.log: Error removing file: No such file or directory
SRU000C0.log: Error removing file: Directory not empty
{533a67eb-9fb5-473d-b884-958cf4b9c4a3}: Error removing file: Directory not empty
{533a67eb-9fb5-473d-b884-958cf4b9c4a3}: Error removing file: Directory not empty
{533a67eb-9fb5-473d-b884-958cf4b9c4a3}: Error removing file: Directory not empty
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.003: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.001: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.etl: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.002: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.005: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.006: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.008: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.007: Error removing file: No such file or directory
ASHOKK~1.006: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.004: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.009: Error removing file: No such file or directory
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.009: Error removing file: Directory not empty
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.009: Error removing file: Directory not empty
ASHOKKRISHNA_kerberos_1_6_2_9200_0_0__100_6_2_9200_16384__win8_rtm_120725_1247_.009: Error removing file: Directory not empty
    
por ashok 03.03.2015 / 19:27

1 resposta

0

Instale ntfs-3g seguindo o comando:

sudo apt-get install ntfs-3g

Em seguida, execute o comando ntfsfix na sua partição NTFS.

Por exemplo:

ntfsfix /dev/sda1

Em seguida, tente remover pastas

sudo rm -rf folder

ou

sudo rm -Rf folder
    
por Faizan Akram Dar 03.03.2015 / 19:59