|
How to install rpm from local directory using apt-get?
I am trying to use apt-get to help me install rpm file with all its dependencies. All required RPMs are placed in single directory on local disk.
I've tried to use the code below, but it can't find the required file, altough it is there in the dir!
apt-get -o Dir::Cache::Archives="/mydir" \
--no-download --no-list-cleanup install mypkg
What am I doing wrong ? Is this possible ?
|