Since Package Installtion error in installing color scheme in Ubuntu 18.04 LTS. I use the following commands to remove Sublime Text 3.
Remove sublime-text:
$ sudo dpkg -r sublime-text
check the rest of the paths:
$ sudo find / -name sublime*
remove the rest of the paths.
$ sudo rm -r…
Afterwards, use the following command to check uninstallation of Sublime Text 3. It is interesting to have the following results.
Query 1:
$ ls sublime*
ls: can not access ‘sublime*’: No such file or directory.
Query 2:
$ locate sublime_text
/home/user/Desktop/sublime_text.desktop
/usr/share/applications/sublime_text.desktop
$ sudo find / -name sublime*
The terminal shows the message as follows.
find: ‘run/user/1000/gvfs’: Permission denied.
As a matter of fact, I remove all of the files and paths of sublime text 3. But the terminal shows the above-mentioned inconsistent messages. Because I need to reinstall Sublime Text 3 again. To avoid any conflict issues, I need to get to know what happens. Please help give an answer.
Notes;
Sublime Text 3 is very easily uninstalled in Mac Computer. But it is a little confusing to uninstall in Ubuntu 18.04 LTS. In addition, it frequently have errors in installing packages such as color scheme in Sublime Text 3 in Ubuntu 18.04.
Thanks in advance.
Mike