Live Update Repair
October 11th, 2006Here's a link to Symantec's live update repair page.
http://service1.symantec.com/SUPPORT/sharedtech.nsf/docid/1999051911110813?OpenDocument&seg=en
Search/replace in files using perl command line
August 15th, 2006Here's a method for using a single perl command to search and replace for regular expressions in a file or multiple files
perl -pi -e s#orig text#replace text#g [filenames]
sshfs fstab entry
August 7th, 2006Here's an example of a fstab entry for a sshfs mount.
# sshfs filesystems
# <file system> <mount point> <type> <options> <dump> <pass>
sshfs#username@remotesystem:/pub /mnt/pub fuse defaults 0 0
Ports - SSH Port Forwarding
August 7th, 2006Here's some port numbers to remember:
VNC - 5900
Remote Desktop - 3389
ssh -l [remote user] -N -L [local port]:[target network machine name]:[target machine port] [target ssh machine]
Kill processes started by system
July 13th, 2006Way, way too many times, I've seen some sort of process chewing up all my system processing cycles in Windows. Unfortunately, many times if I try to kill these processes, the system won't let me stating "access is denied". To work around this, use the following command to start up the task manager as "system".
at TIME /interactive taskmgr
where TIME is 1 minute from now.
