New Items Will Be Added Here As Needed
Using Netscape7
On the UNIX workstations, type "netscape7 &" to use the latest version.
Scrollable Xterm Window
On the UNIX workstations, type "xterm2 NAME".
Grabing a screen image
On the UNIX workstations, use "xv" and click on "grab".
You can then crop it and save it.
On a PC, hit SHIFT-PRINT SCREEN simultaneously.
Then select "PROGRAMS-->ACCESSORIES-->PAINT" and paste the screen into the file.
You can then crop it and save it.
Converting gif to ps
convert original.gif revised.ps
Resource Management
Many of you are leaving processes running unintentionally.
To see what is running, login to a machine (faster.engr.utk.edu)
and type:
ps -fu username
To kill a process, type: kill -9 PID where PID was shown when you
typed the ps command.
To check the resource usage on a machine, just type: top
To exit "top", hit control-C.
When there are many users and you want to be nice to them, you can
set the resource usage level of your process by typing:
nice +5 command &
The number between "nice" and "command" can be up to 19 (which is being
VERY nice).
Example commands are "max2win&" or "icfb&".
Free Powerpoint Viewer
Powerpoint Viewer
Pointers for Netscape
PREFERENCES-HOME: http://www.ece.utk.edu/
ADD-BOOKMARK:
http://vlsi1.engr.utk.edu/ece/bouldin_courses/551/overview.html
Disk Space Management
To determine your quota:
quota -v
To compress a file:
gzip filename
To uncompress a filename.Z:
gunzip filename.Z
To compress a file:
compress filename
To uncompress a filename.Z:
uncompress filename.Z
To compress and encode a file:
compress filename.ps; uuencode filename.ps.Z filename.ps.Z > filename.ps.Z.uu
To decode and uncompress a file:
uudecode filename.ps.Z.uu; uncompress filename.ps.Z
To tar a subdirectory given "vlsi/*.ps", first cd above vlsi, then:
tar cvf vlsi.tar vlsi; gzip vlsi.tar
This creates: vlsi.tar.gz
To uncompress and untar a directory of files given "vlsi.tar.gz":
gunzip -c vlsi.tar.gz | tar xvf -
This creates: vlsi/*.ps
FTP
ftp remote_machine
Name: anonymous
Password: [your email address]
ftp> cd pub
ftp> binary
ftp> put filename.ps
ftp> get filename.ps
ftp> bye
VHDL example files on-line:
cd /usr/cad/Lager/common/Vanda/training/VHDLtrain92/stdcell/behv
cd /usr/cad/Lager/common/Vanda/training/VHDLtrain92/stdcell
VHDL Tutorial Slides
ghostview ~cad/course/VHDL_slides.ps &