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.01w
cis002.01w
cis010.01w
cis012a.01w
cis015a.01y
cis015a.02w
cis015a.03w
cis015a.04w
cis015b.01w
cis015b.02y
cis015c.01w
cis018.01
cis019a.02w
cis019l.01w
cis019p.02w
cis027a.01w
cis027a.01y
cis027a.04y
cis027b.03w
cis027c.03w
cis050a.02w
cis050a.06w
cis052a.03w
cis052b.01w
cis052n.01w
cis052p.01w
cis052q.02w
cis068a.01w
cis068a.04w
cis068b.01w
cis68c1.02w
cis68c2.01w
coin051.04w
coin056.01w
coin065.02w
coin070a.02w
coin072.01w
coin074a.04w
coin078.04w
cast050d.01w
cast052a.04w
cast063a.01w
cast063b.01w
cast090a.03w
cast092a.06w
cast092b.01w
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

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;
}
?>