DeveloperBreeze

How to Completely Uninstall Steam from Ubuntu

# 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

| 1 | 2 | [  Box  ] | 11 | 12 |

(Box starts at column 3 and spans 8 columns)

Jan 05, 2025
Read More
Note

Note on `npm run dev` in a Laravel Project

In development mode (npm run dev), source maps are generated, allowing developers to debug their original source code (e.g., JavaScript or Sass) within the browser, even if the code served is minified.

Running npm run dev ensures assets are properly compiled and ready for development. For production, npm run prod generates more optimized files suited for better performance.

Oct 24, 2024
Read More
Note

Finding and Displaying Laravel Log Modification Time Using find and stat

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

  • Locate specific log files (laravel.log) in a directory.
  • Display the last modification time and file name in a clean, formatted output.

Oct 24, 2024
Read More

Discussion 0

Please sign in to join the discussion.

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