"IPS Khurana" ipskhurana@gmail.com wrote on Fri, 10 Oct 2008 20:13:37 +0530:
i have installed Ubuntu 8.041 LTS Desktop, then i installed Wine to install some windows based apps, i have installed windows based apps, but they are not launching..some error.. so i want to uninstall them and re-install, them, but i dont know how to *un install* those windows apps.. (ACD FotoSlate)
By default wine installs software in ~/.wine/drive_c. Just delete the directory ~/.wine if you don't want to use any existing wine run applications. Running following command from the console should be good enough for this.
rm -r ~/.wine
WARNING: Make sure that there is no white spaces within ~/.wine
Raghu
On Tuesday 14 Oct 2008, Raghu Prasad wrote:
existing wine run applications. Running following command from the console should be good enough for this.
rm -r ~/.wine
WARNING: Make sure that there is no white spaces within ~/.wine
To avoid any oops, suggest the following:
$ cd $HOME $ ls -d ./.wine $ rm -fr ./.wine
On Tue, Oct 14, 2008 at 5:35 AM, Arun Khan knura@yahoo.com wrote:
On Tuesday 14 Oct 2008, Raghu Prasad wrote:
existing wine run applications. Running following command from the console should be good enough for this.
rm -r ~/.wine
WARNING: Make sure that there is no white spaces within ~/.wine
To avoid any oops, suggest the following:
$ cd $HOME $ ls -d ./.wine $ rm -fr ./.wine
Could be a dumb question - won't this blow away all wine apps? What if there is a need to just uninstall *one* app?
Regards, Mohan S N
Mohan Nayaka wrote:
On Tue, Oct 14, 2008 at 5:35 AM, Arun Khan knura@yahoo.com wrote:
On Tuesday 14 Oct 2008, Raghu Prasad wrote:
existing wine run applications. Running following command from the console should be good enough for this.
rm -r ~/.wine
WARNING: Make sure that there is no white spaces within ~/.wine
To avoid any oops, suggest the following:
$ cd $HOME $ ls -d ./.wine $ rm -fr ./.wine
Could be a dumb question - won't this blow away all wine apps? What if there is a need to just uninstall *one* app?
Regards, Mohan S N
As far as I know, Wine also install a "wine softwate uninstaller" and a "Wine file" menu item. At least it has done in my Fedora 9 installation.
You can uninstall any program if these have uninstall scripts, as my installed seamonkey under wine has. Under wine file you can browse c:\ partition and delete any file if these have no uninstall scripts.
Hope this helps.
sadhu
On Tuesday 14 Oct 2008, Mohan Nayaka wrote:
On Tue, Oct 14, 2008 at 5:35 AM, Arun Khan knura@yahoo.com wrote:
On Tuesday 14 Oct 2008, Raghu Prasad wrote:
existing wine run applications. Running following command from the console should be good enough for this.
rm -r ~/.wine
WARNING: Make sure that there is no white spaces within ~/.wine
To avoid any oops, suggest the following:
$ cd $HOME $ ls -d ./.wine $ rm -fr ./.wine
Could be a dumb question - won't this blow away all wine apps? What if there is a need to just uninstall *one* app?
I think the OP wanted to blow away all apps. I was merely suggesting an alternate to "rm -fr ~/.wine"; if you have a space between ~ and /.wine then you have blown away your whole home directory.
-- Arun Khan
Arun Khan wrote:
On Tuesday 14 Oct 2008, Mohan Nayaka wrote:
On Tue, Oct 14, 2008 at 5:35 AM, Arun Khan knura@yahoo.com wrote:
On Tuesday 14 Oct 2008, Raghu Prasad wrote:
existing wine run applications. Running following command from the console should be good enough for this.
rm -r ~/.wine
WARNING: Make sure that there is no white spaces within ~/.wine
To avoid any oops, suggest the following:
$ cd $HOME $ ls -d ./.wine $ rm -fr ./.wine
Could be a dumb question - won't this blow away all wine apps? What if there is a need to just uninstall *one* app?
No it is not a dumb question Yes it will blow the entire wine configuration of the user.
Below is a cutout from the official wine FAQ (http://wiki.winehq.org/FAQ#head-9893ae50079ca7a959258f0bc9a17aaf2e69b391) hope it helps
3. Applications
3.1. How do I uninstall Windows applications?
Wine has its own built-in uninstaller http://wiki.winehq.org/uninstaller - equivalent of Windows "add/remove programs" function for running standardized uninstallers. In recent version, a shortcut has been added in Wine's menu, along with a shortcut to winecfg http://wiki.winehq.org/winecfg.
The uninstaller does not remove menu entries. To remove *all* Wine created menu entries run the following commands
rm -f $HOME/.config/menus/applications-merged/wine* rm -rf $HOME/.local/share/applications/wine rm -f $HOME/.local/share/desktop-directories/wine* rm -f $HOME/.local/share/icons/????_*.xpm
I think the OP wanted to blow away all apps. I was merely suggesting an alternate to "rm -fr ~/.wine"; if you have a space between ~ and /.wine then you have blown away your whole home directory.
-- Arun Khan