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