Installed but cannot seen on apt-cache

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












I have installed ffmpeg and libx264 via that code. I can use ffmpeg and can do simple jobs but if i write apt-cache ffmpeg it returns me Installed: (none) Why i cannot see it in apt-cache?



 # build and install x264
git clone --depth 1 git://git.videolan.org/x264
cd x264
./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-opencl
make -j 4
sudo make install

# build and make ffmpeg
git clone --depth=1 git://source.ffmpeg.org/ffmpeg.git
cd ffmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
make -j4
sudo make install


Error:



pi@raspberrypi:/var/www/html/GetVideo $ apt-cache policy ffmpeg
ffmpeg:
Installed: (none)
Candidate: 7:3.2.10-1~deb9u1+rpt1
Version table:
7:3.2.10-1~deb9u1+rpt1 500
500 http://archive.raspberrypi.org/debian stretch/main armhf Packages
100 /var/lib/dpkg/status
7:3.2.10-1~deb9u1 500
500 http://raspbian.raspberrypi.org/raspbian stretch/main armhf Packages
pi@raspberrypi:/var/www/html/GetVideo $






share|improve this question
















  • 1




    Your package manager can't see software that were installed by other means, including programs built from source.
    – dsstorefile1
    May 10 at 10:26














up vote
0
down vote

favorite












I have installed ffmpeg and libx264 via that code. I can use ffmpeg and can do simple jobs but if i write apt-cache ffmpeg it returns me Installed: (none) Why i cannot see it in apt-cache?



 # build and install x264
git clone --depth 1 git://git.videolan.org/x264
cd x264
./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-opencl
make -j 4
sudo make install

# build and make ffmpeg
git clone --depth=1 git://source.ffmpeg.org/ffmpeg.git
cd ffmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
make -j4
sudo make install


Error:



pi@raspberrypi:/var/www/html/GetVideo $ apt-cache policy ffmpeg
ffmpeg:
Installed: (none)
Candidate: 7:3.2.10-1~deb9u1+rpt1
Version table:
7:3.2.10-1~deb9u1+rpt1 500
500 http://archive.raspberrypi.org/debian stretch/main armhf Packages
100 /var/lib/dpkg/status
7:3.2.10-1~deb9u1 500
500 http://raspbian.raspberrypi.org/raspbian stretch/main armhf Packages
pi@raspberrypi:/var/www/html/GetVideo $






share|improve this question
















  • 1




    Your package manager can't see software that were installed by other means, including programs built from source.
    – dsstorefile1
    May 10 at 10:26












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have installed ffmpeg and libx264 via that code. I can use ffmpeg and can do simple jobs but if i write apt-cache ffmpeg it returns me Installed: (none) Why i cannot see it in apt-cache?



 # build and install x264
git clone --depth 1 git://git.videolan.org/x264
cd x264
./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-opencl
make -j 4
sudo make install

# build and make ffmpeg
git clone --depth=1 git://source.ffmpeg.org/ffmpeg.git
cd ffmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
make -j4
sudo make install


Error:



pi@raspberrypi:/var/www/html/GetVideo $ apt-cache policy ffmpeg
ffmpeg:
Installed: (none)
Candidate: 7:3.2.10-1~deb9u1+rpt1
Version table:
7:3.2.10-1~deb9u1+rpt1 500
500 http://archive.raspberrypi.org/debian stretch/main armhf Packages
100 /var/lib/dpkg/status
7:3.2.10-1~deb9u1 500
500 http://raspbian.raspberrypi.org/raspbian stretch/main armhf Packages
pi@raspberrypi:/var/www/html/GetVideo $






share|improve this question












I have installed ffmpeg and libx264 via that code. I can use ffmpeg and can do simple jobs but if i write apt-cache ffmpeg it returns me Installed: (none) Why i cannot see it in apt-cache?



 # build and install x264
git clone --depth 1 git://git.videolan.org/x264
cd x264
./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-opencl
make -j 4
sudo make install

# build and make ffmpeg
git clone --depth=1 git://source.ffmpeg.org/ffmpeg.git
cd ffmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
make -j4
sudo make install


Error:



pi@raspberrypi:/var/www/html/GetVideo $ apt-cache policy ffmpeg
ffmpeg:
Installed: (none)
Candidate: 7:3.2.10-1~deb9u1+rpt1
Version table:
7:3.2.10-1~deb9u1+rpt1 500
500 http://archive.raspberrypi.org/debian stretch/main armhf Packages
100 /var/lib/dpkg/status
7:3.2.10-1~deb9u1 500
500 http://raspbian.raspberrypi.org/raspbian stretch/main armhf Packages
pi@raspberrypi:/var/www/html/GetVideo $








share|improve this question











share|improve this question




share|improve this question










asked May 10 at 10:24









Tahtakafa

1083




1083







  • 1




    Your package manager can't see software that were installed by other means, including programs built from source.
    – dsstorefile1
    May 10 at 10:26












  • 1




    Your package manager can't see software that were installed by other means, including programs built from source.
    – dsstorefile1
    May 10 at 10:26







1




1




Your package manager can't see software that were installed by other means, including programs built from source.
– dsstorefile1
May 10 at 10:26




Your package manager can't see software that were installed by other means, including programs built from source.
– dsstorefile1
May 10 at 10:26










1 Answer
1






active

oldest

votes

















up vote
0
down vote













You can compile and install whatever you want to from source, but to integrate it into the package management system you need to use an additional tool such as checkinstall instead of make install.



./configure
make
sudo checkinstall --pkgname=my-compiled-package --pkgversion="99:$(date +%Y%m%d%H%M)-git" --default





share|improve this answer






















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );








     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1034436%2finstalled-but-cannot-seen-on-apt-cache%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    You can compile and install whatever you want to from source, but to integrate it into the package management system you need to use an additional tool such as checkinstall instead of make install.



    ./configure
    make
    sudo checkinstall --pkgname=my-compiled-package --pkgversion="99:$(date +%Y%m%d%H%M)-git" --default





    share|improve this answer


























      up vote
      0
      down vote













      You can compile and install whatever you want to from source, but to integrate it into the package management system you need to use an additional tool such as checkinstall instead of make install.



      ./configure
      make
      sudo checkinstall --pkgname=my-compiled-package --pkgversion="99:$(date +%Y%m%d%H%M)-git" --default





      share|improve this answer
























        up vote
        0
        down vote










        up vote
        0
        down vote









        You can compile and install whatever you want to from source, but to integrate it into the package management system you need to use an additional tool such as checkinstall instead of make install.



        ./configure
        make
        sudo checkinstall --pkgname=my-compiled-package --pkgversion="99:$(date +%Y%m%d%H%M)-git" --default





        share|improve this answer














        You can compile and install whatever you want to from source, but to integrate it into the package management system you need to use an additional tool such as checkinstall instead of make install.



        ./configure
        make
        sudo checkinstall --pkgname=my-compiled-package --pkgversion="99:$(date +%Y%m%d%H%M)-git" --default






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited May 16 at 19:40

























        answered May 10 at 20:52









        LordNeckbeard

        4,6041334




        4,6041334






















             

            draft saved


            draft discarded


























             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1034436%2finstalled-but-cannot-seen-on-apt-cache%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491