Page 1 of 1

Eliminar archivos Thumbs.db (Solucionado)

Posted: Tue Nov 27, 2018 7:51 pm
by Gerson
Hola a todos, de nuevo acá con mis inquietudes, sepan disculpar.
Tengo una partición que usaba cuando tenía instalado Windows en esta máquina y también varios discos externos y USB que comparto información con otras máquinas y sucede que en MX se ven unos archivos ocultos en Windows pero visibles en MX con el nombre "Thumbs.db" y "Thumbs.db:encryptable"
Anteriormente cuando usaba otras distribuciones podía eliminarlos fácilmente utilizando los siguientes comandos:

$ sudo find / -type f -name Thumbs.db -exec rm -f {} \;
y
$ sudo find / -type f -name Thumbs.db:encryptable -exec rm -f {} \;

Esta instrucción busca (find) en todo el sistema de archivos (/) todos los archivos (-type f) de nombre Thumbs.db (-name Thumbs.db) y los borra (-exec rm -f {} \;)
Pero ahora al hacerlo no me lo permite como pueden ver en la imagen que adjunto.
Alguien puede explicarme cómo eliminar estos archivos, gracias.

Re: Eliminar archivos Thumbs.db

Posted: Wed Nov 28, 2018 1:13 am
by stsoh
i don't understand spanish, use google for translation;

Code: Select all

Delete files Thumbs.db

# 1 Unread post by Gerson »28 Nov 2018, 07:51
Hello everyone, again here with my concerns, know apologize.
I have a partition that I used when I had Windows installed on this machine and also several external and USB disks that share information with other machines and it happens that in MX there are some hidden files in Windows but visible in MX with the name "Thumbs.db" and "Thumbs.db: encryptable"
Previously, when using other distributions, I could easily eliminate them using the following commands:

$ sudo find / -type f -name Thumbs.db -exec rm -f {} \;
Y
$ sudo find / -type f -name Thumbs.db: encryptable -exec rm -f {} \;

This instruction searches (finds) in the whole file system (/) all files (-type f) named Thumbs.db (-name Thumbs.db) and deletes them (-exec rm -f {} \;)
But now doing so does not allow me as you can see in the picture I attached.
Can someone explain to me how to delete these files, thanks.
there isn't any need to delete thumbs.db, these r database system generated (unless u remove tumbler app).

to minimize:
use mxclean to delete thumbnail,
goto to mx tools > mx cleanup > check ~/.thumbnails (see pic screenshot.png) > apply.

second, don't show thumbnails in file manager,
open file manager, goto > edit > preferences > show thumbnails > never (see pic screenshot1.png) > close.

Re: Eliminar archivos Thumbs.db

Posted: Wed Nov 28, 2018 6:10 am
by Gerson
Gracias, @stsoh, pero no funciona para los archivos creados en Windows: "Thumbs.db", que son los que permiten ver las miniaturas en ese sistema operativo y que GNU/Linux agrega "Thumbs.db:encryptable". Acabo de hacerlo y todavía están allí.

Thanks @stsoh but it does not work for the files created in Windows: "Thumbs.db" which are the ones that allow to see the thumbnails in that OS and that GNU/Linux adds "Thumbs.db:encryptable". I just did it and they're still there.

Re: Eliminar archivos Thumbs.db

Posted: Wed Nov 28, 2018 6:21 am
by stsoh
my suggestions is for mxlinux, not windows.
windows will shows hidden files generated by other systems.
if u don't any encryption files than remove other systems that generate it.

Re: Eliminar archivos Thumbs.db

Posted: Wed Nov 28, 2018 7:21 am
by Gerson
No uso Windows solo MX Linux, lo que sucede es que son particiones o discos externos que se usaron con Windows y quedaron esos archivos "Thumbs.db" que al verlos en MX Linux aparecen y se agrega otro "Thumbs.db:encryptable".

@stsoh:
I do not use Windows only MX Linux, what happens is that they are partitions or external disks that were used with Windows and those files were "Thumbs.db" that when seen in MX Linux appear and another "Thumbs.db: encryptable" is added.

Re: Eliminar archivos Thumbs.db

Posted: Wed Nov 28, 2018 8:23 am
by stsoh
have u try using root thunar to delete it?

Re: Eliminar archivos Thumbs.db

Posted: Wed Nov 28, 2018 2:52 pm
by Gerson
Usé Thunar como único usuario en Búsqueda y me encontró 21 archivos "Thumbs.db" que ya eliminé.
No se porque con los comandos enunciados arriba, que usaba desde la terminal como root en otras distribuciones, me los buscaba y borraba en una sola acción.

@stsoh
I used Thunar as the only user in Search and found 21 files "Thumbs.db" that I already deleted.
I do not know why with the commands listed above, which I used from the terminal as root in other distributions, I looked for them and deleted them in a single action.

Re: Eliminar archivos Thumbs.db

Posted: Tue Feb 12, 2019 5:31 pm
by ederki
yo uso bleachbit, que es un limpiador bastante completo y entre otras cosas borra los thumbs, se abre como root y como usuario, por el tema de permisos. Tambien esta muy bien la herramienta de mx linux cleanup

Re: Eliminar archivos Thumbs.db

Posted: Wed Feb 13, 2019 6:46 am
by Gerson
@ederki
Cuando usaba Kubuntu y Mint alguna vez usé Bleachbit pero es tan agresiva su limpieza que en varias oportunidades me borró archivos del sistema, por eso nunca más lo voy a usar y en cuanto a la herramienta de MX Limpieza, es muy buena, basada en Bleachbit sin la agresividad de este pero, tampoco borra los archivos Thumb.db y Thumbs.db:encryptable; acabo de probarlo al ver tu comentario.

EDITO: Probé usar nuevamente los comandos desde la terminal como root y si me realiza la limpieza, salen un par de mensajes de no encontrar la carpeta o permiso negado en una pero la limpieza de esos archivos si la hace, desaparecieron.

Los comandos son:

# find / -type f -name Thumbs.db -exec rm -f {} \;
y
# find / -type f -name Thumbs.db:encryptable -exec rm -f {} \;