E: Unable to locate package libtool-ltdl-devel (in Ubuntu IP SSH - Mac Terminal)

0

Dear Community, I managed to connect the SSH client to my Mac Terminal.

I'm now having another issue which I followed in the Step 4 https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/get-started-create-client.html

Have tried to install --> sudo yum install jq telnet emacs docker libtool libtool-ltdl-devel git -y

(Note: For Ubuntu, "yum" command is used as apt or apt-get)

but I have the following error:

sudo apt install jq telnet emacs docker libtool libtool-ltdl-devel git -y Reading package lists... Done Building dependency tree... Done Reading state information... Done E: Unable to locate package libtool-ltdl-devel

I have tried all 4 methods from this link --> https://itslinuxfoss.com/unable-locate-package-error-ubuntu/#2 but the error "E: Unable to locate package libtool-ltdl-devel" still persists. Have tried to search for related questions but not available.

I'm using ubuntu-jammy-22.04-arm64-server-20230303 and is the above package is spelled correctly? Or is it because the Ubuntu version I'm using does not support it?

Please guide, thank you.

1 Answer
3
Accepted Answer

It seems the package libtool-ltdl-devel is named differently in Ubuntu repositories. Instead, you should install libltdl-dev

sudo apt update && sudo apt install jq telnet emacs docker libtool libltdl-dev git -y

profile picture
EXPERT
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions