Downloading tarbell, extacting and installing it on linux virtual machine

Varma 1,380 Reputation points
2024-05-23T10:29:07.17+00:00

I want to download the tarball, extract it, configure, and make install on inux virtual machine (rhel9.2)

Please provide high level steps and document for this.

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,816 questions
{count} votes

1 answer

Sort by: Most helpful
  1. vipullag-MSFT 26,301 Reputation points
    2024-05-23T11:25:31.5433333+00:00

    Hello Varma

    Welcome to Microsoft Q&A Platform, thanks for posting your query here.

    -Ensure you have root or sudo privileges on your RHEL 9.2 VM.

    -Update your package manager.

    sudo dnf update -y

    -Install necessary dependencies.

    sudo dnf groupinstall "Development Tools" -y

    sudo dnf install wget tar -y

    -Use wget or curl to download the tarball from a URL.

    Ex: wget http://example.com/path/to/your/software.tar.gz

    -Extract the tarball

    tar -xvzf software.tar.gz

    -Run the configure script

    ./configure

    Note: You may need to specify options for the configure script, depending on the software.

    Compile the source code

    make

    Install the software

    sudo make install

    You can refer the Redhat documentation here for any further queries related to RHEL.

    Ref: https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9
    For any queries related to RHEL, I would recommend you to post of preproperate forum:

    https://access.redhat.com/discussions
    https://access.redhat.com/solutions/9461

    Hope this helps.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.