Installed but cannot seen on apt-cache
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
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 $
apt software-installation ffmpeg apt-cache
add a comment |Â
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 $
apt software-installation ffmpeg apt-cache
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
add a comment |Â
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 $
apt software-installation ffmpeg apt-cache
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 $
apt software-installation ffmpeg apt-cache
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
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
edited May 16 at 19:40
answered May 10 at 20:52
![](https://i.stack.imgur.com/HzYJb.png?s=32&g=1)
![](https://i.stack.imgur.com/HzYJb.png?s=32&g=1)
LordNeckbeard
4,6041334
4,6041334
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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