CS352
 
TA : Tuan Phan
Office : Hill 367
Email : tphan@cs.rutgers.edu
Office Hours : Thu 7:00pm - 8:00 pm
In Hill 367

Recitation :
Wed: 8.10-9.00 pm

 
Announcements
 
----2007/09/20----

- WELCOME!!!
- NOTE: All annoucements have been posted in the main Web Site for CS 352: http://remus.rutgers.edu/cs352/F07/ .

- Stay tuned here for information related to my participation in your education.
- Recitation information, my availability changes, code review scheduling with me, etc. will at some point get updated here.
- So check back here if you have any questions before you email me.
 
Projects
 
Project 1
Project 2
 
HOMEWORKS
 
Remember, homeworks are for your practice only, I won’t grade them. But I highly suggest you doing the homeworks because this would be good for your exams. You could submit them in the recitation and I'll try to return them after 1 week.

 
Slides
DATE TOPICS HOMEWORK
Nov 1, 2007 Code review
Oct 25, 2007 Midterm 1' solution, Project 2
Oct 18, 2007 No recitation, replaced by a lecture
Oct 11, 2007 IP Address, Subnetting
Oct 4, 2007 Preparation for midterm 1
Sep 27, 2007 Project 1, Switching, Performance Analysis Homework for Sep 27
Sep 20, 2007 Project 1 None
Sep 13, 2007 Layering, DNS, Working Environment Homework for Sep 13
 
Links
 
 
Info
 
  • Useful Linux Command
Command
Breif Description
Example Usage
cd
Change Directory
cd ~
mkdir
Make Directory
mkdir cs352
rm
Remove file or directory
rm -rf cs352
vi || emacs || kate
Text Editor
vi Server.java
javac
Compile a .java File
javac Server.java
java
Run a .class file
java Server 8000
ps
Look at processes
ps -ef
kill
Kill a Process by Number
pkill 18231
pkill
Kill a Process by Name
pkill java
tar
Tar or Untar files
tar -czf cs352.tgz ~/cs352
scp
Secure Copy over the Network
scp cs352.tgz trix:~/cs352.tgz
ssh
Secure Shell over the Network
ssh tphan@trix

whereis

Find where a program is
whereis ifconfig
ifconfig
Network Interface Configureation
/sbin/ifconfig
netstat
Net Statistics
netstat
mozilla
Web Browser
mozilla &
acroread
PDF Reader
acroread tmp.pdf &
xhost
Xhost manager
xhost +kix.rutgers.edu
setenv || export
Environment Variable, Display and Change
setenv DISPLAY trix.rutger.edu:0.0

Type in "man <command>" for more info on usage