I created my own internal repository following the instructions here: How to create a local APT repository?
I added the line deb file:/usr/local/mydebs/ ./
to my /etc/apt/sources.list
How do I specify the --target-release
if my target release is just ./
?
For example if I added the line
deb http://mozilla.debian.net/ squeeze-backports iceweasel-release
to my /etc/apt/sources.list
I would specify it like this
apt-get install -t squeeze-backports iceweasel
apt-get install
from that repository? – user784637 Jan 23 '14 at 18:20file:///usr/local/mydebs/
might work... – Wilf Jan 23 '14 at 18:44sudo apt-get install -t file:///usr/local/mydebs/ php
? It's throwing an error – user784637 Jan 23 '14 at 18:48Reading package lists... Done E: The value 'file:///usr/local/mydebs/' is invalid for APT::Default-Release as such a release is not available in the sources
– user784637 Jan 23 '14 at 18:48