Overview for terminal

Which openSUSE version do I have?

The faster way to get information about the openSUSE version you run is to run a command in terminal:

$ cat /usr/lib/os-release

Then you'll get detailed info directly in terminal. Output you'll see will look like this:

Read more

Written by Administrator on Tuesday March 31, 2020

How to copy all files with same extension to flash-disk in command line in Linux

To copy files in linux we obvisously use command cp. In case we have a folder with files with same extension and want to copy all of them to connected flash-disk, we can use mask: *. For example, I have several .hccapx files and want to copy them on flash-disk:

$ cp *.hccapx /media/lovermann/DISK1/

Now, let's check, if files are copied:

Read more

Written by Administrator on Monday March 23, 2020

How to uninstall and remove Pidgin internet messenger in Lubuntu

Uninstalling Pidgin internet messenger

To remove just pidgin package itself from Lubuntu from command line, we have to type this command in lubuntu-terminal:

$ sudo apt-get remove pidgin

Completely remove Pidgin internet messenger 

Pidgin internet messenger stores configuration files in your Lubuntu system. If you want remove Pidgin completely including configuration and settings file, just type in terminal:

Read more

Written by Administrator on Thursday March 12, 2020