$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Step-by-step – Android Studio CentOS Stream 9 Installation

November 15, 2022 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading Android Studio IDE

    Download Android Studio IDE for CentOS

    Here Android Studio IDE tar.gz Linux
    Link to Download the Latest Android Studio IDE for CentOS

    If you are using Firefox then on Prompt Choose “Open with Archive Manager”:

    Step-by-step Android Studio CentOS Stream 9 Installation Guide - Firefox Prompt

    Or After try to Select the Package by the Downloads Button on Top Panel:

    Step-by-step Android Studio CentOS Stream 9 Installation Guide - Downloaded Packages

    Instead, on Google-Chrome simply try to Choose the Package on the Bottom Panel:

    Step-by-step Android Studio CentOS Stream 9 Installation Guide - Chrome Bottom Panel Downloads

    Browser Chrome CentOS Setup Tutorial

  2. 3. Extracting Android Studio IDE

    Then Extract Android Studio IDE into /tmp
    Possibly Double-Click/Right-Click on Archive to Open with Archive Manager:

    Android Studio CentOS Stream 9 Installation Guide - extraction

    Or from Shell:

    Copy
    tar xvzf ~/Downloads/android-studio*.tar.gz -C /tmp

    But if you are in Trouble to Find the Location on Terminal then See: How to Access Downloads Folder from Browser.

  3. 4. Installing Dependencies

    Now to Install Required Packages
    Simply play:

    Copy
    sudo dnf install zlib.i686 ncurses-libs.i686 bzip2-libs.i686

    Authenticate with the User Admin Pass.
    If Got “User is Not in Sudoers file” then see: How to Enable sudo.

  4. 5. Installing Oracle JDK

    How to Install Required Oracle Java JDK on CentOS

    Here Install Oracle JDK for CentOS
    Link to Install Oracle-Sun Java SE JDK on Linux CentOS Distro
  5. 6. Relocating Android Studio

    Again to Relocate Android Studio IDE
    For a System wide installation Set the superUser as Holder with:

    Copy
    sudo chown -R root:root /tmp/android-studio

    Then Move the Android Studio contents into the /opt Directory:

    Copy
    sudo mv /tmp/android-studio /opt/
  6. 7. Amending User’s Path

    And to Make Android Studio Command-line Accessible
    Amend the User’s Path with:

    Copy
    echo "export PATH=/opt/android-studio/bin:$PATH" >> ~/.bashrc

    And then to Reload the PATH simply run:

    Copy
    bash

Contents