Удалить хромиум в линукс

How to remove chromium-browser settings from Ubuntu 14.04?

I have already gone through How do I completely uninstall Google Chrome and Chromium? and I’m really not getting why the solutions given there are not working for me. What I’m doing is:

sudo apt-get purge chromium-browser rm -rf ~/.config/chromium 
sudo apt-get install chromium-browser 

This must remove the settings of chromium-browser and do a fresh installation. The browser is uninstalling, but after being installed it is containing the previous settings, moreover it’s not signing me out of even Gmail!

I have edited my previous answer, also remove ~/.cache/chromium and /etc/chromium.Check it and if it works click the grey ☑ under the «0» at the left of this text, which means «I accept the answer» and upvote

4 Answers 4

Execute these commands in terminal :

sudo apt-get remove chromium --purge rm -rf ~/.config/chromium rm -rf ~/.cache/chromium sudo rm -rf /etc/chromium 

@Neel Then why did you accept this answer? Your comment is either false or misleadnig. If the answer didn’t solve your problem, please unaccept it, and if it did solve your problem remove your comment which is obsolate.

You don’t need to uninstall/reinstall the browser.

To delete the settings for a given user, you must delete the config folder for that user (placed in its home, as a hidden folder, thus the . at the start of the name).

You may delete that folder using the terminal or you may open the home folder in Nautilus and press Ctrl + H to show the hidden files and folders, then delete the folder you want to delete as you would do with any other file.

This prevents you from using rm -rf variations in which a small typo can have serious consequences.

sudo apt purge --remove chromium-browser -y sudo apt autoremove && sudo apt autoclean -y 

This removes the chromium browser completely

Источник

How do I completely uninstall Google Chrome and Chromium?

I’m having a problem with Chrome and one of its extensions, so I want to completely uninstall everything. I’ve uninstalled Chrome through the Software Center, but when I reinstall it, all of my extensions and preferences are still there. If I want to start over from scratch, what do I need to do?

I’m going to make this into a more general question, since the directions here will cover both Chromium and Google Chrome.

Читайте также:  Kali linux пароль при входе

3 Answers 3

Note: this recipe has been updated in 2020 to more safely backup the files rather than using a recursive delete.

To uninstall Chromium Browser, run these commands from your terminal:

$ sudo apt-get purge chromium-browser $ mv ~/.config/chromium/ ~/.config/chromium.bak/ 

To uninstall Google Chrome, run these commands from your terminal:

$ sudo apt-get purge google-chrome-stable $ mv ~/.config/google-chrome/ ~/.config/google-chrome.bak/ 

In both examples, the first command removes the package while the second command will move custom settings, such as plugins, to a backup directory.

Don’t forget there are also files in ~/.cache/google-chrome/ and ~/.config/google-chrome/ . And there are variants of Google chrome like google-chrome-beta and google-chrome-stable . If in doubt you can check you’ve got everything by running locate google-chrome . locate is a local search tool that can be installed with sudo apt install locate

For me, locate google-chrome returned a lot of files that had already been deleted. If anyone faces the same problem, run sudo updatedb to update mlocate database. ( locate searches for entries in mlocate database)

For Google Chrome:

Deleting ~/.config/google-chrome (where ~ is your home directory) should be sufficient. Why don’t you try it and see? (Of course, this will delete all your bookmarks too.)

If that’s not sufficient, you may want to also remove Google Chrome from the Terminal using the sudo apt-get purge . command (where . is replaced by the package you want to remove or a space-separated list of the packages you want to remove), or remove it in the Synaptic Package Manager (which you can install in the Software Center if you don’t have it; it’s itself provided by the package synaptic ) by right-clicking on the packages you want to remove and clicking «Mark for Complete Removal». These ways of removing packages will remove all global (i.e., non-user-specific) configuration files.

For Chromium (the completely open source counterpart to Chrome):

You can do it the same way, just delete ~/.config/chromium . You can also remove the package as mentioned above for Google Chrome. The package that provides Chromium in Ubuntu is called chromium-browser .

Источник

How to completely remove chromium browser from Ubuntu 18.04

But it is still there. If I click Activities and type Chrom.. I see Chromium . And when I click it it open the Chromium browser. I do not want to see it in my computer. How to remove it.

I do not get what are the difference between Chromium-browser, google-chrome, and chromium? Very confusing.

chromium-browser is just the package name for chromium in Ubuntu, probably because chromium itself was taken ?! Google Chrome is a browser from Chrome that is built on chromium project.

Читайте также:  Server linux под windows

2 Answers 2

sudo apt purge --remove chromium-browser -y sudo apt autoremove && sudo apt autoclean -y 

Please be aware that it will delete all user saved bookmarks, history etc once you enter these commands.

Assuming you are using Ubuntu, click on the dash button in the launcher and search for ‘System info’. Then, open ‘System info’ and move to ‘Default applications’ section. Then, click on the dropdown list next to Web. There, select ‘Google Chrome’ and it will be selected as the default web browser for your system.

enter image description here

Using GUI — If you want to delete the settings from gnome [GUI], you must delete the config folder for that user (placed in its home, as a hidden folder, thus the . at the start of the name).

You may delete that folder using the terminal or you may open the home folder in Nautilus and press Ctrl+H to show the hidden files and folders, then delete the folder you want to delete as you would do with any other file.

Источник

Установка Chromium Ubuntu 20.04

Chromium — очень популярный браузер с открытым исходным кодом, разрабатываемый компанией Google На данный момент он занимает лидирующую позицию на рынке браузеров, несмотря на то, что еще есть Mozilla Firefox, который более популярен в Linux системах. Google выпускает свой браузер в двух редакциях — Google Chrome, с закрытым исходным кодом и сбором статистики об использовании браузера, и Chromium — версия с открытым исходным кодом.

Первая редакция поставляется в виде уже готовых к установке бинарных пакетов, для Chromium же только публикуется исходный код, сборкой, подготовкой бинарников и обновлением занимается сообщество, а точнее, мейнтейнеры дистрибутивов. В этой статье мы рассмотрим как выполняется установка Chromium Ubuntu 20.04, 18.04 или 16.04.

Чем отличается Chromium от Google Chrome

Разница между Google Chrome и Chromium есть и довольно значительная. Chromium — это открытый проект по разработке легкого и быстрого браузера. Он разрабатывается сообществом и разработчиками компании Google. Исходный код браузера полностью открыт и доступен всем.

Google Chrome разрабатывается тоже в Google, но уже на основе Chromium. Он содержит в себе движок Chromium, а также модули Flash и модули для отправки статистики в Google. На базе Chromium разработан не только этот браузер, но и многие другие, включая Opera и Яндекс Браузер.

Установка Chromium в Ubuntu 20.04

Проприетарной версии в официальных репозиториях нет, но поскольку нас интересует свободная, собранная мейнтейнерами, то мы можем установить ее с помощью системного пакетного менеджера без особых проблем. Сначала обновите списки пакетов, чтобы получить самую новую доступную версию:

Затем наберите для установки:

sudo apt install chromium-browser

Будет установлена та версия, которая была актуальной на момент выпуска дистрибутива, плюс обновления безопасности, если они были. Ещё вы можете установить Chromium с помощью snap пакета:

Читайте также:  Linux info about bin

sudo snap install chromium-browser

Так вы получите самую свежую стабильную версию браузера. Но если вы хотите самую последнюю версию для разработчиков, то вам придется использовать ppa. Для добавления репозитоирия в систему выполните:

sudo add-apt-repository ppa:saiarcot895/chromium-dev

Затем обновите списки пакетов:

И теперь может быть выполнена установка Chromium Ubuntu 16.04:

sudo apt install chromium-browser

Будет установлена версия программы для разработчиков. На данный момент самая свежая — 83, а версия для разработчиков — 85. Вы можете запустить программу через терминал или из главного меню.

Чтобы посмотреть какая у вас сейчас версия наберите в адресной строке браузера chrome://version:

Удалить Chromium

Если вы больше не хотите пользоваться тестовой версией программы, то вы можете откатить ее до версии в репозиториях. Для этого нужна утилита ppa-purge:

Теперь удаляем Chromium, полностью удалив PPA и все установленные из него пакеты:

sudo ppa-purge ppa:saiarcot895/chromium-dev

Если вам нужно удалить стабильную версию, установленную из официального репозитория, выполните:

sudo apt remove chromium-browser

Все, программа удалена из вашей системы.

Выводы

Вот и все, в этой небольшой статье мы рассмотрели как выполняется установка Chromium в Ubuntu 20.04. Как видите, все очень просто и если вам достаточно стабильной версии, то вам даже не нужно использовать PPA. Если у вас остались вопросы, спрашивайте в комментариях!

Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.

Источник

How to uninstall chromium-browser from Ubuntu

Chromium is a FOSS browser that inspired Google Chrome. Chrome is not completely open source, but the main foundational parts are open source and are made available as Google Chromium, shown in figure below, which has most of the functionality of Chrome, but it is missing the Google branding, automatic updates, and is used as the test and development foundation for Chrome releases. As a point of interest, chromium is the metal from which chrome is made, hence the name.

chromium-browser command not found

You can uninstall or remove an installed chromium-browser package itself from Ubuntu through the terminal, as shown in the command below:

$ sudo apt-get remove chromium-browser

Uninstall chromium-browser including dependent package

If you would like to remove chromium-browser and it’s dependent packages which are no longer needed from Ubuntu:

$ sudo apt-get remove --auto-remove chromium-browser

Use Purging chromium-browser

If you use with purge options to chromium-browser package all the configuration and dependent packages will be removed.

$ sudo apt-get purge chromium-browser

If you use purge options along with auto remove, will be removed everything regarding the package, It’s really useful when you want to reinstall again.

$ sudo apt-get purge --auto-remove chromium-browser

Источник

Оцените статью
Adblock
detector