You are not logged in.
I'm trying to delete a folder that was created by some app or I don't know what, even as root I can't do it. I've tried logging in as root through Dolphin, I've tried renaming, I've tried deleting through the terminal and the message is always the same "Unable to remove the folder".
Does anyone know what to do?
Look:
https://ibb.co/H2jNXPC
In the terminal it appears like this:
/home/willian/x\u001EV
Last edited by willianholtz (2023-10-21 23:20:29)
Offline
What is the output of:
stat /home/willian/x\u001EV
rm -r /home/willian/x\u001EVOffline
Nonexistent file
Offline
What about:
ls -d /home/willian/*VOffline
The picture has more unicode chars than \u001E and notably before the "x" so there're probably some escape sequences in there that spoil the console output.
printf '%q\n' /home/willian/* | curl -F 'file=@-' 0x0.stEdit: use absolute path
Last edited by seth (2023-10-21 19:23:44)
Online
ls -d /home/willian/*V
'/home/willian/'$'\320\302''x'$'\312\036''V'
and printf
http://0x0.st/HJt4.txt
EDIT:
rm -r $'/home/willian/\320\302x\312\036V' Solve the problem!
Last edited by willianholtz (2023-10-21 23:19:55)
Offline
https://de.wikipedia.org/wiki/ISO_8859 ?
localectl
localeOnline