Select Page

Linux

Tip and tricks in Linux systems.

Latest Posts

Batch converting images in command line

Batch converting images in command line

Today I wanted to resize some pictures. I always use command line and "convert" to do it. Usually I type this: convert pix1.jpg -resize 1024 resized_pix1.jpg   This command resizes me picture to 1024 pixels in width.   Today I wanted do...

How to setup SSH server on Ubuntu 16.04

How to setup SSH server on Ubuntu 16.04

First of all - what is SSH? Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network. Wikipedia said... Imagine this situation: you have server at your office and you are at home. You...

Synchronize data in Ubuntu using rsync

Last time I bought a desktop PC to my small office. I wanted to have a PC which will be always in my office, because getting notebook every time is not comfortable. So I bought Dell OptiPlex 760 Form Factor (FF) with this configuration: IntelĀ®...

Caffeine doesn’t work on Ubuntu

I tried to use Caffeine - a simple app which prevents running screen saver and locking display. I installed it from the Software Center but it didn't work. The display always locks even when Caffeine was active. First make sure you removed all...

Not enough free disk space on boot

Sometimes when you want to update your Ubuntu you see this: Not enough free disk space Please free [...] disk space on /boot   It means that you have old kernels on your /boot partition. You should clean system and delete old kernels. Maybe...

How to install PeaZip in Ubuntu

PeaZip is a nice archive manager, in my opinion much better than Ubuntu built in archive manager. Last time when I wanted to install it I had a problem with libgmp3c2 library. Here you have the solution... First download and install...

Featured Posts

MySQL with PHP in Docker

In my previous articles we learned how to install Docker in Linux and how to run Nginx Web Server with PHP in Docker. The next step is run MySQL...

How to run Nginx and PHP in Docker

Today we will try to run nginx web server with PHP 7.4 in Docker. We will use Docker, because we will not install any software on our host system....

How to install Docker in Linux Mint and Ubuntu

Today I will show you how to install Docker in Linux Mint and Ubuntu. Docker is a very useful tool which every developer should know. Using Docker...