Overview for linux

How to remove (uninstall) AnyDesk app in Modicia Linux

AnyDesk is an application for remote desktop access, just like TeamViewer. In case you don't need this app and want to permanently remove it from your PC, you can do it very fast by running following command in your Modicia Linux terminal:

$ sudo apt-get purge anydesk

Terminal log (output):

$ sudo apt-get purge anydesk

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  anydesk*
0 upgraded, 0 newly installed, 1 to remove and 85 not upgraded.
After this operation, 9,832 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 256561 files and directories currently installed.)
Removing anydesk (4.0.1-1) ...
Removed /etc/systemd/system/multi-user.target.wants/anydesk.service.
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 gnome-menus (3.13.3-11ubuntu1.1) ...
Processing triggers for mime-support (3.60ubuntu1) ...
(Reading database ... 256537 files and directories currently installed.)
Purging configuration files for anydesk (4.0.1-1) ...

Read more

Written by Administrator on Friday April 24, 2020

How to remove (uninstall) Cheese application in Modicia Linux

Cheese is an open source application that allows Modicia Linux users to use webcam and capture pictures or created videos with special effects. In case you're not a big fan of this application or just dont' need it, you can easily remove it from your Modicia Linux system by running following command in terminal:

$ sudo apt-get purge cheese

output:

$ sudo apt autoremove calibre

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'calibre' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 85 not upgraded.
modicia@modicia:~/scr$ sudo apt-get purge cheese
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  cheese*
0 upgraded, 0 newly installed, 1 to remove and 85 not upgraded.
After this operation, 447 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 256573 files and directories currently installed.)
Removing cheese (3.28.0-1ubuntu1) ...
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 Friday April 24, 2020

How to remove (uninstall) Calibre in Modicia Linux

If you are a not big fun of collecting e-books on your computer and want to get rid of Calibre application in your Modicia Linux system, you can easily remove it by running following command:

$ sudo apt-get purge calibre

output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  calibre*
0 upgraded, 0 newly installed, 1 to remove and 85 not upgraded.
After this operation, 52.5 MB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 259253 files and directories currently installed.)
Removing calibre (3.21.0+dfsg-1build1) ...
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 shared-mime-info (1.9-2) ...
Processing triggers for gnome-menus (3.13.3-11ubuntu1.1) ...
Processing triggers for mime-support (3.60ubuntu1) ...

Read more

Written by Administrator on Friday April 24, 2020

How to count files in folder (Modicia Linux)

When you are working with huge amount of files, sometimes you need to count them. In Linux you don't have to install any additional software to do it. Linux terminal and bash is a very powerful tool for files routine.

Count files and directories

To get the number of non-hidden files and folders in defined folder you should run this command:

$ ls | wc -l

Example:

count files and directories in Linux - example


Read more

Written by Administrator on Thursday April 23, 2020

How to put a list (names) of all files in folder in one file (example in Modicia Linux)

Just imagine you have a folder with 100 digital books in different format, meaning you have a lot of files with different file extensions and you want to share the list with your friends. In Linux you don't need to install additional software to do it. Standard terminal, which is a part of every (EVERY!) linux distribution, can help you to do it within a second.

For my example I've chosen /etc folder in my Modicia linux system, because there are a lot of files. Let's put all file names (including file's extension) in one text file.

Solution is very easy and simple. First, we are listing all files and then we're saving those listed names in a file:

Go into a folder, where you have files (in my case it is /etc):

$ cd /etc

Then we have to list all files and save filenames into .txt file.

Listing of file in a folder is very easy: type this command in terminal:

$ ls

Read more

Written by Administrator on Thursday April 23, 2020

How to remove (uninstall) Geany in Modicia Linux

If you really want to delete Geany from you Modicia Linux system, you can run only one command in terminal to do it:

$ sudo apt-get purge geany

output:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  geany*
0 upgraded, 0 newly installed, 1 to remove and 101 not upgraded.
After this operation, 3,088 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 256983 files and directories currently installed.)
Removing geany (1.32-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 libc-bin (2.27-3ubuntu1) ...
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