How to clear screen after logout?
>>If you are using bash then create a file named '.bash_logout', if one >>dowsn't exist, and add the single command 'clear' . You can also add: trap clear 0 at the top of /etc/profile This will clear the console screen irrespective of which VT that's in use or who's using it. It's just a single entry in one file. or -------########--------------######### alias bye = "clear && exit" Another viable solution, if you use the bash shell, I believe you can add the word "clear" on one line of your ~/bash_logout, and the screen will be cleared for you. You can also install the "mingetty" program, then do the following: edit /etc/inittab, and change the lines that look like 1:2345:respawn:/sbin/getty 38400 tty1 2:23:respawn:/sbin/getty 38400 tty2 ... to look as follows: 1:2345:respawn:/sbin/mingetty tty1 2:23:respawn:/sbin/mingetty tty2 ... (or just comment the originals out, and add the new lines). Regardless, mingetty clears the screen automatically on logout, by default. Some would argue that mingetty is also faster. Regards Anaconda [Non-text portions of this message have been removed]

