Student FAQ

1. What are the CS servers?

CS servers are department-managed systems used for programming, coursework, compiling code, and creating technical documents.

2. Why should I use the CS servers?

They provide a consistent environment with tools already set up for coursework, making it easier to complete assignments.

3. How do I log in?

Use SSH from a terminal:

ssh your_username@cs.umb.edu

4. What can I do after logging in?

You can navigate files, edit code, compile programs, run code, and create documents such as LaTeX PDFs.

5. How do I see my files?

ls

6. How do I move between folders?

cd foldername
cd ..

7. How do I edit a file?

nano file.c

8. How do I compile a program?

gcc file.c -o file
./file

9. Can I create PDFs?

pdflatex report.tex

10. What is password-less login?

It allows login without typing a password every time using secure keys.

11. Are CS servers only for advanced students?

No. They are useful for both beginners and advanced students.

12. Where can I get help?

Check course instructions or contact instructors and department support.