Latest Versions Are Shown by Default

Total Page:16

File Type:pdf, Size:1020Kb

Latest Versions Are Shown by Default HPC wiki Documentation Release 2.0 Hurng-Chun Lee, Daniel Sharoh, Edward Gerrits, Marek Tyc, Mike van Engelenburg, Mariam Zabihi Sep 15, 2021 Contents 1 About the wiki 1 2 Table of Contents 3 2.1 High Performance Computing for Neuroimaging Research.......................3 2.2 Linux tutorial...............................................4 2.3 Introduction to the Linux BASH shell.................................. 21 2.4 The HPC cluster............................................. 37 2.5 The project storage............................................ 102 2.6 Linux & HPC workshops........................................ 105 i ii CHAPTER 1 About the wiki This wiki contains materials used by the Linux and HPC workshop held regularly at Donders Centre for Cognitive Neuroimaging (DCCN). The aim of this workshop is to provide researchers the basic knowledage to use the High- Performance Computing (HPC) cluster for data analysis. During the workshop, the wiki is used in combination with lectures and hands-on exercises; nevertheless, contents of the wiki are written in such that they can also be used for self-learning and references. There are two major sessions in this wiki. The Linux basic consists of the usage of the Linux operating system and an introduction to the Bash scripting language. After following the session, you should be able to create text-based data files in a Linux system, and write a bash script to perform simple data analysis on the file. The cluster usage focuses on the general approach of running computations on the Torque/Moab cluster. After learning this session, you should be knowing how to distribute data analysis computations to the Torque/Moab cluster at DCCN. 1 HPC wiki Documentation, Release 2.0 2 Chapter 1. About the wiki CHAPTER 2 Table of Contents 2.1 High Performance Computing for Neuroimaging Research Fig. 1: Figure: the HPC environment at DCCN. 2.1.1 HPC Cluster The HPC cluster at DCCN consists of two groups of computers, they are: • access nodes: mentat001 ~ mentat005 as login nodes. • compute nodes: a pool of powerful computers with more than 1000 CPU cores. Computer nodes are managed by the Torque job manager and the Moab job scheduler. While the access nodes can be accessed via either a SSH terminal or a VNC session, compute nodes are only accessible by submiting computational jobs. 2.1.2 Central Storage The central storage provides a shared file system amongst the Windows desktops within DCCN and the computers in the HPC cluster. On the central storage, every user has a personal folder with a so-called office quota (20 gigabytes by default). This personal folder is referred to as the M:\ drive on the Windows desktops. Storage spaces granted to research projects (following the project proposal meeting(PPM)) are also provided by the central storage. The project folders are organised under the directory /project which is referred to as the P:\ drive on the Windows desktops. The central storage also hosts a set of commonly used software/tools for neuroimaging data processing and analysis. This area in the storage is only accessible for computers in the HPC cluster as software/tools stored there require the Linux operating system. 3 HPC wiki Documentation, Release 2.0 2.1.3 Identity Manager The identity manager maintains information for authenticating users accessing to the HPC cluster. It is also used to check users’ identity when logging into the Windows desktops at DCCN. In fact, the user account received from the DCCN check-in proceduer is managed secretely by this identity manager. Note: The user account concerned here (and throughout the entire wiki) is the one received via the DCCN check-in procedure. It is, in most of cases, a combination of the first three letters of your first name and the first three letters of your last name. It is NOT the account (i.e. U/Z/S-number) from the Radboud University. 2.1.4 Supported Software A list of supported software can be found here. 2.2 Linux tutorial 2.2.1 Very short introduction of Linux Linux is an operating system originally developed by Linus Torvalds in 90’s for cloning the Unix operating system to personal computers (PCs). It is now one of the world-renowned software projects developed and managed by the open-source community. With its open nature in software development, free in (re-)distribution, and many features inherited directly from Unix, the Linux system provides an ideal and affordable environment for software development and scientific computation. It is why Linux is widely used in most of scientific computing systems nowadays. 4 Chapter 2. Table of Contents HPC wiki Documentation, Release 2.0 Architecture The figure above illustrates a simplified view of the Linux architecture. From inside out, the core of the system is called the kernel. It interacts with hardware devices, and provides upper layer components with low-level functions that hide complexity of, for example, arranging concurrent accesses to hardware. The shell is an interface to the kernel. It takes commands from user (or application) and executes kernel’s functions accordingly. Applications are generally refer to system utilities providing advanced functionalities of the operating system, such as the tool cp for copying files. File and process Everything in Linux is either a file or a process. A process in Linux refers to an executing program identified by an unique process identifier (PID). Processes are internally managed by the Linux kernel for the access to hardware resources (e.g. CPU, memory etc.). In most of cases, a file in Linux is a collection of data. They are created by users using text editors, running compilers etc. Hardware devices are also represented as files in the Linux. Linux distributions Nowadays Linux is made available as a collection of selected software packages based around the Linux kernel. It is the so-called Linux distribution. As of today, different Linux distributions are available on the market, each addresses the need of certain user community. In the HPC cluster at DCCN, we use the CentOS Linux distribution. It is a well-maintained distribution developed closely with RedHat, a company providing commercial Linux distribution and support. It is also widely used in many scientific computing systems in the world. 2.2. Linux tutorial 5 HPC wiki Documentation, Release 2.0 2.2.2 Getting started with Linux By following this wiki, you will login to one of the access nodes of the HPC cluster, learn about the Linux shell and issue a very simple Linux command on the virtaul terminal. Obtain a user account Please refer to this guide. SSH login with Putty Please refer to this guide. The prompt of the shell After you login to the access node, the first thing you see is a welcome message together with couple of news messages. Following the messages are few lines of text look similar to the example below: honlee@mentat001:~ 999$ Every logged-in users is given a shell to interact with the system. The example above is technically called the prompt of the Linux shell. It waits for your commands to the system. Following the prompt, you will type in commands to run programs. Note: For the simplicity, we will use the symbol $ to denote the prompt of the shell. Environment variables Every Linux shell comes with a set of variables that can affect the way running processes will behave. Those variables are called environment variables. The command to list all environment variables in the current shell is $ env Tip: The practical action of running the above command is to type env after the shell prompt, and press the Enter key. Generally speaking, user needs to set or modify some default environment variables to get a particular program running properly. A very common case is to adjust the PATH variable to allow the system to find the location of the program’s executable when the program is launched by the user. Another example is to extend the LD_LIBRARY_PATH to include the directory where the dynamic libraries needed for running a program can be found. In the HPC cluster, a set of environment variables has been prepared for the data analysis software supported in the cluster. Loading (or unloading) these variables in a shell is also made easy using the Environment Modules. For average users, it’s not even necessary to load the variables explicitly as a default set of variables corresponding to commonly used neuroimaging software are loaded automatically upon the user login. More details about using software in the HPC cluster is found here). 6 Chapter 2. Table of Contents HPC wiki Documentation, Release 2.0 Knowing who you are in the system The Linux system is designed to support multiple concurrent users. Every user has an account (i.e. user id) that is the one you used to login to the access node. Every user account is associated with at-least one group in the system. In the HPC cluster at DCCN, the system groups are created in response of the research (i.e. PI) groups. User accounts are associated with groups according to the registration during the check-in procedure. To know about your user id and the system group you are associated with, simply type id followed by pressing the Enter key to issue the command on the prompt. For example: $ id uid=10343(honlee) gid=601(tg) groups=601(tg) Using online manuals A linux command comes with options for additional functionalities, the online manual provides a handy way to find the supported options of a command. To access to the online manual of a command, one use the command man followed by the command in question. For example, to get all possible options of the id command, one does $ man id 2.2.3 Understanding the Linux file system Data and software programs in the Linux system are stored in files organised in directories (i.e.
Recommended publications
  • Institutionen För Datavetenskap Department of Computer and Information Science
    Institutionen för datavetenskap Department of Computer and Information Science Final thesis Implementing extended functionality for an HTML5 client for remote desktops by Samuel Mannehed LIU-IDA/LITH-EX-A—14/015--SE 6/28/14 Linköpings universitet Linköpings universitet SE-581 83 Linköping, Sweden 581 83 Linköping Final thesis Implementing extended functionality for an HTML5 client for remote desktops by Samuel Mannehed LIU-IDA/LITH-EX-A--14/015--SE June 28, 2014 Supervisors: Peter Åstrand (Cendio AB), Maria Vasilevskaya (IDA) Examiner: Prof. Simin Nadjm-Tehrani På svenska Detta dokument hålls tillgängligt på Internet – eller dess framtida ersättare – under en längre tid från publiceringsdatum under förutsättning att inga extra-ordinära omständigheter uppstår. Tillgång till dokumentet innebär tillstånd för var och en att läsa, ladda ner, skriva ut enstaka kopior för enskilt bruk och att använda det oförändrat för ickekommersiell forskning och för undervisning. Överföring av upphovsrätten vid en senare tidpunkt kan inte upphäva detta tillstånd. All annan användning av dokumentet kräver upphovsmannens medgivande. För att garantera äktheten, säkerheten och tillgängligheten finns det lösningar av teknisk och administrativ art. Upphovsmannens ideella rätt innefattar rätt att bli nämnd som upphovsman i den omfattning som god sed kräver vid användning av dokumentet på ovan beskrivna sätt samt skydd mot att dokumentet ändras eller presenteras i sådan form eller i sådant sammanhang som är kränkande för upphovsmannens litterära eller konstnärliga anseende eller egenart. För ytterligare information om Linköping University Electronic Press se förlagets hemsida http://www.ep.liu.se/ In English The publishers will keep this document online on the Internet - or its possible replacement - for a considerable time from the date of publication barring exceptional circumstances.
    [Show full text]
  • Free Open Source Vnc
    Free open source vnc click here to download TightVNC - VNC-Compatible Remote Control / Remote Desktop Software. free for both personal and commercial usage, with full source code available. TightVNC - VNC-Compatible Remote Control / Remote Desktop Software. It's completely free but it does not allow integration with closed-source products. UltraVNC: Remote desktop support software - Remote PC access - remote desktop connection software - VNC Compatibility - FileTransfer - Encryption plugins - Text chat - MS authentication. This leading-edge, cloud-based program offers Remote Monitoring & Management, Remote Access &. Popular open source Alternatives to VNC Connect for Linux, Windows, Mac, Self- Hosted, BSD and Free Open Source Mac Windows Linux Android iPhone. Download the original open source version of VNC® remote access technology. Undeniably, TeamViewer is the best VNC in the market. Without further ado, here are 8 free and some are open source VNC client/server. VNC remote access software, support server and viewer software for on demand remote computer support. Remote desktop support software for remote PC control. Free. All VNCs Start from the one piece of source (See History of VNC), and. TigerVNC is a high- performance, platform-neutral implementation of VNC (Virtual Network Computing), Besides the source code we also provide self-contained binaries for bit and bit Linux, installers for Current list of open bounties. VNC (Virtual Network Computing) software makes it possible to view and fully- interact with one computer from any other computer or mobile. Find other free open source alternatives for VNC. Open source is free to download and remember that open source is also a shareware and freeware alternative.
    [Show full text]
  • Unpermitted Resources
    Process Check and Unpermitted Resources Common and Important Virtual Machines Parallels VMware VirtualBox CVMCompiler Windows Virtual PC Other Python Citrix Screen/File Sharing/Saving .exe File Name VNC, VPN, RFS, P2P and SSH Virtual Drives ● Dropbox.exe ● Dropbox ● OneDrive.exe ● OneDrive ● <name>.exe ● Google Drive ● etc. ● iCloud ● etc. Evernote / One Note ● Evernote_---.exe ● onenote.exe Go To Meeting ● gotomeeting launcher.exe / gotomeeting.exe TeamViewer ● TeamViewer.exe Chrome Remote ● remoting_host.exe www.ProctorU.com ● [email protected] ● 888­355­3043 ​ ​ ​ ​ ​ ​ ​ Messaging / Video (IM, IRC) / .exe File Name Audio Bonjour Google Hangouts (chrome.exe - shown as a tab) (Screen Sharing) Skype SkypeC2CPNRSvc.exe Music Streaming ● Spotify.exe (Spotify, Pandora, etc.) ● PandoraService.exe Steam Steam.exe ALL Processes Screen / File Sharing / Messaging / Video (IM, Virtual Machines (VM) Other Saving IRC) / Audio Virtual Box Splashtop Bonjour ● iChat ● iTunes ● iPhoto ● TiVo ● SubEthaEdit ● Contactizer, ● Things ● OmniFocuse phpVirtualBox TeamViewer MobileMe Parallels Sticky Notes Team Speak VMware One Note Ventrilo Windows Virtual PC Dropbox Sandboxd QEM (Linux only) Chrome Remote iStumbler HYPERBOX SkyDrive MSN Chat Boot Camp (dual boot) OneDrive Blackboard Chat CVMCompiler Google Drive Yahoo Messenger Office (Word, Excel, Skype etc.) www.ProctorU.com ● [email protected] ● 888­355­3043 ​ ​ ​ ​ ​ ​ ​ 2X Software Notepad Steam AerooAdmin Paint Origin AetherPal Go To Meeting Spotify Ammyy Admin Jing Facebook Messenger AnyDesk
    [Show full text]
  • Collabkit – a Multi-User Multicast Collaboration System Based on VNC
    Humboldt-Universität zu Berlin Institut für Informatik Lehrstuhl für Rechnerorganisation und Kommunikation Diplomarbeit CollabKit – A Multi-User Multicast Collaboration System based on VNC Christian Beier 19. April 2011 Gutachter Prof. Dr. Miroslaw Malek Prof. Dr. Jens-Peter Redlich Betreuer Peter Ibach <[email protected]> Abstract Computer-supported real-time collaboration systems offer functionality to let two or more users work together at the same time, allowing them to jointly create, modify and exchange electronic documents, use applications, and share information location-independently and in real-time. For these reasons, such collaboration systems are often used in professional and academic contexts by teams of knowledge workers located in different places. But also when used as computer-supported learning environments – electronic classrooms – these systems prove useful by offering interactive multi-media teaching possibilities and allowing for location-independent collaborative learning. Commonly, computer-supported real-time collaboration systems are realised using remote desktop technology or are implemented as web applications. However, none of the examined existing commercial and academic solutions were found to support concurrent multi-user interaction in an application-independent manner. When used in low-throughput shared-medium computer networks such as WLANs or cellular networks, most of the investigated systems furthermore do not scale well with an increasing number of users, making them unsuitable for multi-user collaboration of a high number of participants in such environments. For these reasons this work focuses on the design of a collaboration system that supports concurrent multi-user interaction with standard desktop applications and is able to serve a high number of users on low-throughput shared-medium computer networks by making use of multicast data transmission.
    [Show full text]
  • Networker Module for SAP 18.2 Administration Guide CONTENTS
    Dell EMC NetWorker Module for SAP Version 18.2 Administration Guide 302-005-292 REV 02 Copyright © 2009-2019 Dell Inc. or its subsidiaries. All rights reserved. Published May 2019 Dell believes the information in this publication is accurate as of its publication date. The information is subject to change without notice. THE INFORMATION IN THIS PUBLICATION IS PROVIDED “AS-IS.“ DELL MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND WITH RESPECT TO THE INFORMATION IN THIS PUBLICATION, AND SPECIFICALLY DISCLAIMS IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. USE, COPYING, AND DISTRIBUTION OF ANY DELL SOFTWARE DESCRIBED IN THIS PUBLICATION REQUIRES AN APPLICABLE SOFTWARE LICENSE. Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries. Other trademarks may be the property of their respective owners. Published in the USA. Dell EMC Hopkinton, Massachusetts 01748-9103 1-508-435-1000 In North America 1-866-464-7381 www.DellEMC.com 2 NetWorker Module for SAP 18.2 Administration Guide CONTENTS Figures 9 Tables 11 Preface 13 Chapter 1 Overview of NMSAP Features 17 Road map for NMSAP operations............................................................... 18 Terminology that is used in this guide......................................................... 19 Importance of backups and the backup lifecycle.........................................19 NMSAP features for all supported applications.......................................... 20 Scheduled backups........................................................................20
    [Show full text]
  • Expert Python Programming Third Edition
    Expert Python Programming Third Edition Become a master in Python by learning coding best practices and advanced programming concepts in Python 3.7 Michał Jaworski Tarek Ziadé BIRMINGHAM - MUMBAI Expert Python Programming Third Edition Copyright © 2019 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Commissioning Editor: Kunal Chaudhari Acquisition Editor: Chaitanya Nair Content Development Editor: Zeeyan Pinheiro Technical Editor: Ketan Kamble Copy Editor: Safis Editing Project Coordinator: Vaidehi Sawant Proofreader: Safis Editing Indexer: Priyanka Dhadke Graphics: Alishon Mendonsa Production Coordinator: Shraddha Falebhai First published: September 2008 Second edition: May 2016 Third edition: April 2019 Production reference: 1270419 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78980-889-6 www.packtpub.com To my beloved wife, Oliwia, for her love, inspiration, and her endless patience.
    [Show full text]
  • Vnc Linux Download
    Vnc linux download click here to download Enable remote connections between computers by downloading VNC®. macOS · VNC Connect for Linux Linux · VNC Connect for Raspberry Pi Raspberry Pi. Windows · VNC Viewer for macOS macOS · VNC Viewer for Linux Linux · VNC Viewer for Raspberry Pi Raspberry Pi · VNC Viewer for iOS iOS · VNC Viewer for . Sign in to the VNC Server app to apply your subscription, or take a free trial. Note administrative privileges are required (this is typically the user who first set up a. These instructions explain how to install VNC Connect (version 6+), consisting of For a Debian-compatible Linux computer, download the VNC Viewer DEB. VNC Viewer for Windows Windows · VNC Viewer for macOS macOS · VNC Viewer for Linux Linux · VNC Viewer for Raspberry Pi Raspberry Pi · VNC Viewer for. Download the original open source version of VNC® remote access technology. The latest release of TigerVNC can be downloaded from our GitHub release also provide self- contained binaries for bit and bit Linux, installers for bit. sudo apt install tightvncserver. To complete the VNC server's initial configuration after installation, use the vncserver command to set up a. From your Linode, launch the VNC server to test your connection. You will be prompted to set a password: vncserver How To Install VNC Server On Ubuntu This guide explains the installation and Further, we need to start the vncserver with the user, for this use. RealVNC for Linux (bit) is remote control software which allows you to view and interact with one computer (the "server") using a simple.
    [Show full text]
  • Introduction to GNU/Linux and the Shell 07/10/2019 | J
    Introduction to GNU/Linux and the Shell 07/10/2019 | J. Albert-von der Gönna Leibniz Supercomputing Centre Bavarian Academy of Sciences and Humanities IT Service Backbone for the Advancement of Science and Research Computer Centre 250 for all Munich Universities employees approx. Regional Computer Centre for all Bavarian Universities National Supercomputing Centre 57 (GCS) years of European Supercomputing Centre IT support (PRACE) Introduction to GNU/Linux and the Shell | 07/10/2019 | J. Albert-von der Gönna 3 Course Information • The aim of this course is to provide an introduction to GNU/Linux and the Unix Shell • You will probably benefit the most, if you’re not yet familiar with GNU/Linux and the Unix Shell, but if you plan to work on the HPC and/or Compute Cloud infrastructure provided by LRZ -> by the end of this workshop, you should have the basic skills to successfully interact with GNU/Linux-based systems • Consider the following – especially during hands-on sessions: -> you may want to partner up with the person sitting next to you -> it may be beneficial to sit back and watch the slides/demos -> the slides will be made available after the workshop -> generally: please ask, if you have any questions Introduction to GNU/Linux and the Shell | 07/10/2019 | J. Albert-von der Gönna 4 What is GNU/Linux • Free and open-source operating system • Alternative to Microsoft Windows, Apple macOS, Google Android … • Generally consists of the Linux kernel, libraries and tools, a desktop environment and various applications (e.g. web browser, office suite, …) • Different distributions: Arch Linux, Debian, Fedora/RHEL, openSUSE/SLES, Ubuntu, … Introduction to GNU/Linux and the Shell | 07/10/2019 | J.
    [Show full text]
  • White Paper for Version 3.3.0, 1St Ed
    White paper for version 3.3.0, 1st ed. 2011-12-20 Cendio AB Wallenbergs gata 4 SE-583 30 LINKÖPING Cendio Systems AB Home page: http://www.cendio.com/ Wallenbergs gata 4 Telephone: +46 - (0) 13 21 46 00 S-583 30 LINKÖPING Fax: +46 - (0) 13 21 47 00 Visiting address: Wallenbergs gata 4 E-mail: [email protected] Table of Contents Preface..................................................................................................................................................3 Overview...............................................................................................................................................3 Flexible Architecture............................................................................................................................................ 3 Compatible with Directory Services...........................................................................................3 Compatible with File Servers.....................................................................................................4 Clustering............................................................................................................................................................. 4 High Availability Through Fault Tolerance.................................................................................4 Two-tier Load Balancing............................................................................................................4 Clients.................................................................................................................................................................
    [Show full text]
  • Interactive HPC Computation with Open Ondemand and Fastx
    Interactive HPC Computation with Open OnDemand and FastX eResearchNZ, February, 2021 [email protected] More Data, More Complexity ● Datasets and problem complexity [1] is growing faster than performance of personal computational systems. ● In late 2018 a predictive study [2] of what was described as "the Global Datasphere", data that is "created, captured, or replicated ... will grow from 33 Zettabytes (ZB) in 2018 to 175 ZB by 2025". ● Performance improvements gained by increased clock-speed on a processor come at a cost of additional heat, causing a breakdown in Dennard scaling in the early 2000s [3], that has continued to contemporary times. ● There have been several technological improvements over the decades that have mitigated what would otherwise be a very unfortunate situation for the processing of large datasets (multicore, GPUs, parallel programming, SSD, NVMe, high-speed interconnect etc) ● A preferred choice is high performance computing (HPC) which, due to its physical architecture, operating system, and optimised application installations, is best suited for such processing. ● Command-line Tools can be 235x Faster than your Hadoop Cluster (https://adamdrake.com/command-line-tools-can-be-235x-faster-than-your-hadoop- cluster.html). SQL query runtime from 380 hours to 12 with two Unix commands (https://www.spinellis.gr/blog/20180805/) More Data, More Complexity Compute on HPC, visualise locally ● The motto of his Richard Hamming's Numerical Methods for Scientists and Engineers (1962) was "The purpose of computing is insight, not numbers". How is this insight to be achieved? From raw data can you mentally create a real-world mental image of what the data represents? ● Complexity will be beyond most people's cognitive capacity, leading to the need for computer graphics as a requisite heuristic.
    [Show full text]
  • Dtrace-Ebook.Pdf
    The illumos Dynamic Tracing Guide The contents of this Documentation are subject to the Public Documentation License Version 1.01 (the “License”); you may only use this Documentation if you comply with the terms of this License. Further information about the License is available in AppendixA. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this document, and the publisher was aware of the trademark claim, the designations have been followed by the “™” or the “®” symbol, or printed with initial capital letters or in all capitals. This distribution may include materials developed by third parties. Parts of the product may be derived from Berkeley BSD systems, licensed from the University of California. UNIX is a registered trademark of The Open Group. illumos and the illumos logo are trademarks or registered trademarks of Garrett D’Amore. Sun, Sun Microsystems, StarOffice, Java, and Solaris are trademarks or registered trademarks of Oracle, Inc. or its subsidiaries in the U.S. and other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries. Products bearing SPARC trademarks are based upon an architecture developed by Sun Microsystems, Inc. DOCUMENTATION IS PROVIDED “AS IS” AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTA- TIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. Copyright © 2008 Sun Microsystems, Inc.
    [Show full text]
  • Virtual Network Computing (VNC) Connection Document Number D08-00-055 | Updated 8/30/2019 Reva01
    Quick Guide Virtual Network Computing (VNC) Connection Document Number D08-00-055 | Updated 8/30/2019 RevA01 MPA systems support up to ten (10) simultaneous VNC Viewer connections and is the preferred method of remotely controlling the MPA system’s Graphical User Interface (GUI) software, in preference to the Windows® OS based Remote GUI application. Changes in the 8.3.x Feature Set provides greater security and improved connectivity to the VNC Server running on MPA systems with an SCM-210 controller module. For MPA systems with a SCM-210 system controller, simultaneous VNC connections can be made to the same IP Address without the need for VNC port number; but each user login requires a different Username. • Usernames can be created in the GUI’s System tab Security screen. Refer to Adding a New User section in the MPA’s User Manual for details • Usernames are synchronized for the following applications: MPA GUI, VNC, SCPI, Python and FTP For MPA systems with the AM4022 processor card, simultaneous VNC connections require the IP Address be followed by a colon and a unique VNC port number from 1 to 10, with one user per VNC port. • Example: 192.168.0.10:1 to 192.168.0.10:10 Advantages of using the VNC viewer to remotely control an MPA system: • VNC viewers are supported on multiple OS platforms including; Windows, Mac OS X, iOS, Android, and Linux, and are available for most portable products such as; Laptops, Tablets, and Smartphones • Remote Control operation without the need to install a dedicated Remote Client application • No interference
    [Show full text]