If you are using GNU ls, then ls -A will do it. Otherwise, use the regular expression "* .[^.]* ..?*".
To set environment variables in the Bourne-derived shells, use the export command, as in:
export VARIABLE=value
Place this in the proper dot-file for your shell (.profile, .bashrc, .zshrc, .zshenv, etc).
The C-Shell uses a different syntax than the Bourne shells, and so you will need to use setenv, as in:
setenv VARIABLE value
Again, place this in the proper dot-file for your shell (.chsrc, .login, etc)
From a posting to uiuc.sw.linux by Mark Roth,
First obtain the package xntp. Then run "ntpdate ntp.uiuc.edu" once on bootup, and run xntpd to keep the clock synced. Put "server ntp.uiuc.edu" in /etc/ntp.conf so xntpd knows where to get its time information.
Traditionally, telnet and rsh do not encrypt their connections. Therefore, anybody who can access a computer between yours and the destination could easily grab your password if you use those utilities. Ssh protects against this attack, along with IP spoofing, IP source routing, DNS spoofing, and X attacks based on X authentication data. Furthermore, ssh automatically sets up X forwarding for you; there is no need to mess with xhost or xauth.
To learn more about ssh, visit the ssh FAQ.
Please see the Kernel HOWTO at http://metalab.unc.edu/LDP/HOWTO/Kernel-HOWTO.html.