DeveloperBreeze

How to Completely Uninstalling Steam on Linux

# Step 1: Remove Steam and Steam launcher
sudo apt-get remove steam steam-launcher

# Step 2: Purge Steam along with configuration files
sudo apt-get purge steam steam-launcher

# Step 3: Remove Steam directory and links in the home folder
rm -rf ~/.local/share/Steam && rm -rf ~/.steam*

This will fully uninstall Steam and delete any related configuration or leftover files.

Related Posts

More content you might like

Note

Commonly used English phrases and their natural spoken

No preview available for this content.

Jan 16, 2025
Read More
Note

CSS Grid

No preview available for this content.

Jan 05, 2025
Read More
Note

Note on `npm run dev` in a Laravel Project

No preview available for this content.

Oct 24, 2024
Read More
Note

Finding and Displaying Laravel Log Modification Time Using find and stat

  • For each file found:
  • stat retrieves detailed information about the file.
  • --format="%y %n" formats the output to show:
  • %y: The last modification time of the file.
  • %n: The full file name.

This command is particularly useful for systems where the ls --time=modification option is not supported. It provides an efficient way to:

Oct 24, 2024
Read More

Discussion 0

Please sign in to join the discussion.

No comments yet. Be the first to share your thoughts!