TrueType fonts under Debian
If you’re coming from Windows you’ll probably notice the “difference” between the fonts on Linux and Windows. You probably don’t have true type fonts installed which are commonly used on …
Mint Linux Cinnamon – Invisible menu text on Netbeans
I noticed one bug with Mint Linux (Cinnamon) and Netbeans menu items that have an ‘active’ state which are completely invisible. Actually the text and the background colors are the …
Support Bosnia and Serbia
Serbia, Bosnia and Herzegovina, and Croatia have experienced floods of Biblical proportions since last week, the worst that the region has known since they began keeping records 120 years ago. …
Partition X does not start on physical sector boundary
If you run “fdisk -l” and you get something like: [root@ftp ~]# fdisk -l …. Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes 255 heads, 63 sectors/track, 121601 cylinders Units …
GitLab on CentOS – server certificate verification failed
If you followed this recipe to install GitLab on CentOS, you may have some problems
Fix OpenSSL bug – my way
Fix OpenSSL bug – my way On 04/11/2014 06:02 PM, Marinko Tarlać via PayPal wrote: > PayPal <https://www.paypal.com/us> > > Hello OpenSSL Software Foundation, > > This email confirms that …
Heart Bleed Bug – OpenSSL – part 2
I maintain more than 30 servers and several of them was affected with Heartbleed bug. CentOS released update for OpenSSL package(s) so there are no excuses not to update (yum …
Heart Bleed Bug – OpenSSL
A massive vulnerability has been found in OpenSSL, the open-source software package broadly used to encrypt Web communications. The flaw allows attackers to steal the information that is normally protected …
Quick search and replace inside file
sed -i ‘s/original/new/g’ file.txtsed -i ‘s/original/new/g’ file.txt Where sed means Stream EDitor -i – in-place (for example save back to the original file) s – the substitute command original – …