How to check a .deb file Installable or not using command line
How can i check a *.deb file is good to install in current system without install it? Is there any way that i can use dpkg or apt-get or other command line tools for this purpose?
Note: I need to do this using command line(no gui or synaptic) and there may have multiple deb files.
if dpkg --check *.deb == True
dpkg -i *.deb
else
perror
How can i check a *.deb file is good to install in current system without install it? Is there any way that i can use dpkg or apt-get or other command line tools for this purpose?
Note: I need to do this using command line(no gui or synaptic) and there may have multiple deb files.
if dpkg --check *.deb == True
dpkg -i *.deb
else
perror
No comments:
Post a Comment