To view the rules being used by pf
pfctl -g -s rules
from http://www.thedeepsky.com/howto/newbie_pf_guide.php
Tuesday, January 24, 2012
Tuesday, September 27, 2011
get the protocol (http) back in firefox 7 location bar
To get the protocol (http https ftp) to appear in the location bar of firefox 7
open the config by typing "about:config" in the location bar
Click the Ill be careful i promise button.
search for browser.urlbar.trimURLs
set to false
The protocols should now be visible again.
open the config by typing "about:config" in the location bar
Click the Ill be careful i promise button.
search for browser.urlbar.trimURLs
set to false
The protocols should now be visible again.
Monday, September 26, 2011
remember tao_root
When generating the workspace using mwc (Make Project Creator) and you get the error
ERROR: Unable to locate parent: tao_versioning_idl_defaults
be sure to set your TAO_ROOT variable to the TAO location.
ERROR: Unable to locate parent: tao_versioning_idl_defaults
be sure to set your TAO_ROOT variable to the TAO location.
Thursday, September 8, 2011
Friday, September 2, 2011
single shell line for
for fle in `find . -name '*vs8*' | grep -v '.svn'`; do \
export newfle=`echo $fle | sed -e "s/vs8/vs10/g"`; \
if [ ! -f "$newfle" ] ; then \
cp "$fle" "$newfle"; \
else \
echo "$newfle" already exists; \
fi \
done
note the semicolons and export(to use the variable name)
export newfle=`echo $fle | sed -e "s/vs8/vs10/g"`; \
if [ ! -f "$newfle" ] ; then \
cp "$fle" "$newfle"; \
else \
echo "$newfle" already exists; \
fi \
done
note the semicolons and export(to use the variable name)
Tuesday, November 16, 2010
locating commands in linux
which (tracks through $PATH)
alias (shows aliases)
declare -F (shows bash functions)
bash function reminder came from
http://unix.derkeiler.com/Newsgroups/comp.unix.solaris/2007-04/msg00957.html
alias (shows aliases)
declare -F (shows bash functions)
bash function reminder came from
http://unix.derkeiler.com/Newsgroups/comp.unix.solaris/2007-04/msg00957.html
Subscribe to:
Posts (Atom)