Ubuntu Solutions
Ubuntu Solutions
: /var/lib/dpkg/statoverride
- If you installed MongoDB Compass using `snap`: sudo snap remove mongodb
- If you installed MongoDB Compass via a Debian package: sudo apt-get purge mongodb-
compass
If you installed MongoDB Compass via a Debian package, you might want to remove its
configuration files as well: sudo rm -rf ~/.config/MongoDB\ Compass
HOW To install Android Studio from a `.tar.gz` archive, you can follow these steps:
1. **Download Android Studio**: Visit the official Android Studio download page
(https://developer.android.com/studio) and download the Linux `.tar.gz` archive.
2. **Extract the Archive**: After downloading the `.tar.gz` file, navigate to the directory where it's
located and extract it using the following command in the terminal:
```bash
tar -xvzf android-studio-<version>.tar.gz
```
Replace `<version>` with the specific version of Android Studio you downloaded.
3. **Move Android Studio to Installation Directory**: Move the extracted directory to a location
where you want to install Android Studio. For example:
```bash
sudo mv android-studio /opt
```
This will move the Android Studio folder to the `/opt` directory.
4. **Set Up Environment Variables (Optional)**: You can optionally set up environment variables to
easily launch Android Studio from the terminal. Edit your shell configuration file (e.g., `.bashrc`,
`.zshrc`, etc.) and add the following lines:
```bash
export PATH=$PATH:/opt/android-studio/bin
```
Save the file and then run the following command to apply the changes:
```bash
source ~/.bashrc
```
This will allow you to run Android Studio from the terminal by typing `studio.sh`.
5. **Launch Android Studio**: Navigate to the `bin` directory inside the Android Studio installation
directory and execute the `studio.sh` script to launch Android Studio:
```bash
cd /opt/android-studio/bin
./studio.sh
```
6. **Complete Installation**: Follow the on-screen instructions to complete the installation process.
You may need to install additional components and set up SDK paths during the first launch.
That's it! You've now installed Android Studio from the `.tar.gz` archive on your Linux system.
Not able to share entire screen on Google meet, zoom etc why?
Sudoedit /etc/gdm3/custom.conf
-> uncomment WaylandEnable=false. Save the file now.
Sudo systemctl restart gdm3. And it's Done.
(initramfs)
Replace /dev/sda1 with your partition name. In your system, it could be /dev/sdb1,
/dev/sdc1 etc. You can use cat /proc/partitions or blkid or lsblk commands to
get your Linux partition details in Busybox
node -v
npm -v