This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
binutils-2.17.50.0.6 | |
compat-libstdc++-33-3.2.3 | |
compat-libstdc++-33-3.2.3 (32 bit) | |
elfutils-libelf-0.125 | |
elfutils-libelf-devel-0.125 | |
gcc-4.1.2 | |
gcc-c++-4.1.2 | |
glibc-2.5-24 | |
glibc-2.5-24 (32 bit) | |
glibc-common-2.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# wlsndm startup script for node manager | |
# | |
# chkconfig: - 75 15 | |
# description: weblogic | |
# processname: WLSADMIN | |
# Source function library | |
. /etc/rc.d/init.d/functions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## .screenrc ## | |
startup_message off | |
sorendition 00 07 | |
# Tab bar | |
hardstatus off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/XProtect.meta.plist` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# inittab is only used by upstart for the default runlevel. | |
# | |
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM. | |
# | |
# System initialization is started by /etc/init/rcS.conf | |
# | |
# Individual runlevels are started by /etc/init/rc.conf | |
# | |
# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alter user USERNAME account unlock; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# | |
# | |
#create flexvol | |
vol create <volume_name> <aggregate_name> <size><m|g> | |
# activate Deduplication or Storage Efficiency | |
sis on /vol/<volume_name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# | |
# | |
# first, read current exports file | |
rdfile /vol/vol0/etc/exports | |
# second, copy output to text editor, make necessary changes | |
# third, copy/paste new exports file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Used to tar up all the directories in the cwd and create tgzs with the names of the original directories | |
for i in `find . -type d -depth 1`; do tar -czvf $i.tgz $i; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Mavericks.app --nointeraction |