Ryan4200782 wrote: > Is rm .wine -R incorrect? Seemed to remove the wine directory. Only if you're currently in your home directory. It will try to remove the .wine directory from whatever directory you are in right now, but the directory probably doesn't exist anywhere but in /home/username. Doing: rm -rf ~/.wine or: rm -rf $HOME/.wine ensures that you remove the directory at the right location. (the f flag is for "force", which basically makes the rm command not ask any questions and "just do it".)