Tomcat 8 initd item for RHEL
#!/bin/bash # chkconfig: 345 99 01 # description: startup script for Tomcat8 export CATALINA_HOME=/opt/Tomcat PATH=/sbin:/bin:/usr/sbin:/usr/bin start() { sh $CATALINA_HOME/bin/startup.sh } stop() { […]
It's all in the Mac magic…
#!/bin/bash # chkconfig: 345 99 01 # description: startup script for Tomcat8 export CATALINA_HOME=/opt/Tomcat PATH=/sbin:/bin:/usr/sbin:/usr/bin start() { sh $CATALINA_HOME/bin/startup.sh } stop() { […]
http://ipxe.org ipxe.iso And customer builder for the iso is here https://rom-o-matic.eu
Rather than using obfuscated escape sequences, use the tput facility instead. BLACK=$(tput setaf 0) RED=$(tput setaf 1) GREEN=$(tput setaf 2) YELLOW=$(tput setaf […]
Here is the basic script the AutoDMG is built around. 123456789101112131415# Mount the install media. hdiutil attach -noverify -mountpoint /tmp/installesd /Applications/Install\ OS\ […]
security authorizationdb write system.preferences allow security authorizationdb write system.preferences.network allow security authorizationdb write system.services.systemconfiguration.network allow First line MUST be used to enable […]
In the following sudo entry: superadm ALL=(ALL) ALL there are four fields: The first one specifies a user that will be […]
echo ‘echo "$(whoami) ALL=(ALL) NOPASSWD:ALL" >&3’ | DYLD_PRINT_TO_FILE=/etc/sudoers newgrp; sudo -s Found on https://www.sektioneins.de/en/blog/15-07-07-dyld_print_to_file_lpe.html
diskutil erasevolume HFS+ ‘RAM Disk’ `hdiutil attach -nomount ram://8388608` where the number after ram:// is based on a number of 512 bytes […]
As you may know, some Mac Pro models have been introduced that are identical or very nearly identical to the model that […]
http://swscan.apple.com/content/catalogs/others/index-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog and betas http://swscan.apple.com/content/catalogs/others/index-10.11seed-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog
Creating a NetBoot server with CentOS 7 and BSDPy Creating a NetBoot server with CentOS 7 and BSDPy | Tips and Tricks […]
The below post is graciously borrowed from Jeff at Insomniac Software. Original post is here How to stop the OS X VM system […]
For some reason on the Mac running Tomcat 8 editing the BASEFOLDER location in the web.xml does not work. However setting an […]
Variable Expansion Formats ${#variable} length of variable ${variable:–word} value of variable if set and not null, else print word ${variable:= word} value of variable if set and not null, […]
https://helpx.adobe.com/creative-cloud/packager/customize-creative-cloud-app.html Creative Cloud Help | Customize Creative Cloud app for desktop
#!/bin/bash #resetprinting #This resets the printer system in the same manor as the GUI reset printers works #v1.0 Daniel Shane 27/06/14 #Check […]