Students in EE and CS classes can get one or more of these accounts from EECS:
1. Instructional "named" account:
|
2. Instructional "class" account:
|
If your CalNet ID does not work at WebAcct, here's how you can get an account:
These accounts:
Users with pre-existing EECS research accounts should request an account using WebAcct to obtain access to the Instructional computers and printers. Please see below for details. Login to WebAcct for a summary of your instructional accounts and print quotas. |
Users with EECS research accounts:
Students with existing EECS research accounts need to submit a request for additional access to the Instructional computers and printers. To add Instructional privileges to an existing account, login to WebAcct as described above.
Here are some distinctions between the research and the instructional accounts:
|
||||
Windows password: |
|
|||
UNIX password: |
|
|||
home directories: |
|
Logon servers: |
|
|
Wireless network: |
|
|||
Help: | ||||
Please see
Finding Computer Resources in EECS for additional comparisons.
Please see microsoft.help for information about connecting to all of your home directories at the same time. |
UC Extension & Concurrent Enrollment students:
For information about obtaining EECS computer accounts and cardkey access to the EECS labs, please see the "UC Extension & Concurrent Enrollment students" section on the policies page.
Masters in Engineering & Master of Integrated Circuits students:
For information about obtaining EECS computer accounts and cardkey access to the EECS labs, please see the "Masters in Engineering & Master of Integrated Circuits students" section here.
If you are not able to utilize the bSecure VPN service, you may utilize the SSH Jumphost using SSH keys: Jumphost
if you are on an EECS UNIX or macOS computer: |
|
|||||||||
if you are on a non-EECS UNIX or macOS computer: |
|
|||||||||
if you are on an EECS Windows computer: |
|
|||||||||
if you are on a non-EECS Windows computer: |
|
|||||||||
Using email or removable media to transfer files: |
|
Summary:
|
You can login to our UNIX systems and run programs there that display their graphical output on your computer screen. To do this, you need an XWindows server running on your computer. You can download Putty, WinSCP and Xming for this.
To login to UNIX/Linux and run XWindows programs from a Windows computer, follow these steps:
Troubleshooting XWindows problems:
Here are some common errors and their causes.
Problem: | Possible Causes: | Solutions: |
You type the UNIX command (such as "xterm") and you get an error
similar to
X connection to 128.32.138.27:11.0 broken (explicit kill or server shutdown). |
An XWindows server (Xming, XDarwin, etc)
is not running on your local computer.
The .Xauthority file in the user's UNIX directory is old. The UNIX account is over its disk quota; this prevents the .Xauthority file from being written. Your firewall is blocking it. |
Start an XWindows server
on your desktop computer.
Delete .Xauthority file in your UNIX acocunt; login again to UNIX account. Reduce UNIX disk usage and login to the UNIX account again. Turn off the firewall and try again. If that fixes it, then turn the firewall back on and enable the XWindows server (Xming, Exceed, etc). (For the Symantec filewall, turn off "auto protect" and tell it to alert you when it blocks something, so you'll get a chance to "allow" the XWindows connections.) |
You type the UNIX command (such as "xterm") and you
get an error similar to
Error: Can't open display:
|
"X11 Forwarding" is not enabled in the Ssh window.
You have an old 'setenv DISPLAY' command in your .cshrc or .login file. |
Logout from UNIX, enable "X11 Forwarding", login again.
Remove all hard-coded 'setenv DISPLAY' commands, logout, login again. |
You type "emacs &" and it just hangs for 30 seconds to a minute, then you are disconnected from the server you are logged onto. |
"X11 Forwarding" is enabled in the Ssh window but you
are not running an XWindows server.
You have an old 'setenv DISPLAY' command in your .cshrc or .login file. |
Run the command "emacs -nw &" (-nw = 'no windows').
or Run the command "emacs" (without the &) so you can see any error messages. Remove all hard-coded 'setenv DISPLAY' commands, logout, login again. |
Ed Discussion |
Create an account and password for yourself there, then ask your
instructor for the name of the course so you can "enroll"
in it there.
An enrollment roster can't be attached to Piazza, so the students have to sign up for it themselves. Typically, the instructor will send an email to the class inviting them to register for the class in Piazza. |
bCourses | This is the UC Berkeley course management system. Login to this server using your UC Berkeley CalNet ID. On bCourses, the Discsussions and Collaborations tools are useful for group communication. Unlike USENET and Google Groups, this server will not receive spam. |
Google Groups | This service duplicates postings from USENET news servers. The contents may not be real-time copies of the source. It is free, but some users are sceptical about the privacy of data stored where the vendor may reveal it to advertisers. |
Usenet, Supernews | Fee-based USENET services. |
Questions about SSH: | Answers: |
1. Is the "pass phrase" like the password on a UNIX account? Does it need to be long, and with nonalphabetic characters etc.? What happens if someone guesses it? |
1. Passphrase is like a password, which is used to enable increased
security (it is not required). "ssh-keygen" creates it. The UNIX
"man ssh-keygen" command says
"The passphrase may be empty to indicate no passphrase (host keys must have empty passphrase), or it may be a string of arbitrary length. Good passphrases are 10-30 characters long and are not simple sentences or otherwise easily guessable..." If someone guesses it, they can login to your account and do bad things. |
2. Suppose you work on more than two accounts (for example: my home Mac, my campus Mac, my hera account, from which I access a variety of other accounts). Will one key suffice for the various accounts that I use for initial login, or should I have different keys? | 2. The SSH "key" files are stored in files in your .ssh subdirectory on UNIX, or in your UserKeys folder on Windows. The files could be unique in each account, or they could be copied (do it securely using scp!) to other accounts. |
3. Every time I login with ssh, I get the message that hera is sending a previously unknown key (or some such thing). What's going on here, and what's the proper response? | 3. If you answer "yes" to the question, ssh will add the key of the remote host (ie "hera") to your ~/.ssh/known_hosts file (UNIX) and you won't be asked again, unless they change the host key on hera (or someone is pretending to be hera on the network). |