FAQ
Linux server
- How do I connect to the Linux server with the command line?
- Run
ssh user@csitrd.kutztown.eduwhereuseris your Kutztown user ID (the first part of your email address).
- Run
- How do I copy a file to the Linux server with the command line?
- Run
scp <source file path> user@csitrd.kutztown.edu:~/<destination file path>whereuseris your Kutztown user ID (the first part of your email address).
- Run
- How do I copy a file from the Linux server with the command line?
- Run
scp user@csitrd.kutztown.edu:~/<source file path> <destination file path>whereuseris your Kutztown user ID (the first part of your email address).
- Run
- How do I set up a safe alias for removing files?
- There is a file named
.bashrcin your home directory. Add the following line to the end of that file:alias rm='rm -i'
- There is a file named
- Where are the examples and project solutions?
/export/home/public/schwesin/csc256/examples
- Where is the
sqlite3executable locate?/home/kutztown.edu/schwesin/local/bin
- How do I add a directory to my
PATH?You can add a line similar to the following to your
~/.bashrcfile:export PATH=<directory>:${PATH}where
<directory>is the directory you want to add to thePATH.