Overview for terminal

How to install Flameshot in Bodhi Linux?

Bodhi linux has default application for making screenshot and it has name .. "Screenshot" :) It's not very popular because it has awful design and it's almost not customizable. This is how it looks in standard Bodhi Linux distro:

bodhi linux screenshot program interface and settings

Read more

Written by Administrator on Sunday January 30, 2022

How to find your Bodhi linux version installed?

As we all know, Bodhi linux is based on ubuntu, but sometimes you need to know, on which version of Ubuntu is based your Bodhi linux distro. The fastest way to find this information is to run the following command:

$ uname -a

In my case I got this information:

bodhi linux version command

Read more

Written by Administrator on Sunday January 30, 2022

How to find your linux version in Devuan Linux? [with screenshots]

Trident linux is based on Void linux, let's check, how system identifies itself by running different commands (lsb_release, uname etc):

$ uname -a
Linux computer 4.9.0-11-amd64 #1 SMP Debian 4.9.189-3+deb9u2 (2019-11-11) x86_64 GNU/Linux

$ cat /etc/*-release
PRETTY_NAME="Devuan GNU/Linux ascii"
NAME="Devuan GNU/Linux"
ID=devuan
ID_LIKE=debian
HOME_URL="https://www.devuan.org/"
SUPPORT_URL="https://devuan.org/os/community"
BUG_REPORT_URL="https://bugs.devuan.org/"

$ cat /proc/version
Linux version 4.9.0-11-amd64 (debian-kernel@lists.debian.org) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1) ) #1 SMP Debian 4.9.189-3+deb9u2 (2019-11-11)

Read more

Written by Administrator on Wednesday April 22, 2020

How to find your linux version in Trident? [with screenshots]

Trident linux is based on Void linux, let's check, how system identifies itself by running different commands (lsb_release, uname etc):

$ lsb_release
LSB Version:    1.0

$ lsb_release -a
LSB Version:    1.0
Distributor ID: VoidLinux
Description:    Void Linux
Release:        rolling
Codename:       void

$ uname -a
Linux Trident 5.4.33_2 #1 SMP PREEMPT Sat Apr 18 14:32:17 UTC 2020 x86_64 GNU/Linux

$ cat /etc/*-release
NAME="void"
ID="void"
DISTRIB_ID="void"
PRETTY_NAME="void"

$ cat /proc/version
Linux version 5.4.33_2 (void-buildslave@a-hel-fi) (gcc version 9.3.0 (GCC)) #1 SMP PREEMPT Sat Apr 18 1

Read more

Written by Administrator on Sunday April 19, 2020

How to uninstall programs from terminal in openSUSE Linux

openSUSE Linux has a great tool for installing and uninstalling programs: zypper. You can use YaST to uninstall programs in SoftwareManagement, but from my point of view the fastest way is to uninstall the program in command line (terminal):

$ sudo zypper rm {program name}

For example, we want to uninstall the game iagno. Run a command:

$ sudo zypper rm iagno

Read more

Written by Administrator on Saturday April 4, 2020