by skufel | Oct 1, 2016 | Infrastructure, SysAdmin, Virtualization
Here is one from friend of mine, very skilled Senior IT Engineer, Tomasz Jagiello. Some bugs he identified while working with VMware ESX 6. Symptoms VM running Windows 10 (x64) as the Guest OS is automatically reset after some hours (roughly a day). Reoccurs daily....
by skufel | Sep 28, 2016 | Development, Linux, SysAdmin, Web Servers
If you need to install Xdebug on openSUSE and don’t want ot use existing binary repo easiest way is to use pecl to do that and here is how… First install all required packages dev-lnx-02:~ # zypper --non-interactive install gcc autoconf automake php5...
by skufel | Aug 10, 2016 | SysAdmin, Windows
When you upgraded WIndows 10 to recent Anniversary Update (1607), you might want to reclaim some disk space consumed by old files: Seems like 35GB or more can be reclaimed.
by skufel | Aug 8, 2016 | Development, Linux, Web Servers
When Yii-based project doesn’t want to update, there might be missing component. Once you add one plugin everything goes back to normal. [root@arb-srv-01 easyforms]# composer update Running composer as root/super user is highly discouraged as packages,...
by skufel | Aug 8, 2016 | Databases, Linux, Scripting, Security, SysAdmin
In order to install MySQL/MariaDB database engine on CentOS follow these: [root@localhost ~]# yum install mariadb-server [root@localhost ~]# systemctl enable mariadb [root@localhost ~]# systemctl start mariadb [root@localhost ~]#...
by skufel | Aug 8, 2016 | Linux, Scripting, Security, SysAdmin
Once you install CentOS 7, by default firewalld will block almost all network traffic. In order to open ports for certain services you can easily reconfigure firewall using firewall-cmd command. [root@localhost firewalld]# firewall-cmd --get-active-zones public ...
by skufel | Jul 20, 2016 | Cloud, Infrastructure, Windows
Once you have installed Box Sync and before logging into Sync , set the folder location in the registry key: Open Registry Edit by going to the Start menu and searching for regedit. In the left pane, navigate to HKEY_LOCAL_MACHINE > SOFTWARE > BOX > BoxSync...
by skufel | Mar 22, 2016 | Development, Linux
While using PhpStorm I tried to use remote PHP interpreter on my dev virtual machine. As I’m big openSUSE fan and user I have openSUSE Leap 42.1 as my development machine. Unfortunately there is no Xdebug for PHP distributed by default. However, there is...
by skufel | Mar 18, 2016 | Collaboration, Messaging
If you have to move Mozilla Thunderbird data from one computer to another, you can do it by simply copying files between computer. Folder with Thunderbird profiles is located here: %APPDATA%\Thunderbird\Profiles\ There will be at least one or more sub-folders with...
by skufel | Mar 17, 2016 | Development, Linux, Scripting, Windows
In previous articles: How-to : Introduction to Laravel : Create Laravel Framework project on openSUSE Leap 42.1 How-to : Introduction to Laravel : Publish Laravel Framework project on Apache 2.4 we created and published web project. Now it’s time to try to do...