copia arquivos para o Nexus 4 no Kubuntu (13.04)

1

Eu sei, isso já foi perguntado algumas vezes, mas ainda estou tendo problemas para copiar os arquivos do meu novo telefone Nexus 4 montado na minha máquina Kubuntu 13.04. Eu segui o guia em: link Eu só conseguiria:

 $ cp -r /mnt/media/Albums/A\ Perfect\ Circle\ -\ Thirteenth\ Step/ .
cp: accessing ‘.’: Transport endpoint is not connected
reg@regDesktopHome:/media/nexus4/Internal storage/Music$ ls -l

mas depois disso, mount ainda mostra montado: mtpfs on /media/nexus4 type fuse.mtpfs (rw,nosuid,nodev,allow_other)

O que está acontecendo aqui? Obrigado pela ajuda!

editar

Quando tentei fsck, consegui isto:

$ sudo fsck /media/nexus4
fsck from util-linux 2.20.1
e2fsck 1.42.5 (29-Jul-2012)
fsck.ext2: Is a directory while trying to open /media/nexus4

The superblock could not be read or does not describe a correct ext2
filesystem.  If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>

$ 

e copiar um direcory com cp -r na verdade copiaria apenas o diretório, mas nenhum conteúdo e, em seguida, eu tentaria fazer uma cópia do conteúdo, seria semelhante a:

reg@regDesktopHome:/media/nexus4/Internal storage/Music/A Perfect Circle - Thirteenth Step$ cp /mnt/media/Albums/A\ Perfect\ Circle\ -\ Thirteenth\ Step/* .
reg@regDesktopHome:/media/nexus4/Internal storage/Music/A Perfect Circle - Thirteenth Step$ ls -l
total 0
reg@regDesktopHome:/media/nexus4/Internal storage/Music/A Perfect Circle - Thirteenth Step$ 

O que há com isso?

Obrigado!

    
por cerr 30.10.2013 / 05:09

1 resposta

1

Você atingiu uma peculiaridade no ponto de montagem do fusível. Você deve tentar desmontar, executar fsck ou reinicializar o sistema.

sudo fsck /media/nexus4
sudo umount /media/nexus4

Se ainda não desmontar, reinicie o sistema. Depois de desmontar o sistema de arquivos, monte o dispositivo novamente.

    
por Braiam 30.10.2013 / 05:15