//******** Command Notes ********************// set SHELL=/bin/ksh - Made the korn shell the shell language echo $SHELL - Show which shell you are using exec tcsh - Load up the t-cshell, then up uparrows to see history - and use arrow, backspace and etc to edit command lines psh - reload the menu shell (mail, vacation msg, etc.) exec ksh - Load up the korn shell set -o vi - sets the vi editor as the command line editor ~davidw/bin/mfdiag.ksh - use Davids filter reader find . -name '*UW*' -print = find files ps -ef | grep kmingea = look for Kens jobs -------------------------- MySQL Notes To start mysqld at boot time you have to copy support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! This is done with: ./bin/mysqladmin -u root password 'new-password' ./bin/mysqladmin -u root -h ovid01 password 'new-password' See the manual for more instructions. You can start the MySQL daemon with: cd . ; ./bin/mysqld_safe & You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory: cd sql-bench ; perl run-all-tests Please report any problems with the ./bin/mysqlbug script! The latest information about MySQL is available on the web at http://www.mysql.com Support MySQL by buying support/licenses at https://order.mysql.com -------------------------------------------- ps -ef | grep kmingea use the & sign to run a job in the background MS Sql listens on 1433 port.