If you are a computer science major, you can apply to help@remus to be put in the csmajor group. Being in this group removes the need for you to renew your account every semester.
If you are not a matriculated graduate student in computer science, but you are taking a course offered by the Graduate School at New Brunswick Department of Computer Science, you are eligible for a one-semester account on the DCS Graduate systems.
mkdir project chgrp mygroup project chmod 770 project chmod g+s projectThis will make a directory called "project" that all members of the group can read and write to, but no one else can read or write. It also sets the setgid bit on the directory, so new files created in that directory will be owned by the same group as the directory ("mygroup"). Note that all directories above the one you create must have at least execute permission.
Also, note that although the directory created by the steps above is readable and writable by all of the group members, files you create in it may not be. A file's default permissions are determined by your umask. Because of University academic regulations the default umask is 077, which means that when files are created, by default they can only be read by their owner. The simplest way to deal with this problem is to go back periodically, or every time you create a file, and use the command "chmod 660 filename" to make it group read/writable.