-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunix-access.html
52 lines (44 loc) · 1.45 KB
/
unix-access.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE HTML>
<html>
<head>
<title>Unix access</title>
<meta charset="utf-8">
<script type='text/javascript'>
function write_last_mod ()
{
var loc = new String (document.location);
if (loc.match (/\.html($|\?.*)|\/$/)) {
var last_modified = new Date (document.lastModified);
// var date_stamp = last_modified.toDateString ();
// document.writeln (date_stamp);
document.writeln (last_modified);
}
}
</script>
</head>
<body bgcolor="#ffffff">
<h1>Access to Unix machines at MFF UK</h1>
<p>You can remotely use some Linux machines in the
<a href="https://www.ms.mff.cuni.cz/labs/index.html.en">labs of Malá
Strana</a>. Those are <code>u-pl1.ms.mff.cuni.cz</code> to
<code>u-pl37</code>, as of writing this. Use the <code>ssh</code> client
shipped with your Unix/Linux/Mac installation to reach those machines, for
example:
<pre>
$ ssh your-login@u-pl5.ms.mff.cuni.cz
</pre>
<p>If you want a different system, you can install it into a virtual machine,
for example <a href="http://www.virtualbox.org/">VirtualBox</a>, <a
href="http://bellard.org/qemu/">QEMU</a>, or <a
href="http://www.vmware.com/">VMWare</a>.
<p>To access Unix machines from a Windows installation, you can use a widely
used SSH client <a
href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a>. Windows 10
is already shipped with OpenSSH as beta.
<p><hr>
Lasted changed:
<script>
write_last_mod ();
</script>
</body>
</html>