Linux Lab Home Directories Index

This is the Linux lab home directories index page. Make sure your class is listed and if not please contact your instructor. The directories are created dynamically depending on the classes that have requested unix accounts current quarter.

CISCOINCASTBTOTHER
cis001.01y
cis002.01w
cis010.01w
cis015a.01y
cis015a.02w
cis015a.03w
cis015a.04w
cis015b.01y
cis015b.02w
cis018.01
cis018.02
cis019a.01w
cis019w.01w
cis027a.01y
cis027a.02w
cis027a.03w
cis027b.01y
cis027b.02w
cis027b.03w
cis027b.04w
cis027p.01w
cis052a.03w
cis052b.02w
cis052e.04w
cis052j.01w
cis052n.01w
cis054c.02w
cis068a.01w
cis068a.01y
cis068a.02w
cis068b.01w
coin051.01w
coin058.01w
coin061.07w
coin063.04w
coin065.03w
coin070a.01w
coin072.01w
cast052a.01w
cast090a.03w
cast092a.01w
cast093a.02w
cast104a.01w
cast107d.01w
bt059.02w
staff
Unix Quick Start
File Permissions
My Disk Quota
MySQL Portal

Linux Remote Desktop Servers

The following are available Remode Desktop Servers. You will need the latest version of JAVA to be able to connect.

vnc-srv-2 vnc-srv-3 vnc-srv-4

Secure Login Server terminals

SSH Server 1 SSH Server 2

Secure FTP Servers

Host Name: 153.18.145.44 Host Name: 153.18.145.47

Get live updates from the CTIS lab twitter page

CTIS twitter page

Administrator's Contact information

Phone: (650) 949-7620

E-mail: Send the Admin a message

\n"; ?>

Office: 4205

Office Hours: Monday - Friday from 8:00 am to 4:00 pm

Online Support: PSME Support

Important Linux Links

How to secure your web pages using Linux user authentification

If you want to prevent the general public to access your webpages, you can add the following code to any webpage you have in your home directory. Just make sure it is on top of your document and you must also rename the file adding the php file exention.

This code will force anyone trying to view the file to login to the system using their CTIS Linux account user name and password. Therefore only students with Linux accounts and CTIS faculty members will be able to access the contents of the folder.

<?php
session_start();
require_once("/home/includes/gen_index.inc");
$currdir = curPageURL();
$_SESSION['curdir'] = $currdir;
if(!isset($_SESSION['ldap_is_logged_in'])||($_SESSION['ldap_is_logged_in']!=true))
{
header('location:/includes/authform.php');
exit;
}
?>