Entries

How to make .iso from folder in openSUSE Linux

Creating .iso file from several files (let's say folder) is very simple in Linux. First you have to install mkisofs utility:

$ sudo zypper install mkisofs

Then you will need put all your files you want to put in .iso file in a separate folder. In my case, I neede just to rebuild existing bootable .iso file. So, my folder with files is '/home/dima/yobanypizdec'.

Combining files into one .iso file

Read more

Written by Administrator on Wednesday April 1, 2020

How to unzip file in openSUSE Linux

If you want to unzip a file in openSUSE Leap 15.1 Linux, you just need an unzip program.

Install unzip

If unzip is not installed in your system, you an easily do it using zypper:

$ sudo zypper install unzip

Read more

Written by Administrator on Wednesday April 1, 2020

How to format USB drive in Linux

If USB drive is already mounted in your system, it will be impossible to format it. So, first of all we have to unmount it.

1. First, define how USB drive is mounted running following command

$ df -h


 

Read more

Written by Administrator on Wednesday April 1, 2020

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 install Flameshot in Fedora Linux

Flameshot is very popular screenshot manager among linux distros. To install, you just need to run command in terminal using dnf install manager:

$ sudo dnf install flameshot

Then you will see something like this:

Read more

Written by Administrator on Tuesday March 31, 2020

How to unblock Wi-Fi service in openSUSE

Very often openSUSE is blocking your Wi-Fi and you cannot access the internet. First of all, we have to check, if wi-fi services are not blocked:

$ sudo /usr/sbin/rfkill list

Read more

Written by Administrator on Monday March 30, 2020

How to install CUPS-libraries in Fedora Linux

CUPS libraries are important for setting up ESC/POS printer in Fedora linux. You can install CUPS-libraries simply completing the command:

$ sudo dnf install cups-libs.i686

Read more

Written by Administrator on Thursday March 26, 2020