Overview for devuan

How to remove (uninstall) Matanza from Devuan Linux

If you don't like the game Matanza or just clearing your system from unuseful packages and applications, you can remove it with executing following command in terminal:

$ sudo apt-get purge matanza

output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  exfalso fonts-font-awesome fonts-lato gir1.2-gst-plugins-base-1.0
  gir1.2-gstreamer-1.0 gir1.2-gtksource-3.0 gir1.2-keybinder-3.0
  javascript-common libboost-program-options1.62.0 libgpod-common libgpod4
  libgtksourceview-3.0-1 libgtksourceview-3.0-common libjs-jquery
  libjs-modernizr libjs-sphinxdoc libjs-underscore libsgutils2-2
  media-player-info python-chardet python-feedparser python-libxml2
  python-musicbrainzngs python-mutagen python-pkg-resources python-pyinotify
  python-utidylib sphinx-rtd-theme-common
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  matanza*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
After this operation, 392 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 108459 files and directories currently installed.)
Removing matanza (0.13+ds1-5+b2) ...
Processing triggers for mime-support (3.60) ...
Processing triggers for desktop-file-utils (0.23-1) ...
Processing triggers for man-db (2.7.6.1-2) ...
(Reading database ... 108437 files and directories currently installed.)
Purging configuration files for matanza (0.13+ds1-5+b2) ...

Read more

Written by Administrator on Thursday April 23, 2020

How to remove Quod Libet player in Devuan Linux

Removing Quod Libet in Devuan Linux is very fast and simple. We will use "purge" command to delete not only application, but also all configuration files of the package. Keep calm, all dependencies installed will stay untouched and you don't have to check, if some needed libraries are still part of your system or not.

For complete uninstall Quod Libet player from your system It's enough to run a command in terminal:

$ sudo apt-get purge quodlibet

output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  exfalso fonts-font-awesome fonts-lato gir1.2-gst-plugins-base-1.0
  gir1.2-gstreamer-1.0 gir1.2-gtksource-3.0 gir1.2-keybinder-3.0
  javascript-common libboost-program-options1.62.0 libgpod-common libgpod4
  libgtksourceview-3.0-1 libgtksourceview-3.0-common libjs-jquery
  libjs-modernizr libjs-sphinxdoc libjs-underscore libsgutils2-2
  media-player-info python-chardet python-feedparser python-libxml2
  python-musicbrainzngs python-mutagen python-pkg-resources python-pyinotify
  python-utidylib sphinx-rtd-theme-common
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  quodlibet*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
After this operation, 106 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 108475 files and directories currently installed.)
Removing quodlibet (3.7.1-2) ...
Processing triggers for mime-support (3.60) ...
Processing triggers for desktop-file-utils (0.23-1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for hicolor-icon-theme (0.15-1) ...

Read more

Written by Administrator on Thursday April 23, 2020

How to uninstall Bastard Tetis in Devuan Linux

Bastard tetris is a game, included in standard Devuan Linux installation. To delete it, run a command in terminal:

$ sudo apt-get purge bastet

output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following package was automatically installed and is no longer required:
  libboost-program-options1.62.0
Use 'sudo apt autoremove' to remove it.
The following packages will be REMOVED:
  bastet*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
After this operation, 245 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 108487 files and directories currently installed.)
Removing bastet (0.43-4+b2) ...
Processing triggers for mime-support (3.60) ...
Processing triggers for desktop-file-utils (0.23-1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for hicolor-icon-theme (0.15-1) ...
(Reading database ... 108475 files and directories currently installed.)
Purging configuration files for bastet (0.43-4+b2) ...

Read more

Written by Administrator on Thursday April 23, 2020

How to start Flameshot with PrtScr hotkey in Devuan Linux [with screenshots]

Sometimes we need to start application by clicking HotKey. Let's take Flameshot screenshot manager (read: How to install Flameshot on Devuan Linux). Normally after installation Devuan Linux (XFCE desktop) "doesn't know", that you want make screenshots with clicking "PrtScr" (or "PrtSc") button. Let's assing this button on your keyboard to Flameshot application.

Go to Main menu -> Settings -> Keyboard

Then you will see Keyboard settings window and select "Application Shortcuts" tab:

Read more

Written by Administrator on Thursday April 23, 2020

How to install Flameshot in Devuan Linux [with screenshots]

Flameshot screenshot manager is not included in standard Devuan repositories, so we need to add Stretch-Backports repository (from Debian) in order to install it on your Devuan Linux system.

Adding Stretch-Backports repository

Open file /etc/apt/sources.list .

$ sudo vim /etc/apt/sources.list

In my case:

sources.list file in Devuan

and add this line:

deb http://ftp.debian.org/debian stretch-backports main

Read more

Written by Administrator on Thursday April 23, 2020

How to create executable from everywhere bash script in Devuan? [with screenshots] [ex.#1]

Bash scripts are very helpful took for work routine and simplifying your work with linux.

Let's create a simple bash script, which writes something in terminal.

#!/bin/bash

for i in  {1..10}
do
  echo Hello number $i
  sleep 3s
done

What does this script? Echo command prints "Hello number #" precisely ten times, but with delay 3 seconds.

Save the code as delayed_hello.sh:

dima@computer:~/scripts$ cd /home/dima/scripts
dima@computer:~/scripts$ ls
delayed_hello.sh

Read more

Written by Administrator on Wednesday April 22, 2020