Categories
Uncategorized

NFS locks on solaris

Clear locks

clear_locks -s servername

Restart nfs

svcadm network/nfs/server
Categories
Uncategorized

Python 3 using anaconda on iMac

Download the text installer, Anaconda…sh then make it excecutable and run without sudo.

chmod +x Anaconda...sh
./Anaconda...sh

After you install anaconda, python3.x will be your new default python as anaconda modifies the .bash_profile

If you'd prefer that conda's base environment not be activated on startup, 
   set the auto_activate_base parameter to false: 

conda config --set auto_activate_base false

Categories
Uncategorized

Apache: access denied because search permissions are missing with SELINUX enabled

chcon -R -t httpd_sys_content_t /path/to/dir
Categories
Uncategorized

IP Address in Linux

Get internal and external IP address from the terminal

Internal

hostname -I

External

curl -4 icanhazip.com