this post was submitted on 18 Jun 2026
5 points (61.9% liked)

linux4noobs

4227 readers
10 users here now

linux4noobs


Noob Friendly, Expert Enabling

Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.


Seeking Support?

Community Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] sin_free_for_00_days@sopuli.xyz 2 points 1 day ago* (last edited 1 day ago) (1 children)

As others have said, tab-complete should be able to do it. If not, here are two other options:

Is it the only "folder*" in the directory?

$  ls *folder*
‘folder’$‘003’

If you only have that, you should be able to use the wildcards to delete it:

rm *folder*

Another is just find the inode and delete using that:

$  ls -li | grep folder
5120013  .rw-rw-r-- user user  0 B  Fri Jun 19 21:09:02 2026 ‘folder’$‘003’

$ find . -inum 5120013 -delete
[–] OrangePumkin@piefed.nl 1 points 1 day ago

I have uninstalled and reinstalled my WSL. Nothing exists now.