• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

How to uninstall mingw-w64 from Ubuntu

by admin

MinGW (Minimalist GNU for Windows) is a software development environment that allows you to create native Windows applications using GCC (GNU Compiler Collection). It is a port of the GCC compiler and tools to Windows, and is designed to be used in combination with a set of libraries and header files known as the Win32 API.

MinGW is not natively available on Ubuntu, as it is a Windows-specific development environment. However, you can use the mingw-w64 package in Ubuntu to build Windows applications on Ubuntu using the MinGW toolchain.

To install mingw-w64 on Ubuntu, you will need to use the apt-get utility, which is a command-line package manager for Debian-based systems, including Ubuntu.

Installing mingw-w64 in Ubuntu

To install mingw-w64 with apt-get, follow these steps:

1. Open a terminal window.

2. Update the package lists by running the following command:

$ sudo apt-get update

3. Install the mingw-w64 package by running the following command:

$ sudo apt-get install mingw-w64

Uninstall mingw-w64 from Ubuntu

You can uninstall mingw-w64 package from Ubuntu through the terminal:

$ sudo apt-get remove mingw-w64

Uninstall mingw-w64 including dependent package

If you would like to remove mingw-w64 and it’s dependent packages which are no longer needed, use the below command to remove the mingw-w64 package:

$ sudo apt-get remove --auto-remove mingw-w64

Use Purging mingw-w64

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

$ sudo apt-get purge mingw-w64

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 mingw-w64 

Filed Under: Linux

Some more articles you might also be interested in …

  1. How to install virtual machines optimized and configured for the Red Hat Virtualization environment
  2. RPM : package installation Error : cpio: read failed
  3. What is the difference between insmod and modprobe
  4. fstrim Command Examples in Linux
  5. dnstracer Command Examples in Linux
  6. crontab error : “You (user) are not allowed to access to (crontab) because of pam configuration.”
  7. checkinstall: command not found
  8. How to Change Default Permission of /var/log/messages in CentOS/RHEL
  9. nitrogen Command Examples in Linux
  10. yum-config-manager: command not found

You May Also Like

Primary Sidebar

Recent Posts

  • protonvpn-cli Command Examples in Linux
  • protonvpn-cli connect Command Examples
  • procs Command Examples in Linux
  • prlimit: command not found

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright