Posted on Thu 21 May 2020
In Общие вопросы.
tags: setup make make install checkinstall
Often we install some software using make. It's not as convenient way of software installation as, say, apt-get, apt or dpkg. However, sometimes it's the only option.
And often after that we need to uninstall the software we just (or not just)
installed. It's ok if the maintainer created a way to uninstall his or her
piece of software like make unsinstall
option, but...
But don't worry, there is a way!
The way is to use CheckInstall package.
Before start installing new software from sources, install:
sudo apt install auto-apt
sudo apt-get install checkinstall
Of course, you need to do that just once.
Instead of installing software the usual way like
cd package_folder
./configure
make
sudo make install
you perform
cd package_folder
auto-apt run ./configure
make
sudo checkinstall
checkinstall
automatically calls make install
so don't worry about that.
Et voila, you've got your software installed!
Moreover, checkinstall
will tell you the name of the package it created in
case you'd like to uninstall the software.
And if you need to unsinsall it, then...
sudo dpkg -r package_name
Quite simple, isn't it?
Posted on Wed 01 April 2020
In Общие вопросы.
tags: setup lighttpd ssl certbot
How to setup Let's Encrypt certificate on lighttpd (taken from the article)
Read MorePosted on Wed 01 April 2020
In Общие вопросы.
tags: setup ssh openpgp pgp smartcard
How to use OpenPGP smartcard made of chinese stm32 clone based st-link v.2 flasher
Read MorePosted on Sat 25 January 2020
In Общие вопросы.
tags: programming machine learning машинное обучение
Полезные ссылки на тему машинного обучения
Read MorePosted on Fri 17 January 2020
In Общие вопросы.
tags: markdown
Ссылки по по основам языка разметки Markdown
Read MorePosted on Mon 13 January 2020
In Общие вопросы.
tags: python nlp ml machine learning natural language processing
ССылки по выявлению токсичных комментариев, премодерации сообщений с сипользованием ML
Read MorePosted on Tue 07 January 2020
In Общие вопросы.
tags: embedded rust STM32 openocd gdb nucleo
The second part of an embedded Rust for NUCLEO tutorial
Read MorePosted on Wed 01 January 2020
In Общие вопросы.
tags: объявления
Privace Policies for testing
Read MorePosted on Fri 20 December 2019
In Общие вопросы.
tags: python csv xls pandas cheatsheet шпаргалка
Полезная информация по работе с файлами данных из Python
Read MorePosted on Fri 20 December 2019
In Общие вопросы.
tags: setup programming robotics english
How to setup lighttpd+mono
Read MorePage 1 / 3 »