by skufel | Sep 29, 2018 | Apple, Scripting, SysAdmin
After upgrading to macOS Mojave you might experience following error when trying to run some command line tools like git, for example: xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at:...
by skufel | Jun 25, 2017 | Development, Scripting, Windows
To make using Sublime Text 3 more convenient, you can add this to right-click context menu. It will simplify ability to open any file and/or folder with Sublime Text right from Windows Explorer. @echo off SET st2Path=C:\Program Files\Sublime Text 3\sublime_text.exe...
by skufel | Feb 15, 2017 | Scripting, SysAdmin, Windows
In case Microsoft Compatibility Telemetry process takes a lot of your processor, you can easily remove it: Run Command Prompt as Administrator. Execute following commands in Command Prompt: sc delete DiagTrack sc delete dmwappushservice echo “” >...
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 | 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...