How to set Sublime Text 3 when double clicking a variable to include the $ sign

Open Sublime Text 3 Click on Preferences->Settings - User Add the following line to the file "word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?" Example: { "bold_folder_labels": false, "color_scheme": "Packages/User/VisualStudio Dark (SL).tmTheme", "font_size": 9, "ignored_packages": [ "Vintage" ], "word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?" }

April 7, 2018 · 1 min · 35 words · icarnaghan

How to set the default Java version on Linux

Open a new Terminal Window Execute the following command: sudo update-alternatives --config java Output similar to the below will show: There are 4 choices for the alternative java (providing /usr/bin/java). Selection Path Priority Status ------------------------------------------------------------ 0 /usr/lib/jvm/java-8-oracle/jre/bin/java 1092 auto mode * 1 /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java 1071 manual mode 2 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java 1081 manual mode 3 /usr/lib/jvm/java-8-oracle/jre/bin/java 1092 manual mode 4 /usr/lib/jvm/java-9-openjdk-amd64/bin/java 1091 manual mode Press <enter> to keep the current choice[*], or type selection number: Enter the number next to your preferred version and hit the Enter key ...

April 7, 2018 · 1 min · 93 words · icarnaghan

How to set the Timeout in FileZilla

NOTE: FileZilla 3.5.2 has been used in this example Open FileZilla Click on Edit->Settings Click on Connection and the set the Timeout in seconds under the Timeoutsection.

April 7, 2018 · 1 min · 27 words · icarnaghan

How to set your default editor in Linux

Edit the .bash_profile file in your home directory vi ~/.bash_profile Add the following lines to your .bash_profile file export VISUAL=vim export EDITOR="$VISUAL" Note: Replace vim with any other preferred editor such as **_nano _** Logout and login again for changes to take effect. If you want the changes to come into play immediately, execute the following command . ~/.bash_profile

April 7, 2018 · 1 min · 59 words · icarnaghan

How to setup a Group Email Alias in CPanel

Setup a new Forwarder, by clicking on the Forwarder icon under the Mail section Then click on the Add Forwarder button Next enter the Group Name next to Address to Forward together with the domain name, then under the Destination section add all the email addresses**comma separated** that need to receive the email whenever a mail is send to the group. Once done click on Add Forwarder

April 7, 2018 · 1 min · 67 words · icarnaghan

How to setup Barracuda Networks Reputation Block List in Web Host Manager

Login to WHM using your root username and password. Search and open **Exim Configuration Manager ** Click on the RBLs tab under the Basic Editor tab Click on Manage Add Barracuda RBL under the Add a new RBL Section Rbl Name = Barracuda Rbl Info URL = http://www.barracudacentral.org/rbl/removal-request Dns List = b.barracudacentral.org Click on **Add ** Return to the Exim Configuration Manager, and under the Basic Editor->RBLs tab switch the Custom RBL: Barracuda Rbl **On ...

April 7, 2018 · 1 min · 76 words · icarnaghan

How to setup LAMP (Linux, Apache, mySql, PHP) and phpMyAdmin in Fedora Core 15

NOTE: This is a basic guide to setup LAMP on Localhost We will start off by installing mySql Server first sudo yum install mysql-server Now we will need to start the mySql Server sudo service mysqld start We set a password for mySql sudo mysqladmin -u root password ENTER_YOUR_PASSWORD_HERE The next step will be to install phpMyAdmin, when we install phpMyAdmin, the yum installer automatically gets all dependencies and then installs Apache and PHPtogether with phpMyAdmin ...

April 7, 2018 · 1 min · 167 words · icarnaghan

How to solve You have old files in your logwatch tmpdir (/var/cache/logwatch)

Edit /etc/logwatch/conf/logwatch.conf and override the TmpDir value by changing the default temp directory to /tmp from /var/cache/logwatch /tmp automatically gets trimmed by most Linux distributions meaning that there won’t be a built up of old log files. Now delete the old files in /var/cache/logwatch using the command below: rm -rf /var/cache/logwatch/*

April 7, 2018 · 1 min · 51 words · icarnaghan

How to start Nautilus on Ubuntu

NOTE: Tested on Ubuntu 9.04 Press the Key Combination ALT+F2 together to launch the Run Application window. Type in “gksudo nautilus” and click on Run to execute the command. Nautilus should now be started

April 7, 2018 · 1 min · 34 words · icarnaghan

How to take a screenshot on a Samsung Galaxy device

Press and hold the Power and Home button together at the same time for about 2 seconds. A shutter sound will be heard indicating that your screenshot was successful. The screenshot is saved within your Gallery folder under the screenshots session.

April 7, 2018 · 1 min · 41 words · icarnaghan