How to delete steam linux

How do I remove Steam?

Anyone know of a way to remove Steam from Ubuntu 12.04? Looked around the net but could not find an straight forward solution. Thanks.

8 Answers 8

You can use Ubuntu Software Center to uninstall or Open Terminal and execute the following command:

sudo apt-get remove steam steam-launcher 

Purge Steam Perfectly with Configuration files with the following:

sudo apt-get purge steam steam-launcher 

Never forget to delete its directory located at home folder:

rm -rf ~/.local/share/Steam && rm -rf ~/.steam 

Good morning, I installed steam using the steam install packaged from the steam site. At the present moment I have deleted the directory for it. Not sure if that is the best way to accomplish this. Thanks.

The .deb package is just a wrapper. Steam’s launcher installs itself to ~/.local/share/Steam and can be over 1GiB so make sure you remove it.

sudo apt-get purge steam sudo apt-get purge steam-launcher cd ~/.local/share && rm -rf Steam rm ~/.steampath rm ~/.steampid 

You may have only one of «steam» or «steam-launcher».

rm -rf ~/.local/share/Steam is correct but a tiny mistake—a space between ~ and / or between / and . —would result in every file in the home directory being deleted, including all the user’s documents! Therefore, I recommend instead using: cd ~/.local/share && rm -rf Steam

@RomanM.Kos I don’t follow. When users make this mistake, I think it’s almost always before they’ve typed enough characters for tab completion to be useful (whether or not they actually use tab completion). Replacing rm -rf with ls so it’s safe and easy to test, typing ls ~ and then pressing tab displays a list of ~ -shortened home directories (i.e., ~ followed by a username) for all user accounts, including those that don’t correspond to a human user of the machine (like backup ). More typing is required after this.

Removing Steam using the Ubuntu Software Centre:

  1. Open the Ubuntu Software Centre, by clicking on the appropriate icon in the launcher, or opening the dash and searching for it.
  2. Search for «Steam» in the Ubuntu Software Centre.
  3. Select it, and click «Remove»

This will remove Steam from your system. Only system files, however, will be removed, user files will not. For most programs, user files are very small and not worth worrying about, but for Steam, they include all your downloaded games, and can be quite large. To delete your user files:

  1. Open Nautilus, the default file explorer.
  2. Click «View», «Show Hidden Files», or press Ctrl — H .
  3. Navigate to .local/share/ and delete the steam folder.
Читайте также:  Linux which program use port

Removing steam using the command-line:

You can do the equivalent of the previous steps in just two commands:

$ sudo apt-get remove steam $ rm -r ~/.local/share/steam 

In general, programs on Linux tend to keep user files in hidden directories in the home folder, either under .local/share , .config or .cache , or in a separate .PROGRAMNAME directory. Hidden files and directories always begin with a dot.

I had the same issue — installed with the .deb package from the website rather than using Terminal. I fixed by running:

sudo apt-get purge steam cd ~/.local/share && rm -rf Steam 

And then clicking on the menu and searching for the Steam app that was still present, right clicking it and selecting uninstall which removed the rest of the files. I hope this helps!

Open a terminal window ( Ctrl + Alt + T ). Then type:

This is to complement any of the answers mentioned here regarding Steam installed via Software Center. If you happened to have installed Steam through Wine and wanted to uninstall it you can go to ~/.wine/dosdevices/c: or by typing the letter C in Dash.

In there you will find the Program Files folder which holds the Steam client. If you deleted Wine, this folder and any other install apps will still reside here. They are not gone even if you uninstall wine. You would have to delete them manually. On the other hand, if you still have Wine installed, typing wine uninstaller will get you to the Wine uninstaller, similar to the Windows «Add & Remove app».

You can also remove everything by simply rm -fr ~/.wine assuming you already uninstalled Wine and do not care about anything else in the Wine folder.

Источник

Как мне удалить Steam?

Кто-нибудь знает способ удалить Steam из Ubuntu 12.04? Осмотрел сеть, но не смог найти прямого решения. Благодарю.

7 ответов

Вы можете использовать Ubuntu Software Center для удаления или открытия терминала и выполнить следующую команду:

Идеально очистите Steam с помощью файлов конфигурации:

Никогда не забывайте удалять его каталог, расположенный в домашней папке:

rm -rf ~/.local/share/Steam && rm -rf ~/.steam 

Пакет.deb — это просто оболочка. Пусковая установка Steam устанавливает себя в ~/.local/share/Steam и может быть более 1 ГБ, поэтому убедитесь, что вы удалите его.

sudo apt-get purge steam sudo apt-get purge steam-launcher cd ~/.local/share && rm -rf Steam rm ~/.steampath rm ~/.steampid 

У вас может быть только один из «steam» или «steam-launcher».

Читайте также:  Linux регистрация в системе

Удаление Steam с помощью Ubuntu Software Center:

  1. Откройте Центр программного обеспечения Ubuntu, щелкнув по соответствующему значку на панели запуска или открыв черту и выполнив поиск.
  2. Ищите «Steam» в программном центре Ubuntu.
  3. Выберите его и нажмите «Удалить»

Это удалит Steam из вашей системы. Однако будут удалены только системные файлы, пользовательские файлы — нет. Для большинства программ пользовательские файлы очень малы, и о них не стоит беспокоиться, но для Steam они включают в себя все загруженные вами игры и могут быть довольно большими. Чтобы удалить ваши пользовательские файлы:

  1. Откройте Nautilus, файловый менеджер по умолчанию.
  2. Нажмите «Просмотр», «Показать скрытые файлы» или нажмите Ctrl — H.
  3. Перейдите к .local/share/ и удалите steam папка.

Удаление пара с помощью командной строки:

Вы можете сделать эквивалент предыдущих шагов всего двумя командами:

$ sudo apt-get remove steam $ rm -r ~/.local/share/steam 

Как правило, программы в Linux обычно хранят пользовательские файлы в скрытых каталогах в домашней папке, либо под .local/share , .config или же .cache или в отдельном .PROGRAMNAME каталог. Скрытые файлы и каталоги всегда начинаются с точки.

У меня была та же проблема — установлен с пакетом.deb с веб-сайта, а не с помощью терминала. Я исправил, запустив:

sudo apt-get purge steam cd ~/.local/share && rm -rf Steam 

А затем нажмите на меню и найдите приложение Steam, которое все еще присутствует, щелкните его правой кнопкой мыши и выберите uninstall который удалил остальные файлы. Надеюсь, это поможет!

Откройте окно терминала ( Ctrl + Alt + T ). Затем введите:

Это дополняет любой из упомянутых здесь ответов относительно Steam, установленного через Центр программного обеспечения. Если вы установили Steam через Wine и хотите удалить его, вы можете перейти на ~/.wine/dosdevices/c: или набрав букву С в тире.

Там вы найдете Program Files папка, в которой находится клиент Steam. Если вы удалили Wine, эта папка и любые другие приложения для установки будут по-прежнему находиться здесь. Они не ушли, даже если вы удалите вино. Вам придется удалить их вручную. С другой стороны, если у вас все еще установлен Wine, введите wine uninstaller откроет вам программу удаления Wine, аналогичную Windows «Добавить и удалить приложение».

Вы также можете удалить все, просто rm -fr ~/.wine при условии, что вы уже удалили Wine и больше ничего не волнует в папке Wine.

Вы удаляете Steam так же, как и все остальные приложения. Вы ищете его в Ubuntu Software Center, а затем удаляете его.

Читайте также:  File subsystem in linux

Если вы также хотите удалить данные, созданные вашей установкой Steam (например, загруженные файлы игры), есть два возможных места, где Steam хранит эти файлы. Один каталог называется Steam прямо в вашем домашнем каталоге. Другой находится в скрытом каталоге .local/share/Steam в вашем домашнем каталоге (вы можете просмотреть скрытые файлы и каталоги, нажав CTRL+H).

Удаление этого каталога означает, что вам придется повторно загружать свои игры, когда вы решите поиграть в них снова. Существует возможность сделать резервную копию ваших игр изнутри Steam.

Источник

How do I completely remove Steam or .deb file?

I would like to know how to uninstall Steam. I looked everywhere but I cannot find any answers. I think it is worth mentioning that I installed it from a website and not the Software Store.

If you installed directly from the Ubuntu repositories or from the .deb file you can uninstall it with the Ubuntu Software tool.

I clicked on it and it opened up the launcher. This problem is fixed now. I did not remember so I did the process again. There was a remove button. Thanks.

2 Answers 2

  1. Press Ctrl + Alt + T — open a terminal
  2. Type sudo apt-get remove steam and hit ↵ Enter.
  3. Type sudo apt-get purge steam and hit ↵ Enter.
  4. Type rm -rf ~/.local/share/Steam && rm -rf ~/.steam and hit ↵ Enter.
  5. Exit the Terminal window.

Sorry, I have tried and it does not work. It says Reading package lists. Done Building dependency tree Reading state information. Done Package ‘steam:i386’ is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 135 not upgraded.

Reading package lists. Done Building dependency tree Reading state information. Done Package ‘steam:i386’ is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Answer: 1. Find the .deb file that you used to install the program. 2. Open it and it should open an install launcher. 3. There will be a red button that says remove. Click it and the program will be uninstalled.

You must log in to answer this question.

Linked

Hot Network Questions

Subscribe to RSS

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2023.7.13.43531

Ubuntu and the circle of friends logo are trade marks of Canonical Limited and are used under licence.

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Источник

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