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

No preview available for this content.

Jan 05, 2025
Read More
Note

Note on `npm run dev` in a Laravel Project

Laravel Mix supports versioning by appending unique hashes to filenames, which is essential for cache busting. When assets are updated, browsers are forced to re-download the new versions due to the filename changes.

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.

Oct 24, 2024
Read More
Note

Finding and Displaying Laravel Log Modification Time Using find and stat

Running the command may produce output like this:

2024-12-06 10:32:45.123456789 /var/www/project1/storage/logs/laravel.log
2024-12-05 18:25:10.987654321 /var/www/project2/storage/logs/laravel.log

Oct 24, 2024
Read More

Discussion 0

Please sign in to join the discussion.

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