Entries

How to install Flameshot in Modicia Linux [with screenshot]

Flameshot is very powerful screenshot manager for Linux. Installation in Modicia Linux is very fast and simple:

$ sudo apt-get install flameshot

output:

$ sudo apt-get install flameshot

Reading package lists... Done
Building dependency tree... Done
The following NEW packages will be installed:
  flameshot
0 upgraded, 1 newly installed, 0 to remove and 101 not upgraded.
Need to get 217 kB of archives.
After this operation, 823 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu bionic/universe amd64 flameshot amd64 0.5.1-2 [217 kB]
Fetched 217 kB in 2s (125 kB/s)    
Selecting previously unselected package flameshot.
(Reading database ... 257035 files and directories currently installed.)
Preparing to unpack .../flameshot_0.5.1-2_amd64.deb ...
Unpacking flameshot (0.5.1-2) ...
Setting up flameshot (0.5.1-2) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.18.04.2) ...
Processing triggers for bamfdaemon (0.5.3+18.04.20180207.2-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Processing triggers for gnome-menus (3.13.3-11ubuntu1.1) ...
Processing triggers for mime-support (3.60ubuntu1) ...

Read more

Written by Administrator on Thursday April 23, 2020

How to remove (uninstall) NetHack-Console in Devuan Linux

In case you don't need Console game NetHack any more, you can easily uninstall it by running only two commands in terminal:

$ sudo apt-get purge nethack-console

and

$ sudo apt autoremove nethack-console

Output:

$ sudo apt-get purge nethack-console

[sudo] password for dima: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following package was automatically installed and is no longer required:
  nethack-common
Use 'sudo apt autoremove' to remove it.
The following packages will be REMOVED:
  nethack-console*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
After this operation, 2,401 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 103588 files and directories currently installed.)
Removing nethack-console (3.6.0-4+b1) ...
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 ... 103579 files and directories currently installed.)
Purging configuration files for nethack-console (3.6.0-4+b1) ...


$ sudo apt autoremove nethack-console

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'nethack-console' is not installed, so not removed
The following packages will be REMOVED:
  nethack-common
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
After this operation, 2,088 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 103578 files and directories currently installed.)
Removing nethack-common (3.6.0-4+b1) ...
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 remove (uninstall) the game VMS Empire in Devuan Linux

For complete removal of the game VMS Empire in Devuan Linux, you have to run two commands (purge & autoremove), combine in one command:

$ sudo apt-get purge empire && sudo apt autoremove empire

output:

$ sudo apt-get purge empire && sudo apt autoremove empire

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  empire*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
After this operation, 205 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 103603 files and directories currently installed.)
Removing empire (1.14-1+b1) ...
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 ... 103588 files and directories currently installed.)
Purging configuration files for empire (1.14-1+b1) ...
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'empire' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

Read more

Written by Administrator on Thursday April 23, 2020

How to remove (uninstall) Dungeon Crawl in Devuan Linux

Complete removal of the game Dungeon Crawl in Devuan Linux is possible after executing two following commands in terminal:

$ sudo apt-get purge crawl
$ sudo apt autoremove crawl

Or you can actually combine two commands mentioned above:

$ sudo apt-get purge crawl && sudo apt autoremove crawl

output:

Read more

Written by Administrator on Thursday April 23, 2020

How to remove (uninstall) XSane in Devuan Linux

Removing XSane Image Scanning Program in Devuan Linux is very simple and fast. You should run those two commands:

$ sudo apt-get purge xsane
$ sudo apt autoremove xsane

or combine them into one:

$ sudo apt-get purge xsane && sudo apt autoremove xsane

Read more

Written by Administrator on Thursday April 23, 2020

How to remove (uninstall) Mutt Mail User Client from Devuan Linux

If you don't want Mutt Mail client to be present in your Devuan Linux system, just run these two commands in terminal:

$ sudo apt-get purge mutt

output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libgmime-2.6-0 libnotmuch4 libtokyocabinet9
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  mutt*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
After this operation, 6,255 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 106765 files and directories currently installed.)
Removing mutt (1.7.2-1+deb9u1) ...
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 ... 106662 files and directories currently installed.)
Purging configuration files for mutt (1.7.2-1+deb9u1) ...
dpkg: warning: while removing mutt, directory '/etc/Muttrc.d' not empty so not removed

Read more

Written by Administrator on Thursday April 23, 2020