Monthly Archive: June 2016

0

Fixing Wi-Fi Issues in OS X El Capitan

  # Stubborn wifi fix for the impatient (El Capitan & Sierra) sudo rm /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist sudo rm /Library/Preferences/SystemConfiguration/com.apple.wifi.message-tracer.plist sudo rm /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist sudo rm /Library/Preferences/SystemConfiguration/preferences.plist   Source: http://osxdaily.com/2015/10/16/fix-wi-fi-problems-mac-os-x-el-capitan/ Though Apple has largely resolved the wi-fi issues that persisted in some Macs...

0

Gimp: How to replace a color

Source: http://infofreund.de/gimp-replace-color/ How to change a color in gimp Hi all, in this small tutorial i want to show you, how you can replace a color in Gimp. There are several ways to change a color . It depends on the range...

0

Setting up knox with Active Directory/ LDAP

Source: https://cwiki.apache.org/confluence/display/KNOX/Using+Apache+Knox+with+ActiveDirectory   This article covers using Apache Knox with ActiveDirectory. Currently Apache Knox comes “out of the box” setup with a demo LDAP server based on ApacheDS. This was a conscious decision made to simplify the initial user experience with Knox. Unfortunately,...

0

LDAP Tutorial: Add User Entries and Group Entries

Source: https://access.redhat.com/documentation/en-US/Fuse_MQ_Enterprise/7.1/html/Security_Guide/files/LDAP-AddUserEntries.html Overview The basic prerequisite for using LDAP authentication in the broker is to have an X.500 directory server running and configured with a collection of user entries and group entries. For users who are unfamiliar with X.500 directory...

0

LDAP – Apache Directory Studio: A Basic Tutorial

Source: http://krams915.blogspot.com/2011/01/ldap-apache-directory-studio-basic.html In this tutorial we will setup a basic LDAP structure containing users and roles. We will be using the excellent Apache Directory Studio IDE. This tutorial will be the basis for our other Spring LDAP integration tutorials. What is...

0

iTerm shell integration

Important – iTerm shell integration Shell integration should be installed on all remote hosts Connections to non standard ssh port (other than 22) can be setup in ~/.ssh/config. Format below Host www.adhocshare.tk HostName 192.168.80.200 Port 10527   Iterm2 bash prompt...

0

Run a script as root

Source: http://www.cyberciti.biz/tips/shell-root-user-check-script.html Sometime it is necessary to find out if a shell script is being run as root user or not. When user account created a user ID is assigned to each user. BASH shell stores the user ID in $UID...