[ Пред. ] [ Содержание ] [ След. ]

Пакет deb из dpkg

[ @console @dpkg ]

 


Например, был установлен


sudo dpkg -i digimend-dkms_9_all.deb


Сheck if this package is correctly installed in your system and being listed by dpkg tool:


dpkg -l | grep digimend


Ответ:


ii digimend-dkms


Дальше ориентируемся по этому полному имени, digimend-dkms.


Параметр "ii" означает, что пакет установлен.


*todo dpkg — завершить перевод


If you'd like to remove the package itself (without the configuration files), you'll have to run:


sudo dpkg -r digimend-dkms


If you'd like to delete (purge) the package completely (with configuration files), you'll have to run:


sudo dpkg -P digimend-dkms


You may check if the package has been removed successfully - simply run again:


dpkg -l | grep urserver


If the package has been removed without configuration files, you'll see the rc status near the package name, otherwise, if you have purged the package completely, the output will be empty.