This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LINUXSDK-OMAPL138: apt-get command not found

Part Number: LINUXSDK-OMAPL138
Other Parts Discussed in Thread: OMAPL138, OMAP-L138

HI,

I am working on OMAPL138  LCDK platform, trying to boot Linux prebuilt binaries. I would like to install certain packages in the root file system. But when tried to use apt-get command, I got the following message in the console.

-sh: apt-get: command not found

Are there any other alternatives available to install packages in to the root file system. 

  • Hi, Sinthu,

    I am not familiar with the process but sort of some direction that you may want to try. See if you can download the package from internet and cross-compile it for omap-l138. I don't know if the build will end up getting an ipk file. If it does, then copy it to omap-l138 and run the following command:

    # opkg update

    # opkg install <package-name>

    If this path does go well, you may want to try bitbake to build/install the package you want, and the recipe should take care of the dependencies.

    Rex