Ctrl-Alt-F1
and Ctrl-Alt-F7
.
Then you can easily log in as root.
init 3
,
wait a few seconds, then init 5
.
rm -r -f /lhome; cp -a /usr/local/etc/skel /lhome
.
passwd luser
to change the luser password.
service cups restart
to restart the printer queue.
If this doesn't help, use lpq
and lprm
to
remove the offending print job.
less /var/log/messages
to do this.
logwatch
digest via email. To have this sent to you, set the root alias
in /etc/postfix/aliases
(near the end) and
run newaliases
.
ssh bvds
to log onto
bvds.
Type mathematica &
to get the notebook version or type
math
to get the terminal version.
(The &
creates a
detatched process so you can still use the shell window.)
To enter a command in Mathematica, you have to
use the Enter
key on the corner of your keyboard.
The Mathematica book can be found in the lab.
gnumeric &
in a shell window.
emacs &
in a shell window.
g77
;
C is gcc
; and C++ is g++
.
ls |
list directory contents |
cd |
change directory |
rm |
delete a file.
rm *.log will delete
all files that end with ``.log'' |
mv |
move a file |
cp |
copy a file |
lpr |
print a file.
You can also print from emacs.
The default printer lab is already set. |
xeyes |
you'll see |
~ |
is your home directory |
. |
is the directory you are now in |
.. |
go up one directory level |
* |
wild card (matches any name).
Thus ls *.f lists all files that
end with ``.f'' |
ls
,
then type man ls
or type info ls
.